/* ============================================================
   2026 header / front-page redesign
   Scoped to #site-header-2026 (site-wide header) and
   #front-page-2026 (front page content only) so it cannot
   leak layout/typography changes onto unrelated theme markup.
   ============================================================ */

/* NOTE: uses a class (not the #id) for the descendant reset so its
   specificity (0,1,0) stays equal to the .ic* component rules below —
   an ID-scoped `#id *{...}` would outrank every class rule and wipe
   out all intentional margin/padding regardless of source order. */
.hiro-material-page,
.hiro-material-page button,
.hiro-material-page input,
.hiro-material-page select,
.hiro-material-page textarea {
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
.fp2026-scope,
.fp2026-scope * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#site-header-2026 {
  font-family: "Noto Sans JP", sans-serif;
  color: #4e2a3c;
  line-height: 1.85;
}
#front-page-2026 {
  font-family: "Noto Sans JP", sans-serif;
  color: #4e2a3c;
  background: #fff8f6;
  line-height: 1.85;
  overflow-x: clip;
}

/* Shared areas sit outside #front-page-2026 and page-specific wrappers.
   Keep their typography independent from WordPress content or legacy styles. */
#common-bottom-2026,
#common-bottom-2026 button,
#common-bottom-2026 input,
#common-bottom-2026 select,
#common-bottom-2026 textarea,
#site-footer-2026,
#site-footer-2026 button,
#site-footer-2026 input,
#site-footer-2026 select,
#site-footer-2026 textarea,
.clinic-hours {
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- RESPONSIVE ---- */
.hiro-material-page #main_contents {
  padding-top: 122px;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-size: 13.5px;
  font-weight: 500;
  color: #6e4a5a;
}
.header-menu-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.header-menu-list li {
  position: relative;
  margin: 0;
  padding: 0;
}
.nav-desktop .header-menu-list a {
  position: relative;
  color: #6e4a5a;
  text-decoration: none;
}
.nav-desktop .header-menu-list a:hover,
.nav-desktop .header-menu-list .current-menu-item > a,
.nav-desktop .header-menu-list .current_page_item > a {
  color: #ed9296;
}
.submenu-toggle {
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
}
.nav-desktop .header-menu-list > li > a,
.nav-desktop .submenu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 0 7px 10px;
  border: 0;
  background: transparent;
  color: #6e4a5a;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 0.18s,
    transform 0.18s;
}
.nav-desktop .header-menu-list > li > a::before,
.nav-desktop .submenu-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(180deg, #ed9296, #5fc2cc);
  transform: translateY(-50%);
  transition:
    height 0.18s,
    background 0.18s;
}
.nav-desktop .header-menu-list > li > a:hover,
.nav-desktop .header-menu-list > li > a:focus-visible,
.nav-desktop .submenu-toggle:hover,
.nav-desktop .submenu-toggle:focus-visible,
.nav-desktop .submenu-toggle[aria-expanded="true"] {
  background: transparent;
  color: #c85e69;
  outline: none;
  transform: translateY(-1px);
}
.nav-desktop .header-menu-list > li > a:hover::before,
.nav-desktop .header-menu-list > li > a:focus-visible::before,
.nav-desktop .submenu-toggle:hover::before,
.nav-desktop .submenu-toggle:focus-visible::before,
.nav-desktop .submenu-toggle[aria-expanded="true"]::before {
  height: 20px;
  background: #ed9296;
}
.submenu-toggle-icon {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s;
}
.submenu-toggle[aria-expanded="true"] .submenu-toggle-icon {
  transform: translateY(2px) rotate(225deg);
}
.nav-desktop .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  min-width: 210px;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #f6e1e3;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 36px rgba(78, 42, 60, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s,
    visibility 0.18s,
    transform 0.18s;
}
.nav-desktop .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
.nav-desktop .sub-menu .sub-menu {
  top: -9px;
  left: 100%;
  transform: translate(8px, 0);
}
.nav-desktop li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-desktop li.submenu-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-desktop .sub-menu li:hover > .sub-menu,
.nav-desktop .sub-menu li:focus-within > .sub-menu {
  transform: translate(0, 0);
}
.nav-desktop .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  color: #6e4a5a;
  white-space: nowrap;
  font-size: 13px;
  line-height: 1.55;
}
.nav-desktop .sub-menu a:hover,
.nav-desktop .sub-menu .current-menu-item > a,
.nav-desktop .sub-menu .current_page_item > a {
  background: #fff0f1;
  color: #ed9296;
}
.nav-desktop .menu-item-mega > .mega-menu {
  left: 50%;
  display: grid;
  width: min(780px, 78vw);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 16px;
  transform: translate(-50%, 8px);
}
.nav-desktop .menu-item-mega:hover > .mega-menu,
.nav-desktop .menu-item-mega.submenu-open > .mega-menu {
  transform: translate(-50%, 0);
}
.nav-desktop .mega-menu-group {
  padding: 10px;
  border-radius: 11px;
  background: #fffbfb;
}
.nav-desktop .mega-menu-group > span {
  display: block;
  padding: 0 10px 8px;
  color: #c65e68;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.nav-desktop .mega-menu-group > ul {
  position: static;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-desktop .mega-menu-group a {
  padding: 8px 10px;
  font-size: 12px;
}
.header-tel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ed9296;
  color: #fff;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(237, 146, 150, 0.36);
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.header-tel-cta span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: #fff;
  color: #ed9296;
  padding: 4px 7px;
  border-radius: 999px;
}
.header-case-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: #43a7b2;
  color: #fff;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 7px 18px rgba(38, 117, 127, 0.25);
  transition:
    background 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
}
.header-case-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  color: #3598a3;
  font-size: 9px;
  letter-spacing: 0.06em;
}
.header-case-cta:hover,
.header-case-cta[aria-current="page"] {
  background: #3899a4;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 9px 22px rgba(38, 117, 127, 0.3);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #4e2a3c;
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-drawer {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: flex-start;
  justify-content: flex-end;
  background: rgba(78, 42, 60, 0.55);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(0);
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0s linear 0.3s,
    backdrop-filter 0.3s ease;
}
.nav-drawer.open {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(4px);
  pointer-events: auto;
  transition-delay: 0s;
}
.nav-panel {
  position: relative;
  background: #fff;
  width: 84vw;
  max-width: 360px;
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  padding: 0 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: -8px 0 32px rgba(78, 42, 60, 0.18);
  transform: translateX(104%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-drawer.open .nav-panel {
  transform: translateX(0);
}
.nav-panel-header {
  position: relative;
  display: flex;
  flex: 0 0 110px;
  align-items: flex-start;
  padding-top: 17px;
}
.nav-panel .nav-panel-brand {
  display: block;
  width: 168px;
  padding: 0;
  border: 0;
}
.nav-panel-brand img {
  display: block;
  width: 100%;
  height: auto;
}
.nav-panel .header-menu-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.nav-panel .header-menu-list li {
  width: 100%;
}
.nav-panel a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: #4e2a3c;
  text-decoration: none;
  border-bottom: 1px solid #f6e1e3;
}
.nav-panel .header-menu-list > li > a,
.nav-panel .submenu-toggle {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 16px 12px;
  border: 0;
  border-bottom: 1px solid #f0d7dc;
  background: transparent;
  color: #4e2a3c;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  white-space: nowrap;
  text-align: left;
  cursor: pointer;
}
.nav-panel .header-menu-list > li > a::before,
.nav-panel .submenu-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, #ed9296, #5fc2cc);
  transform: translateY(-50%);
}
.nav-panel .submenu-toggle-icon {
  width: 9px;
  height: 9px;
  border-width: 2px;
  color: #ed9296;
}
.nav-panel .sub-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0 0 0 14px;
  border-left: 2px solid transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px);
  transition:
    max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.35s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.35s;
}
.nav-panel .submenu-open > .sub-menu {
  max-height: 1200px;
  margin-bottom: 8px;
  border-left-color: #f6e1e3;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav-panel .sub-menu a {
  padding: 11px 0;
  font-size: 14px;
  font-weight: 600;
  color: #7b5264;
  border-bottom: 1px solid #f9eaec;
}
.nav-panel .mega-menu {
  padding-left: 10px;
}
.nav-panel .mega-menu-group {
  padding: 10px 0 4px;
}
.nav-panel .mega-menu-group > span {
  display: block;
  padding: 4px 0 8px;
  color: #c65e68;
  font-size: 12px;
  font-weight: 900;
}
.nav-panel .mega-menu-group > ul {
  margin: 0;
  padding: 0 0 0 12px;
  list-style: none;
  border-left: 1px solid #f4d9de;
}
.nav-panel .mega-menu-group a {
  padding: 9px 0;
  font-size: 13px;
}
.nav-panel-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5fc2cc;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 16px;
}
.nav-case-feature {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 20px 0 5px;
  padding: 14px 17px !important;
  border: 0 !important;
  border-radius: 13px;
  background: linear-gradient(135deg, #5fc2cc, #43a7b2);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(52, 142, 152, 0.2);
  font-size: 15px !important;
  text-align: center;
}
.nav-feature-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}
.nav-feature-copy {
  display: block;
  min-width: 0;
  text-align: left;
}
.nav-case-feature .nav-feature-copy small {
  display: block;
  margin-bottom: 2px;
  font-size: 8px;
  letter-spacing: 0.14em;
  opacity: 0.82;
}
.nav-case-feature .nav-feature-copy strong {
  display: block;
  font-size: 15px;
}
.nav-tel-feature {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 9px 0 5px;
  padding: 12px 17px !important;
  border: 0 !important;
  border-radius: 13px;
  background: linear-gradient(135deg, #ed9296, #d9757e);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(190, 85, 98, 0.2);
  text-align: center;
}
.nav-tel-feature .nav-feature-copy,
.nav-tel-feature small,
.nav-tel-feature strong,
.nav-tel-feature em {
  display: block;
}
.nav-tel-feature small {
  margin-bottom: 1px;
  font-size: 8px;
  letter-spacing: 0.14em;
  opacity: 0.84;
}
.nav-tel-feature strong {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.nav-tel-feature em {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.045em;
  opacity: 0.9;
}
.nav-address-feature {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  margin: 9px 0 5px;
  padding: 12px 17px !important;
  border: 0 !important;
  border-radius: 13px;
  background: linear-gradient(135deg, #78ad3d, #527f29);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(74, 119, 34, 0.24);
  text-align: center;
}
.nav-address-feature .nav-feature-icon {
  color: #fff;
}
.nav-address-feature .nav-feature-copy,
.nav-address-feature strong,
.nav-address-feature small,
.nav-address-feature em {
  display: block;
}
.nav-address-feature small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 8px;
  letter-spacing: 0.14em;
}
.nav-address-feature strong {
  font-size: 15px;
  line-height: 1.4;
}
.nav-address-feature em {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.nav-close {
  position: fixed;
  top: 59px;
  right: 18px;
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  color: #4e2a3c;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .nav-drawer,
  .nav-panel,
  .nav-panel .sub-menu {
    transition: none;
  }
}
.case-floating-link {
  position: fixed;
  right: 26px;
  bottom: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 280px;
  padding: 16px 22px 16px 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 23px;
  background: #43a7b2;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(38, 117, 127, 0.34);
  animation: floatingLinkReveal 1.15s ease 1.1s both;
  transition:
    transform 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}
.case-floating-link:hover {
  transform: translateY(-4px) scale(1.015);
  background: #3899a4;
  box-shadow: 0 21px 46px rgba(38, 117, 127, 0.4);
}
.case-floating-mark {
  display: flex;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  color: #3598a3;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(38, 117, 127, 0.18);
}
.case-floating-link small,
.case-floating-link strong {
  display: block;
}
.case-floating-link small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.045em;
  opacity: 0.9;
}
.case-floating-link strong {
  margin-top: 3px;
  font-size: 14px;
  letter-spacing: 0.015em;
  white-space: nowrap;
}
.case-floating-link[aria-current="page"] {
  display: none;
}
@keyframes floatingLinkReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mobile-bottom-nav,
.mobile-menu-float {
  display: none;
}
@media (max-width: 1150px) and (min-width: 901px) {
  .ic12 {
    gap: 8px !important;
  }
  .nav-desktop {
    gap: 12px;
    font-size: 12px;
  }
  .header-menu-list {
    gap: 12px;
  }
  .header-tel-cta {
    padding: 11px 12px;
    font-size: 13px;
  }
  .header-case-cta {
    padding: 9px 10px;
    font-size: 11px;
  }
  .ic14,
  #logo_image img,
  #logo_text {
    height: 60px !important;
    max-width: 240px !important;
  }
}

.hero-h1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 2px 12px rgba(39, 100, 107, 0.72);
}
.pillar-wrap {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
.pillar-box {
  flex: 1;
  min-width: 300px;
  max-width: 476px;
}
.green-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  text-align: left;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.interior-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.depts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}
.section-pad {
  padding: 80px 28px;
}
.sp-none {
  display: block;
}
.sp-br {
  display: none;
}
.cta-sp-br {
  display: none;
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none !important;
  }
  .header-tel-cta {
    display: none !important;
  }
  .header-case-cta {
    display: none !important;
  }
  .nav-hamburger {
    display: flex !important;
  }
  .hiro-material-page #main_contents {
    padding-top: 114px;
  }
  .sp-br {
    display: inline;
  }
  .hero-h1 {
    font-size: 30px !important;
  }
  .pillar-box {
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .green-grid {
    grid-template-columns: 1fr !important;
  }
  .why-grid {
    grid-template-columns: 1fr !important;
  }
  .flow-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .interior-grid {
    grid-template-columns: 1fr !important;
  }
  .cases-grid {
    grid-template-columns: 1fr !important;
  }
  .treatment-floral-mark {
    right: auto !important;
    left: -62px !important;
    bottom: -65px !important;
    width: min(76vw, 360px) !important;
    opacity: 0.12 !important;
  }
  .front-case-group {
    padding: 20px 16px;
    border-radius: 20px;
  }
  .front-case-group-heading {
    margin-bottom: 17px;
  }
  .front-case-group-heading h3 {
    font-size: 18px;
  }
  .front-case-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
  }
  .front-case-image {
    height: 100%;
    min-height: 150px;
    aspect-ratio: auto;
  }
  .front-case-card .ic109 {
    min-height: 150px;
    padding: 14px;
  }
  .front-case-card .ic110 {
    display: block;
  }
  .front-case-card .ic110 time {
    display: block;
    margin-top: 2px;
  }
  .front-case-card .ic111 {
    font-size: 12.5px;
    line-height: 1.6;
  }
  .front-case-more {
    padding-top: 8px;
    font-size: 10px;
  }
  .depts-grid {
    grid-template-columns: 1fr !important;
  }
  .access-grid {
    grid-template-columns: 1fr !important;
  }
  .section-pad {
    padding: 52px 18px !important;
  }
  .sp-none {
    display: none !important;
  }
  .cta-h2 {
    font-size: 22px !important;
    line-height: 1.55 !important;
  }
  .cta-section {
    padding: 44px 24px !important;
  }
  .cta-section > .common-cta-floral {
    left: -55px !important;
    bottom: -70px !important;
    width: min(78vw, 340px) !important;
    opacity: 0.11 !important;
  }
  .footer-inner {
    flex-direction: column !important;
    gap: 20px !important;
  }
  #site-footer-2026 > .footer-floral-mark {
    left: -52px !important;
    bottom: -72px !important;
    width: min(72vw, 320px) !important;
    opacity: 0.16 !important;
  }
  .ic176 {
    min-width: 100% !important;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px 24px !important;
  }
  .util-hours {
    display: none;
  }
  .ic6 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 10px;
    padding: 7px 14px;
  }
  .ic7 {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
  }
  .util-location-prefix {
    display: none;
  }
  .util-location-icon {
    display: block;
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
  }
  .ic8 {
    display: block;
  }
  .ic10 {
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
  }
  .util-tel-icon {
    display: block;
    width: 17px;
    height: 17px;
  }
  .util-tel-text {
    display: none;
  }
  .header-inner {
    padding: 12px 18px !important;
  }
  .logo-img,
  #logo_image img,
  #logo_text {
    height: 50px !important;
    max-width: 200px !important;
  }
  .footer-logo-img {
    height: 72px !important;
    max-width: min(100%, 285px) !important;
  }
  .funryu-h2 {
    font-size: 24px !important;
  }
  .dept-panel {
    padding: 36px 22px !important;
  }
  .dept-feature-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
  }
  .dept-feature-card {
    width: 100%;
    min-width: 0;
  }
  .dept-menu-grid {
    grid-template-columns: 1fr !important;
  }
  .dept-menu-group {
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) 1.2fr;
  }
  .dept-menu-image {
    height: 100%;
    aspect-ratio: auto;
  }
  .dept-menu-body p {
    min-height: 0;
  }
  .access-inner {
    padding: 32px 22px !important;
  }
  .cta-btns {
    flex-direction: column !important;
    align-items: center !important;
  }
  .case-floating-link {
    right: 12px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    display: flex !important;
    min-width: 0;
    gap: 10px;
    padding: 10px 14px 10px 10px;
    border-radius: 18px;
  }
  .case-floating-link[aria-current="page"] {
    display: none !important;
  }
  .case-floating-link .case-floating-mark {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 11px;
  }
  .case-floating-link small {
    display: none;
  }
  .case-floating-link strong {
    margin-top: 0;
    font-size: 0;
  }
  .case-floating-link strong::after {
    content: "症例・処置実績";
    font-size: 12px;
  }
  .hiro-material-page {
    padding-bottom: 66px;
  }
  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 68px;
    padding: 0 4px env(safe-area-inset-bottom);
    border-top: 1px solid #e8d7dd;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 24px rgba(78, 42, 60, 0.11);
    backdrop-filter: blur(10px);
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 56px;
    padding: 4px 2px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 0;
    background: transparent;
    color: #765263;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 9px;
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .mobile-bottom-nav a > span,
  .mobile-bottom-nav button > span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    color: #4a9da7;
    font-size: 11px;
    font-weight: 900;
  }
  .mobile-bottom-nav a > strong,
  .mobile-bottom-nav button > strong {
    font-size: 9.5px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
  }
  .mobile-bottom-nav .mobile-bottom-icon-link {
    gap: 2px;
  }
  .mobile-bottom-nav .mobile-bottom-icon-link > span {
    width: 30px;
    height: 30px;
  }
  .mobile-nav-icon {
    display: block;
    width: 24px;
    height: 24px;
  }
  .mobile-bottom-nav a[aria-current="page"] {
    background: #fff4f5;
    color: #cf616a;
  }
  .mobile-bottom-menu-button > span {
    width: 40px !important;
    height: 40px !important;
    margin-top: -14px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: linear-gradient(145deg, #5fc2cc, #429fab);
    color: #fff !important;
    box-shadow: 0 7px 18px rgba(48, 135, 145, 0.3);
  }
  .mobile-bottom-menu-button > span .mobile-nav-icon {
    width: 21px;
    height: 21px;
  }
  .mobile-bottom-menu-button > strong {
    margin-top: -1px;
    color: #397e87;
    letter-spacing: 0.04em;
  }
  .mobile-bottom-menu-button[aria-expanded="true"] > span {
    background: linear-gradient(145deg, #ed9296, #d96f78);
    box-shadow: 0 7px 18px rgba(200, 91, 102, 0.3);
  }
  .mobile-bottom-menu-button:focus-visible {
    outline: 2px solid #4a9da7;
    outline-offset: -2px;
    border-radius: 10px;
  }
  .mobile-bottom-nav {
    grid-template-columns: repeat(3, 1fr);
    z-index: 150;
  }
  .mobile-menu-float {
    position: fixed;
    right: 15px;
    bottom: calc(154px + env(safe-area-inset-bottom));
    z-index: 220;
    display: flex;
    width: 62px;
    height: 62px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    border-radius: 50%;
    background: linear-gradient(145deg, #ed9296, #d96f78);
    color: #fff;
    box-shadow: 0 10px 25px rgba(200, 91, 102, 0.4);
    font-family: "Noto Sans JP", sans-serif;
    cursor: pointer;
    animation: mobileMenuInvite 2.8s ease-in-out infinite;
    transition:
      background 0.18s,
      box-shadow 0.18s,
      transform 0.18s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .mobile-menu-float > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  .mobile-menu-float[aria-expanded="true"] {
    background: linear-gradient(145deg, #5fc2cc, #429fab);
    box-shadow: 0 10px 25px rgba(48, 135, 145, 0.38);
    animation: none;
    transform: scale(0.96);
  }
  .mobile-menu-float:focus-visible {
    outline: 3px solid #397e87;
    outline-offset: 3px;
  }
  .nav-panel {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }
}
@keyframes mobileMenuInvite {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 25px rgba(200, 91, 102, 0.4);
  }
  50% {
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 15px 30px rgba(200, 91, 102, 0.48);
  }
}
@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .mobile-menu-float {
    animation: none;
  }
}

@media (max-width: 520px) {
  .ic176 {
    grid-template-columns: 1fr !important;
  }
  .dept-feature-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .dept-feature-card {
    min-height: 380px;
    padding: 24px;
  }
  .dept-feature-card > .dept-floral-mark {
    bottom: -58px !important;
    left: -34px !important;
    width: 270px !important;
    opacity: 0.1 !important;
  }
  .dept-feature-title {
    font-size: 25px !important;
  }
  .dept-menu-heading {
    display: block;
  }
  .dept-menu-heading strong {
    display: block;
    margin-top: 4px;
  }
  .dept-menu-group {
    display: block;
  }
  .dept-menu-image {
    height: auto;
    aspect-ratio: 16/7;
  }
}

/* ---- Case and treatment blog archive ---- */
.case-blog-page {
  font-family: "Noto Sans JP", sans-serif;
  color: #4e2a3c;
  background: #fff;
}
.case-blog-container {
  box-sizing: border-box;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.case-blog-hero {
  padding: 64px 0 58px;
  background:
    radial-gradient(
      circle at 86% 18%,
      rgba(95, 194, 204, 0.17),
      transparent 33%
    ),
    linear-gradient(145deg, #fff4f5, #fffdfc 62%, #f1fafa);
  text-align: center;
  border-bottom: 1px solid #f4dce5;
}
.case-blog-eyebrow,
.case-blog-section-heading > span,
.case-blog-list-head > div > span {
  display: block;
  margin: 0 0 10px;
  color: #d86f78;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.case-blog-hero h1 {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
.case-blog-lead {
  max-width: 760px;
  margin: 17px auto 0;
  color: #765163;
  font-size: 15px;
  line-height: 2;
}
.case-blog-lead p {
  margin: 0;
}
.case-blog-search {
  max-width: 760px;
  margin: 30px auto 0;
  padding: 21px 24px 19px;
  background: #fff;
  border: 1px solid #f2d8de;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 14px 36px rgba(142, 72, 94, 0.1);
}
.case-blog-search label {
  display: block;
  margin: 0 0 9px;
  font-size: 14px;
  font-weight: 900;
}
.case-blog-search-row {
  display: flex;
  gap: 10px;
}
.case-blog-search input[type="search"] {
  min-width: 0;
  flex: 1;
  height: 52px;
  padding: 0 17px;
  border: 1.5px solid #dcc9d0;
  border-radius: 10px;
  background: #fffcfc;
  color: #4e2a3c;
  font: inherit;
  font-size: 15px;
  outline: none;
}
.case-blog-search input[type="search"]:focus {
  border-color: #ed9296;
  box-shadow: 0 0 0 3px rgba(237, 146, 150, 0.15);
}
.case-blog-search button {
  height: 52px;
  padding: 0 25px;
  border: 0;
  border-radius: 10px;
  background: #d96870;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}
.case-blog-search > p {
  margin: 9px 0 0;
  color: #9a7485;
  font-size: 11.5px;
}
.case-blog-section {
  padding: 64px 0;
}
.case-blog-pale {
  background: #fff8f6;
}
.case-blog-section-heading {
  text-align: center;
  margin-bottom: 31px;
}
.case-blog-section-heading h2,
.case-blog-list-head h2 {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
}
.case-blog-section-heading p {
  margin: 9px 0 0;
  color: #8a6676;
  font-size: 14px;
  line-height: 1.8;
}
.case-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.case-category-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 100px;
  padding: 18px;
  background: #fff;
  border: 1px solid #f1d9e0;
  border-radius: 16px;
  color: #4e2a3c;
  text-decoration: none;
  box-shadow: 0 7px 22px rgba(142, 72, 94, 0.06);
  transition: 0.18s ease;
}
.case-category-card:hover {
  border-color: #ed9296;
  box-shadow: 0 13px 28px rgba(142, 72, 94, 0.12);
  transform: translateY(-2px);
}
.case-category-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fce9ea;
  color: #d96870;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.case-category-card:nth-child(3n + 2) .case-category-mark {
  background: #e5f6f7;
  color: #419faa;
}
.case-category-card:nth-child(3n) .case-category-mark {
  background: #eef6e5;
  color: #73a842;
}
.case-category-copy strong,
.case-category-copy small {
  display: block;
}
.case-category-copy strong {
  font-size: 15px;
  line-height: 1.45;
}
.case-category-copy small {
  margin-top: 4px;
  color: #917081;
  font-size: 11.5px;
  line-height: 1.5;
}
.case-category-count {
  align-self: start;
  color: #b08a9a;
  font-size: 11px;
  white-space: nowrap;
}
.case-symptom-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}
.case-symptom-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid #e2d6db;
  border-radius: 11px;
  color: #5b3547;
  background: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: 0.18s ease;
}
.case-symptom-links a span {
  color: #d96870;
}
.case-symptom-links a:hover {
  border-color: #5fc2cc;
  background: #f5fcfc;
  transform: translateY(-1px);
}
.case-blog-list-section {
  background: linear-gradient(180deg, #f7fbfb, #fff 190px);
}
.case-blog-list-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e6f0f0;
}
.case-blog-list-head > a {
  color: #278e9a;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.case-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
}
.case-post-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9dde1;
  border-radius: 16px;
  box-shadow: 0 9px 26px rgba(85, 49, 66, 0.07);
  transition: 0.18s ease;
}
.case-post-card:hover {
  box-shadow: 0 15px 34px rgba(85, 49, 66, 0.12);
  transform: translateY(-2px);
}
.case-post-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(145deg, #fce9ea, #e5f6f7);
  color: #a16e83;
  text-decoration: none;
  text-align: center;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6;
}
.case-post-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.case-post-card:hover .case-post-image img {
  transform: scale(1.025);
}
.case-post-body {
  padding: 18px 19px 20px;
}
.case-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.case-post-meta time {
  margin-right: 3px;
  color: #947282;
  font-size: 11px;
}
.case-post-meta a {
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff0f1;
  color: #b95460;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
}
.case-post-body h3 {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.65;
}
.case-post-body h3 a {
  color: #4e2a3c;
  text-decoration: none;
}
.case-post-body > p {
  margin: 10px 0 15px;
  color: #806071;
  font-size: 12.5px;
  line-height: 1.8;
}
.case-post-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid #f0e5e8;
  color: #268d99;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 900;
}
.case-blog-pagination {
  margin-top: 42px;
}
.case-blog-pagination ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-blog-pagination a,
.case-blog-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e3d4da;
  border-radius: 9px;
  background: #fff;
  color: #755265;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.case-blog-pagination .current {
  border-color: #d96870;
  background: #d96870;
  color: #fff;
}
.case-blog-empty {
  padding: 42px 25px;
  border: 1px solid #f0dce2;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}
.case-blog-empty h2 {
  font-size: 21px;
}
.case-blog-empty p {
  color: #806071;
  font-size: 14px;
}
.case-blog-empty a {
  display: inline-flex;
  margin-top: 12px;
  padding: 11px 22px;
  border-radius: 999px;
  background: #d96870;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .case-blog-hero {
    padding: 48px 0 45px;
  }
  .case-blog-container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .case-blog-hero h1 {
    font-size: 29px;
  }
  .case-blog-section {
    padding: 48px 0;
  }
  .case-category-grid,
  .case-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-symptom-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .case-blog-hero h1 {
    font-size: 24px;
  }
  .case-blog-lead {
    font-size: 13.5px;
    line-height: 1.9;
  }
  .case-blog-search {
    padding: 18px 16px;
  }
  .case-blog-search-row {
    display: block;
  }
  .case-blog-search input[type="search"] {
    box-sizing: border-box;
    width: 100%;
  }
  .case-blog-search button {
    width: 100%;
    margin-top: 9px;
  }
  .case-blog-section-heading h2,
  .case-blog-list-head h2 {
    font-size: 22px;
  }
  .case-category-grid,
  .case-post-grid {
    grid-template-columns: 1fr;
  }
  .case-symptom-links {
    grid-template-columns: 1fr;
  }
  .case-blog-list-head {
    display: block;
  }
  .case-blog-list-head > a {
    display: inline-block;
    margin-top: 10px;
  }
  .case-post-body h3 {
    font-size: 16px;
  }
}

/* ---- Single case article ---- */
.case-article-page {
  font-family: "Noto Sans JP", sans-serif;
  color: #4e2a3c;
  background: #fff;
}
.case-article-container {
  box-sizing: border-box;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.case-article-header {
  padding: 50px 0 42px;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(95, 194, 204, 0.14),
      transparent 34%
    ),
    linear-gradient(150deg, #fff8f6, #fff 56%, #f3fbfb);
  border-bottom: 1px solid #f1dfe4;
}
.case-article-header-inner {
  max-width: 980px;
}
.case-article-kinds {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 15px;
}
.case-article-kinds > span {
  margin-right: 4px;
  color: #d56770;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.case-article-kinds a {
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f0d7dd;
  color: #9a5162;
  text-decoration: none;
  font-size: 10.5px;
  font-weight: 700;
}
.case-article-header h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.015em;
}
.case-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-top: 15px;
  color: #987486;
  font-size: 11.5px;
}
.case-article-meta span,
.case-article-meta .case-article-author {
  font-weight: 700;
  color: #4e9ca6;
}
.case-article-meta .case-article-author {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.case-article-meta .case-article-author:hover {
  color: #318f9a;
}
.case-article-summary {
  max-width: 850px;
  margin-top: 25px;
  padding: 18px 21px;
  border-left: 4px solid #5fc2cc;
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 7px 20px rgba(66, 126, 133, 0.07);
}
.case-article-summary strong {
  display: block;
  margin-bottom: 6px;
  color: #318f9a;
  font-size: 12px;
}
.case-article-summary p {
  margin: 0;
  color: #684657;
  font-size: 13.5px;
  line-height: 1.9;
}
.case-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 740px) 260px;
  align-items: start;
  gap: 50px;
  padding-top: 50px;
  padding-bottom: 72px;
}
.case-article-main {
  min-width: 0;
}
.case-article-sidebar {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 16px;
  min-width: 0;
}
.case-photo-notice {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 30px;
  padding: 14px 17px;
  border: 1px solid #e7dce0;
  border-radius: 12px;
  background: #fffcfc;
}
.case-photo-notice > span {
  display: flex;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8f6f7;
  color: #328e99;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.case-photo-notice p {
  margin: 0;
  color: #806171;
  font-size: 11.5px;
  line-height: 1.65;
}
.case-photo-notice strong {
  display: block;
  color: #5d394a;
  font-size: 12.5px;
}
.case-article-toc {
  margin: 0 0 38px;
  padding: 22px 24px;
  border: 1px solid #e4d7dc;
  border-radius: 14px;
  background: #fffdfc;
}
.case-article-toc h2 {
  margin: 0 0 13px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: 900;
}
.case-article-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: case-toc;
}
.case-article-toc li {
  position: relative;
  padding: 8px 0 8px 27px;
  border-top: 1px solid #f1e8eb;
  counter-increment: case-toc;
}
.case-article-toc li::before {
  content: counter(case-toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 9px;
  color: #d16b74;
  font-size: 9px;
  font-weight: 900;
}
.case-article-toc a {
  color: #654657;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.55;
}
.case-article-toc .case-toc-level-3 a {
  color: #856575;
  font-size: 11.5px;
}
.case-article-content {
  padding: 38px 42px 42px;
  border: 1px solid #eadde1;
  border-top: 3px solid #d98a91;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdfc 0%, #fff 180px);
  box-shadow: 0 12px 32px rgba(91, 54, 72, 0.075);
  color: #573747;
  font-size: 15.5px;
  line-height: 2.05;
  overflow-wrap: anywhere;
}
.case-article-content > *,
.case-article-content > p {
  max-width: 100%;
}
.case-article-content p {
  margin: 0 0 22px;
}
.case-article-content h1:empty,
.case-article-content h2:empty,
.case-article-content h3:empty {
  display: none;
}
.case-article-content h2 {
  margin: 52px 0 22px;
  padding: 15px 18px;
  border-left: 5px solid #5fc2cc;
  border-radius: 4px 12px 12px 4px;
  background: #eaf8f9;
  color: #3e2933;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.55;
}
.case-article-content h3 {
  margin: 44px 0 18px;
  padding: 0 0 10px;
  border-bottom: 2px solid #f0dce2;
  color: #432c37;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.6;
}
.case-article-content h4 {
  margin: 32px 0 14px;
  color: #4e2a3c;
  font-size: 17px;
}
.case-article-content a {
  color: #168d9a;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.case-article-content strong {
  font-weight: 700;
  color: #422b36;
}
.case-article-content ul,
.case-article-content ol {
  margin: 20px 0 27px;
  padding: 20px 22px 20px 44px;
  border-radius: 12px;
  background: #fff8f6;
}
.case-article-content li {
  margin: 7px 0;
}
.case-article-content blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid #ed9296;
  background: #fff4f5;
  color: #765263;
}
.case-article-content img {
  display: block;
  max-width: 100% !important;
  height: auto;
  border-radius: 10px;
}
.case-article-content figure,
.case-article-content .wp-caption {
  width: min(100%, 720px) !important;
  max-width: 100%;
  margin: 28px auto 32px !important;
  padding: 0;
  border-radius: 13px;
  background: #f9f5f6;
  overflow: hidden;
}
.case-article-content figure img,
.case-article-content .wp-caption img {
  width: auto;
  max-width: 100% !important;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
}
.case-article-content figcaption,
.case-article-content .wp-caption-text {
  margin: 0 !important;
  padding: 11px 14px;
  color: #765767;
  background: #f8f1f3;
  font-size: 11.5px !important;
  line-height: 1.7;
  text-align: left;
}
.case-article-content iframe {
  display: block;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16/9;
  height: auto;
  margin: 28px auto;
  border: 0;
  border-radius: 12px;
}
.case-article-content table {
  display: table;
  width: 100%;
  margin: 26px 0;
  border-collapse: collapse;
  font-size: 13px;
}
.case-article-content th,
.case-article-content td {
  padding: 11px 13px;
  border: 1px solid #e8d7dd;
  vertical-align: top;
}
.case-article-content th {
  background: #fff0f1;
}
.case-article-content hr {
  margin: 38px 0;
  border: 0;
  border-top: 1px solid #eadde1;
}
.case-medical-note {
  margin-top: 46px;
  padding: 24px 25px;
  border: 1px solid #dcebed;
  border-radius: 14px;
  background: #f6fbfb;
}
.case-medical-note h2 {
  margin: 0 0 9px;
  color: #397e86;
  font-size: 16px;
}
.case-medical-note p {
  margin: 0;
  color: #66777a;
  font-size: 12.5px;
  line-height: 1.9;
}
.case-article-actions {
  display: flex;
  gap: 12px;
  margin: 28px 0 55px;
}
.case-article-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}
.case-action-primary {
  flex: 1;
  justify-content: space-between !important;
  color: #fff;
}
.case-action-primary-atheroma {
  background: #d96870;
  box-shadow: 0 9px 22px rgba(176, 75, 85, 0.16);
}
.case-action-primary-moistcare,
.case-action-primary-general {
  background: #419faa;
  box-shadow: 0 9px 22px rgba(48, 126, 135, 0.18);
}
.case-action-primary-pink {
  background: var(--hiro-pink-action);
  box-shadow: 0 9px 22px var(--hiro-pink-shadow);
}
.case-action-secondary {
  border: 1px solid #deced4;
  color: #684657;
  background: #fff;
}
.case-related {
  padding-top: 36px;
  border-top: 1px solid #ebdde2;
}
.case-related-heading span {
  display: block;
  color: #d56770;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.case-related-heading h2 {
  margin: 5px 0 22px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 23px;
  font-weight: 900;
}
.case-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.case-related-card {
  overflow: hidden;
  border: 1px solid #e9dce1;
  border-radius: 12px;
  background: #fff;
}
.case-related-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #fce9ea;
  color: #9e7083;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
}
.case-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-related-card > div {
  padding: 12px 13px 14px;
}
.case-related-card time {
  color: #987486;
  font-size: 10px;
}
.case-related-card h3 {
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.65;
}
.case-related-card h3 a {
  color: #4e2a3c;
  text-decoration: none;
}
.case-post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 38px;
}
.case-post-navigation > div:last-child {
  text-align: right;
}
.case-post-navigation a {
  display: block;
  height: 100%;
  padding: 14px 16px;
  border: 1px solid #e8dadf;
  border-radius: 11px;
  color: #654657;
  text-decoration: none;
}
.case-post-navigation span,
.case-post-navigation strong {
  display: block;
}
.case-post-navigation span {
  color: #a07c8c;
  font-size: 10px;
}
.case-post-navigation strong {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
}
.case-sidebar-box {
  padding: 20px;
  border: 1px solid #eadde1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(91, 54, 72, 0.055);
}
.case-sidebar-box h2 {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}
.case-sidebar-box > p {
  margin: 7px 0 13px;
  color: #8a6878;
  font-size: 11.5px;
  line-height: 1.7;
}
.case-sidebar-search form {
  display: flex;
}
.case-sidebar-search input {
  min-width: 0;
  flex: 1;
  height: 40px;
  padding: 0 11px;
  border: 1px solid #ddcdd3;
  border-radius: 8px 0 0 8px;
  font: inherit;
  font-size: 12px;
}
.case-sidebar-search button {
  width: 52px;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: #5fc2cc;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.case-sidebar-categories {
  display: grid;
  margin-top: 12px;
}
.case-sidebar-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid #f1e8eb;
  color: #654657;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.case-sidebar-categories small {
  color: #a48493;
  font-size: 9.5px;
  font-weight: 500;
}
.case-sidebar-guide-atheroma {
  background: linear-gradient(145deg, #fff2f3, #fffdfc);
}
.case-sidebar-guide-moistcare {
  border-color: #cde7e9;
  background: linear-gradient(145deg, #eaf7f8, #f9fdfd);
}
.case-sidebar-guide > span {
  display: block;
  margin-bottom: 6px;
  color: #d56770;
  font-size: 9.5px;
  font-weight: 900;
}
.case-sidebar-guide-moistcare > span {
  color: #348a93;
}
.case-sidebar-guide > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f0d8de;
  color: #c75f68;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 900;
}
.case-sidebar-guide-moistcare > a {
  border-top-color: #cde7e9;
  color: #2d838c;
}
.case-sidebar-back {
  display: block;
  padding: 13px;
  border: 1px solid #d5e8ea;
  border-radius: 10px;
  background: #f3fafa;
  color: #37858e;
  text-align: center;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .case-article-header {
    padding: 40px 0 35px;
  }
  .case-article-container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .case-article-header h1 {
    font-size: 28px;
  }
  .case-article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 38px;
  }
  .case-article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .case-sidebar-back {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .case-article-header h1 {
    font-size: 23px;
    line-height: 1.55;
  }
  .case-article-summary {
    padding: 15px 16px;
  }
  .case-article-toc {
    padding: 19px 17px;
  }
  .case-article-toc ol {
    grid-template-columns: 1fr;
  }
  .case-article-content {
    padding: 25px 18px 29px;
    border-radius: 13px;
    font-size: 14.5px;
    line-height: 1.95;
  }
  .case-article-content h2 {
    margin-top: 42px;
    padding: 13px 14px;
    font-size: 20px;
  }
  .case-article-content h3 {
    margin-top: 36px;
    font-size: 18px;
  }
  .case-article-content figure,
  .case-article-content .wp-caption {
    margin: 22px auto 27px !important;
  }
  .case-article-actions {
    display: grid;
  }
  .case-related-grid {
    grid-template-columns: 1fr;
  }
  .case-related-card {
    display: grid;
    grid-template-columns: 120px 1fr;
  }
  .case-post-navigation {
    grid-template-columns: 1fr;
  }
  .case-post-navigation > div:last-child {
    text-align: left;
  }
  .case-article-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ---- EXTRACTED INLINE STYLES ---- */
.ic1 {
  background: #fff8f6;
  overflow-x: clip;
}
.ic2 {
  margin-top: 24px;
}
.ic3 {
  margin-top: 20px;
  font-size: 13px;
  color: #a06e86;
  line-height: 1.8;
}
.ic4 {
  color: #4e2a3c;
}
.ic5 {
  background: #5fc2cc;
  color: #fff;
  font-size: 13px;
}
.ic6 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}
.utility-copy {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  text-align: left;
}
.utility-location,
.utility-philosophy,
.utility-proof {
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}
.utility-location {
  display: flex;
  align-items: center;
  gap: 6px;
}
.utility-philosophy,
.utility-proof {
  text-align: left;
}
.utility-philosophy::before,
.utility-proof::before {
  content: "｜";
  margin: 0 14px;
}
.utility-proof {
  font-size: 12px;
  font-weight: 800;
}
.utility-location-sp {
  display: none;
}
.util-location-icon {
  display: none;
}
.ic8 {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ic9 {
  opacity: 0.95;
}
.ic10 {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.util-tel-icon {
  display: none;
}
@media (max-width: 900px) {
  .ic6 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 10px;
    padding: 7px 14px;
  }
  .utility-copy {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2px 0 !important;
  }
  .utility-location,
  .utility-philosophy,
  .utility-proof {
    font-size: 9.5px;
    line-height: 1.25;
    letter-spacing: 0;
  }
  .utility-location {
    gap: 3px;
  }
  .utility-philosophy {
    text-align: left;
  }
  .utility-proof {
    grid-column: 1/-1;
    font-size: 9.5px;
  }
  .utility-philosophy::before,
  .utility-proof::before {
    content: none;
  }
  .utility-location-pc {
    display: none !important;
  }
  .utility-location-sp {
    display: inline !important;
  }
  .ic8 {
    display: block;
  }
  .util-location-icon,
  .util-tel-icon {
    display: block;
  }
}
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.ic11 {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f6e1e3;
}
.ic12 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.ic13 {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.ic14,
#logo_image img,
#logo_text {
  height: 76px;
  width: auto;
  max-width: 305px;
  display: block;
  object-fit: contain;
}
.ic15 {
  color: #6e4a5a;
  text-decoration: none;
}
.ic16 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #5fc2cc;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  box-shadow: 0 6px 16px rgba(95, 194, 204, 0.36);
}
.ic17 {
  position: relative;
}
.ic18 {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  padding: 64px 28px 72px;
  background: #3d4c4e;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #4a9da6;
  animation: heroMediaReveal 1.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(190, 91, 108, 0.62),
    rgba(62, 151, 160, 0.72) 50%,
    rgba(42, 126, 136, 0.66)
  );
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity;
}
.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  backface-visibility: hidden;
}
.hero-slide.hero-animation-type1.is-active img,
.hero-slide.hero-animation-type1.is-leaving img {
  animation: heroZoomOut 35s ease forwards;
}
.hero-hibiscus {
  position: absolute;
  z-index: 2;
  bottom: -75px;
  left: -120px;
  width: clamp(580px, 52vw, 760px);
  height: auto;
  opacity: 0.82;
  mix-blend-mode: normal;
  pointer-events: none;
  user-select: none;
  filter: none;
  animation: heroFlowerReveal 1.5s ease 0.6s both;
}
@keyframes heroMediaReveal {
  from {
    opacity: 0;
    filter: brightness(1.12) saturate(0.82);
    transform: translateY(12px) scale(1.025);
  }
  to {
    opacity: 1;
    filter: brightness(1) saturate(1);
    transform: translateY(0) scale(1);
  }
}
@keyframes heroFlowerReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.82;
  }
}
@keyframes heroZoomOut {
  from {
    transform: scale(1.16) rotate(0.0001deg);
  }
  to {
    transform: scale(1.01);
  }
}
@media (max-width: 600px) {
  .cta-sp-br {
    display: block;
  }
  .ic18.hero-slider {
    padding: 0 18px 48px;
    background: #5fc2cc;
  }
  .hero-slides {
    position: relative;
    inset: auto;
    z-index: 0;
    width: calc(100% + 36px);
    margin: 0 -18px 30px;
    aspect-ratio: 1/1;
    background: #eaf4f4;
  }
  .hero-slides::after {
    background: linear-gradient(
      115deg,
      rgba(190, 91, 108, 0.12),
      rgba(62, 151, 160, 0.14)
    );
  }
  .hero-slide img {
    object-fit: cover;
    object-position: center !important;
  }
  .hero-slide.hero-animation-type1.is-active img,
  .hero-slide.hero-animation-type1.is-leaving img {
    animation: none;
  }
  .hero-hibiscus {
    top: auto;
    right: auto;
    bottom: -24px;
    left: -48px;
    width: min(68vw, 300px);
    opacity: 0.82;
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.9))
      drop-shadow(0 0 16px rgba(255, 255, 255, 0.58));
  }
  .ic19 {
    margin-bottom: 30px;
  }
  .hero-h1 {
    margin-bottom: 18px;
    font-size: clamp(21px, 6.2vw, 26px) !important;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slides,
  .hero-hibiscus,
  .case-floating-link {
    animation: none;
  }
  .hero-slide {
    display: none;
    transition: none;
  }
  .hero-slide:first-child {
    display: block;
    opacity: 1;
  }
  .hero-slide.hero-animation-type1.is-active img,
  .hero-slide.hero-animation-type1.is-leaving img {
    animation: none;
  }
}
.ic19 {
  width: calc(100% + 56px);
  max-width: none;
  margin: 0 -28px 36px;
  padding: 27px max(28px, calc((100% - 900px) / 2)) 29px;
  border: 0;
  border-radius: 0;
  background: rgba(74, 82, 84, 0.43);
  box-shadow: none;
  backdrop-filter: blur(2px);
  text-align: center;
  animation: floatUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.ic19 > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .ic19 {
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }
}
.ic20 {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #b07888;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  background: #fff;
  padding: 6px 18px;
  border-radius: 999px;
}
.ic21 {
  animation: floatUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.ic22 {
  background: rgba(237, 146, 150, 0.94);
  border-radius: 28px;
  padding: 38px 36px;
  color: #fff;
  box-shadow: 0 22px 54px rgba(180, 90, 95, 0.28);
}
.ic23 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}
.ic24 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 16px;
}
.ic25 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.ic26 {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 700;
}
.ic27 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #e07075;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(150, 70, 75, 0.18);
}
.ic28 {
  background: rgba(75, 176, 187, 0.9);
  border-radius: 28px;
  padding: 38px 36px;
  color: #fff;
  box-shadow: 0 22px 54px rgba(75, 176, 187, 0.28);
}
.ic29 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: #4aafba;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(75, 176, 187, 0.22);
}
@media (max-width: 600px) {
  .pillar-box.ic22,
  .pillar-box.ic28 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }
  .pillar-box.ic22::before,
  .pillar-box.ic28::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 210px;
    height: 232px;
    background: url("../img/front2026/hiro-icon.png") center/contain no-repeat;
    opacity: 0.11;
    filter: brightness(0) invert(1);
    pointer-events: none;
  }
  .pillar-box.ic22 > *,
  .pillar-box.ic28 > * {
    position: relative;
    z-index: 1;
  }
  .pillar-box.ic22::before {
    right: -42px;
    bottom: -74px;
    transform: rotate(-8deg);
  }
  .pillar-box.ic28::before {
    bottom: -76px;
    left: -44px;
    transform: scaleX(-1) rotate(-8deg);
  }
}
.ic30 {
  text-align: center;
  margin-top: 28px;
}
.ic31 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #6e4a5a;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.7);
  padding: 9px 24px;
  border-radius: 999px;
}
.ic32 {
  position: relative;
  background:
    radial-gradient(circle at 18% 22%, #f5b6bb 0%, transparent 42%),
    radial-gradient(circle at 82% 18%, #ea8991 0%, transparent 46%),
    radial-gradient(circle at 65% 80%, #f1a3a9 0%, transparent 50%),
    radial-gradient(circle at 30% 75%, #e98a93 0%, transparent 48%),
    linear-gradient(135deg, #ed9296, #d86c77);
}
.ic32,
.ic181 {
  overflow: hidden;
}
.ic33 {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.treatment-floral-mark {
  position: absolute;
  z-index: 0;
  right: auto;
  left: -120px;
  bottom: -165px;
  width: clamp(520px, 48vw, 720px);
  height: auto;
  opacity: 0.14;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}
.ic34 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}
.ic35 {
  font-weight: 300;
  font-size: 26px;
  opacity: 0.85;
  transform: skewX(-12deg);
}
.ic36 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(130, 55, 67, 0.32);
}
.ic37 {
  font-weight: 300;
  font-size: 26px;
  opacity: 0.85;
  transform: skewX(12deg);
}
.ic38 {
  font-size: 15.5px;
  line-height: 2;
  max-width: 40em;
  margin: 0 auto 38px;
  text-shadow: 0 1px 8px rgba(130, 55, 67, 0.28);
}
.ic39 {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(150deg, #f5d3df, #ebc2d0);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(80, 110, 40, 0.22);
}
.ic40 {
  background: rgba(255, 255, 255, 0.85);
  color: #b07088;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
}
.ic41 {
  background: #fff;
  border-radius: 24px;
  padding: 34px 32px;
  box-shadow: 0 16px 40px rgba(80, 110, 40, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ic42 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ic43 {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ic44 {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fce9ea;
  color: #ed9296;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.ic45 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #4e2a3c;
}
.ic46 {
  font-size: 13.5px;
  color: #8c5872;
  line-height: 1.8;
}
.ic47 {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e2f3f5;
  color: #4db0bb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.ic48 {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef6df;
  color: #84be45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.ic49 {
  margin-top: 26px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  background: #d86c77;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(183, 77, 91, 0.22);
  transition:
    background 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.ic49:hover {
  background: #c65d69;
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(183, 77, 91, 0.28);
}
.ic50 {
  padding: 36px 18px 48px;
  background: #fff8f6;
}
.ic51 {
  max-width: 900px;
  margin: 0 auto;
}
.ic52 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #b07888;
  letter-spacing: 0.08em;
}
.ic53 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.ic54 {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid #f4dce5;
  color: #6e4a5a;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 22px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(180, 90, 95, 0.08);
}
.ic55 {
  background: linear-gradient(170deg, #fff1f3, #fff8f6 58%, #fff4f5);
}
.why-us-section {
  position: relative;
}
.ic56 {
  max-width: 1060px;
  margin: 0 auto;
}
.ic57 {
  text-align: center;
  margin-bottom: 54px;
}
.ic62 {
  font-size: 14.5px;
  color: #a06e86;
}
.ic63 {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 26px rgba(180, 90, 95, 0.08);
  overflow: hidden;
}
.ic64 {
  position: absolute;
  right: 18px;
  top: 12px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 58px;
  font-weight: 700;
  color: #ed9296;
  opacity: 0.08;
  line-height: 1;
}
.ic65 {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}
.ic66 {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fce9ea;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ic67 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #4e2a3c;
  margin-bottom: 7px;
}
.ic68 {
  font-size: 13.5px;
  color: #8c5872;
  line-height: 1.85;
}
.ic69 {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 26px rgba(75, 176, 187, 0.08);
  overflow: hidden;
}
.ic70 {
  position: absolute;
  right: 18px;
  top: 12px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 58px;
  font-weight: 700;
  color: #5fc2cc;
  opacity: 0.09;
  line-height: 1;
}
.ic71 {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e2f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ic72 {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 26px rgba(132, 190, 69, 0.08);
  overflow: hidden;
}
.ic73 {
  position: absolute;
  right: 18px;
  top: 12px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 58px;
  font-weight: 700;
  color: #84be45;
  opacity: 0.1;
  line-height: 1;
}
.ic74 {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef6df;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ic75 {
  background: #fff8f6;
}
.front-section {
  position: relative;
  --section-accent: #ed9296;
}
.front-section-teal {
  --section-accent: #5fc2cc;
}
.front-section-pink {
  --section-accent: #ed9296;
}
.front-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  width: 76px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: var(--section-accent);
  transform: translateX(-50%);
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.section-kicker-pink {
  background: #fce3e6;
  color: #c75f69;
}
.section-kicker-teal {
  background: #d9f0f2;
  color: #348c95;
}
.section-kicker-light {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: 0 3px 12px rgba(39, 82, 88, 0.1);
}
.ic76 {
  max-width: 1080px;
  margin: 0 auto;
}
.ic77 {
  text-align: center;
  margin-bottom: 42px;
}
.ic78 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.ic79 {
  color: #f0b8bb;
  font-weight: 300;
  font-size: 22px;
  transform: skewX(-12deg);
}
.ic80 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #4e2a3c;
}
.ic81 {
  color: #f0b8bb;
  font-weight: 300;
  font-size: 22px;
  transform: skewX(12deg);
}
.ic82 {
  background: #fff;
  border-radius: 18px;
  padding: 24px 14px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(180, 90, 95, 0.07);
}
.ic83 {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fce9ea;
  color: #ed9296;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.ic84 {
  font-size: 14px;
  font-weight: 700;
  color: #4e2a3c;
}
.ic85 {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e2f3f5;
  color: #4db0bb;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.ic86 {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eef6df;
  color: #84be45;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.ic87 {
  text-align: center;
  font-size: 13px;
  color: #a06e86;
  margin-top: 18px;
}
.ic88 {
  background: linear-gradient(160deg, #eef9fa, #fbfefe);
}
.ic89 {
  color: #75bdc4;
  font-weight: 300;
  font-size: 22px;
  transform: skewX(-12deg);
}
.ic90 {
  color: #75bdc4;
  font-weight: 300;
  font-size: 22px;
  transform: skewX(12deg);
}
.ic91 {
  font-size: 14px;
  color: #648084;
  margin-top: 10px;
}
.ic92 {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(180, 90, 95, 0.1);
}
.ic93 {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.ic94 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ic95 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(237, 146, 150, 0.45));
  height: 40px;
}
.ic96 {
  padding: 18px 22px 22px;
}
.ic97 {
  font-size: 11px;
  font-weight: 700;
  color: #ed9296;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.ic98 {
  font-size: 15px;
  font-weight: 700;
  color: #4e2a3c;
}
.ic99 {
  font-size: 13px;
  color: #a06e86;
  margin-top: 4px;
  line-height: 1.75;
}
.ic100 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(75, 176, 187, 0.38));
  height: 40px;
}
.ic101 {
  font-size: 11px;
  font-weight: 700;
  color: #4db0bb;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.ic102 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(132, 190, 69, 0.28));
  height: 40px;
}
.ic103 {
  font-size: 11px;
  font-weight: 700;
  color: #84be45;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.ic104 {
  background: linear-gradient(160deg, #fce9ea, #f9dcdf);
}
.ic105 {
  text-align: center;
  margin-bottom: 38px;
}
.ic106 {
  font-size: 14.5px;
  color: #8c5872;
  margin-top: 12px;
}
.ic107 {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(180, 90, 95, 0.1);
}
.ic108 {
  aspect-ratio: 1/1;
  background: linear-gradient(140deg, #f5d3df, #ebbdcf);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bc7290;
  font-size: 12px;
  font-weight: 700;
}
.ic109 {
  padding: 16px 18px 18px;
}
.ic110 {
  font-size: 11px;
  color: #ed9296;
  font-weight: 700;
  margin-bottom: 5px;
}
.ic111 {
  font-size: 14.5px;
  font-weight: 700;
  color: #4e2a3c;
}
.ic112 {
  font-size: 12.5px;
  color: #a06e86;
  font-weight: 500;
}
.ic113 {
  text-align: center;
  margin-top: 30px;
}
.ic114 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ed9296;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(237, 146, 150, 0.32);
}
.front-case-group {
  padding: 30px;
  border: 1px solid rgba(237, 146, 150, 0.22);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
}
.front-case-group + .front-case-group {
  margin-top: 28px;
}
.front-case-group-heading {
  margin-bottom: 22px;
  text-align: left;
}
.front-case-group-heading > span {
  display: block;
  margin-bottom: 5px;
  color: #d16b74;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.front-case-group-heading h3 {
  margin: 0;
  color: #4e2a3c;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.55;
}
.front-case-group-heading p {
  margin: 6px 0 0;
  color: #8c6578;
  font-size: 12.5px;
  line-height: 1.7;
}
.cases-grid-atheroma {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cases-grid-moistcare {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.front-case-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.front-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 34px rgba(151, 74, 81, 0.16);
}
.front-case-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.front-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.front-case-card .ic109 {
  display: flex;
  flex-direction: column;
  min-height: 166px;
}
.front-case-card .ic110 {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.front-case-card .ic110 time {
  color: #a98494;
  font-weight: 500;
  white-space: nowrap;
}
.front-case-card .ic111 {
  font-size: 13.5px;
  line-height: 1.7;
}
.front-case-more {
  display: block;
  margin-top: auto;
  padding-top: 13px;
  color: #c75f68;
  font-size: 11px;
  font-weight: 800;
}
.front-case-group-moistcare {
  border-color: rgba(75, 176, 187, 0.28);
  background: rgba(244, 252, 252, 0.82);
}
.front-case-group-moistcare .front-case-group-heading > span,
.front-case-group-moistcare .ic110,
.front-case-group-moistcare .front-case-more {
  color: #328e99;
}
.front-case-group-moistcare .front-case-card:hover {
  box-shadow: 0 17px 34px rgba(48, 126, 135, 0.15);
}
@media (max-width: 600px) {
  .front-case-card {
    display: block !important;
  }
  .front-case-image {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    background: #f7eff2;
  }
  .front-case-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .front-case-card .ic109 {
    display: flex !important;
    min-height: 0;
    padding: 17px 18px 19px;
  }
  .front-case-card .ic110 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .front-case-card .ic110 time {
    display: inline;
    margin: 0;
  }
  .front-case-card .ic111 {
    margin-top: 7px;
    font-size: 13.5px;
    line-height: 1.7;
  }
  .front-case-more {
    display: block;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid #f0dde2;
    font-size: 11px;
  }
}
.ic115 {
  max-width: 1120px;
  margin: 0 auto;
}
.ic116 {
  border: 1px solid #c9e8ea;
  background:
    radial-gradient(
      circle at 82% 2%,
      rgba(255, 255, 255, 0.82) 0%,
      transparent 43%
    ),
    linear-gradient(155deg, #effafa, #ddf2f3);
  border-radius: 34px;
  padding: 56px 48px;
  color: #31575c;
  box-shadow: 0 20px 46px rgba(65, 139, 147, 0.14);
}
.dept-panel .section-kicker-light {
  border-color: #bfe1e4;
  background: #fff;
  color: #368f99;
  box-shadow: 0 4px 13px rgba(49, 129, 138, 0.08);
}
.ic117 {
  text-align: center;
  margin-bottom: 40px;
}
.ic118 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}
.ic119 {
  color: #79c3c9;
  font-weight: 300;
  font-size: 24px;
  opacity: 0.9;
  transform: skewX(-12deg);
}
.ic120 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 28px;
}
.ic121 {
  color: #79c3c9;
  font-weight: 300;
  font-size: 24px;
  opacity: 0.9;
  transform: skewX(12deg);
}
.ic122 {
  font-size: 14.5px;
  color: #58777b;
  max-width: 38em;
  margin: 0 auto;
}
.ic123 {
  background: rgba(255, 255, 255, 0.93);
  border: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  border-radius: 22px;
  padding: 8px 8px 26px;
  color: #4e2a3c;
}
.ic124 {
  aspect-ratio: 16/10;
  border-radius: 16px;
  background: linear-gradient(140deg, #f5d3df, #ebc6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b07088;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 18px;
  overflow: hidden;
}
.ic125 {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #5fc2cc;
  margin-bottom: 6px;
  font-weight: 700;
}
.ic126 {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #4e2a3c;
}
.ic127 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
  font-size: 13px;
}
.ic128 {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fde8e9;
  border-radius: 8px;
  padding: 9px 14px;
  color: #4e2a3c;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s;
  font-weight: 600;
}
.ic128::before {
  content: "●";
  font-size: 6px;
  color: #ed9296;
  flex-shrink: 0;
  line-height: 1;
}
.ic128:hover {
  background: #facdd0;
  transform: translateX(3px);
}
.ic129 {
  background: rgba(255, 255, 255, 0.93);
  border: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  border-radius: 22px;
  padding: 8px 8px 26px;
  color: #4e2a3c;
}
.ic130 {
  aspect-ratio: 16/10;
  border-radius: 16px;
  background: linear-gradient(140deg, #eaf6f7, #d6eef0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5e9aa0;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 18px;
  overflow: hidden;
}
.ic131 {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 20px;
  color: #4e2a3c;
}
.dept-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.dept-feature-card {
  position: relative;
  display: flex;
  min-height: 390px;
  overflow: hidden;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  color: #36575c;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(48, 91, 97, 0.12);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.dept-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  background:
    radial-gradient(circle at 88% 10%, #fff 0 8%, transparent 9%),
    radial-gradient(circle at 92% 18%, #fff 0 3%, transparent 4%);
}
.dept-feature-card > * {
  position: relative;
  z-index: 1;
}
.dept-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(48, 91, 97, 0.25);
}
.dept-feature-card > .dept-floral-mark {
  position: absolute;
  z-index: 0;
  right: auto;
  bottom: -105px;
  left: -68px;
  width: 390px;
  max-width: none;
  height: auto;
  opacity: 0.12;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}
.dept-feature-funryu {
  background: linear-gradient(145deg, #f8d6d8, #f2b8bd);
  color: #633d4b;
}
.dept-feature-natsui {
  background: linear-gradient(145deg, #c8ebed, #9ed9dd);
  color: #31585d;
}
.dept-feature-title {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-shadow: none;
}
.dept-feature-concern {
  display: block;
  margin-top: 7px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}
.dept-feature-symptoms {
  margin: 10px 0 18px;
  color: rgba(66, 66, 73, 0.78);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.75;
}
.dept-feature-treatment {
  display: block;
  margin-top: auto;
  padding: 17px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #553747;
  box-shadow: 0 7px 18px rgba(55, 48, 52, 0.1);
}
.dept-feature-treatment em,
.dept-feature-treatment b,
.dept-feature-treatment small {
  display: block;
}
.dept-feature-treatment em {
  margin-bottom: 5px;
  color: #c45d67;
  font-size: 8.5px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.dept-feature-natsui .dept-feature-treatment em {
  color: #318994;
}
.dept-feature-treatment b {
  font-size: 13px;
  line-height: 1.6;
}
.dept-feature-treatment small {
  margin-top: 6px;
  color: #806372;
  font-size: 10.5px;
  line-height: 1.65;
}
.dept-feature-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(65, 103, 108, 0.22);
  font-size: 11.5px;
  font-weight: 900;
}
.dept-menu-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 2px 16px;
}
.dept-menu-heading span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #479aa3;
}
.dept-menu-heading strong {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 19px;
}
.dept-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.dept-menu-group {
  overflow: hidden;
  border: 1px solid #d6e9ea;
  border-radius: 18px;
  background: #fff;
  color: #4e2a3c;
  box-shadow: 0 9px 25px rgba(29, 92, 99, 0.08);
}
.dept-menu-image {
  aspect-ratio: 16/8;
  overflow: hidden;
  background: #d9eef0;
}
.dept-menu-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dept-menu-body {
  padding: 20px;
}
.dept-menu-body > span {
  display: block;
  margin-bottom: 5px;
  color: #42a3ad;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.dept-menu-body h3 {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15.5px;
  font-weight: 900;
  line-height: 1.5;
}
.dept-menu-body p {
  min-height: 5.4em;
  margin: 9px 0 15px;
  color: #876879;
  font-size: 11px;
  line-height: 1.8;
}
.dept-menu-links {
  display: grid;
  gap: 7px;
}
.dept-menu-links a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 28px 8px 12px;
  border-radius: 8px;
  background: #fff2f3;
  color: #5d3d4c;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.45;
  transition:
    background 0.15s,
    transform 0.15s;
}
.dept-menu-links a::after {
  content: "→";
  position: absolute;
  right: 11px;
  color: #d66d76;
}
.dept-menu-links a:hover {
  background: #f9dde0;
  transform: translateX(2px);
}
.dept-price-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: min(360px, 100%);
  margin: 30px auto 0;
  padding: 13px 20px;
  border: 1px solid #bbdde0;
  border-radius: 999px;
  background: #fff;
  color: #367f88;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(49, 129, 138, 0.1);
  transition:
    background 0.15s,
    transform 0.15s;
}
.dept-price-link:hover {
  background: #f7fdfd;
  transform: translateY(-2px);
}
.ic132 {
  position: relative;
  background:
    linear-gradient(
      90deg,
      rgba(38, 49, 52, 0.58),
      rgba(73, 78, 82, 0.46) 52%,
      rgba(116, 111, 112, 0.4)
    ),
    url("../img/front2026/hero.png") center/cover no-repeat;
}
.ic133 {
  background: #fce9ea;
  border-radius: 28px;
  padding: 44px 44px;
  box-shadow: 0 20px 50px rgba(80, 110, 40, 0.22);
}
.ic134 {
  text-align: center;
  margin-bottom: 30px;
}
.ic135 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #4e2a3c;
}
.ic136 {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(180, 90, 95, 0.1);
}
.ic137 {
  aspect-ratio: 16/10;
  background: linear-gradient(150deg, #eaf6f7, #d6eef0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5e9aa0;
  font-size: 12.5px;
  font-weight: 700;
}
.access-map-frame {
  padding: 0;
}
.access-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}
.ic138 {
  padding: 22px 26px;
}
.ic139 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #4e2a3c;
  margin-bottom: 8px;
}
.ic140 {
  font-size: 13.5px;
  color: #8c5872;
  line-height: 1.9;
}
.ic141 {
  font-size: 13px;
  color: #4db0bb;
  font-weight: 700;
  margin-top: 6px;
}
.ic142 {
  background: #fff;
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 10px 26px rgba(180, 90, 95, 0.1);
  display: flex;
  flex-direction: column;
}
.ic143 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #4e2a3c;
  margin-bottom: 16px;
}
.ic144 {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 12px;
  color: #5c3447;
}
.ic145 {
  background: #5fc2cc;
  color: #fff;
}
.ic146 {
  width: 25%;
  text-align: left;
  padding: 9px 6px;
  font-weight: 600;
  border-radius: 8px 0 0 0;
}
.ic147 {
  width: 10.714%;
  padding: 9px 3px;
  font-weight: 600;
}
.ic148 {
  width: 10.714%;
  padding: 9px 3px;
  font-weight: 600;
  border-radius: 0 8px 0 0;
}
.ic149 {
  border-bottom: 1px solid #f4dce5;
}
.ic150 {
  padding: 11px 6px;
  background: #fff0f1;
  color: #4e2a3c;
  font-weight: 700;
  line-height: 1.45;
  word-break: keep-all;
}
.ic151 {
  text-align: center;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.ic152 {
  text-align: center;
  color: #ed9296;
}
.ic153 {
  font-size: 12px;
  color: #a06e86;
  margin-top: 12px;
  line-height: 1.8;
}
.ic154 {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #5fc2cc;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 13px;
  border-radius: 999px;
  font-size: 15px;
}
.schedule-special {
  font-weight: 400;
  line-height: 1.55;
}
.schedule-time-stack {
  display: inline-block;
  min-width: 4.8em;
  line-height: 1.55;
}
.schedule-note-mark {
  color: #d85f67;
  font-weight: 900;
  margin-left: 3px;
}
.schedule-notes .schedule-note-mark {
  margin-left: 0;
}
.schedule-notes {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #7a4a5e;
  line-height: 1.75;
}
.schedule-notes li {
  position: relative;
  padding-left: 1.15em;
}
.schedule-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5fc2cc;
}
.clinic-hours {
  width: 100%;
  min-width: 0;
}
.clinic-hours-grid {
  display: grid;
  grid-template-columns: minmax(110px, 1.45fr) repeat(7, minmax(40px, 1fr));
  grid-template-rows: auto minmax(54px, auto) minmax(54px, auto);
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e6d8de;
  border-radius: 12px;
  background: #fff;
  color: #553646;
  font-size: 12px;
}
.clinic-hours-labels,
.clinic-hours-day {
  display: contents;
}
.clinic-hours-head {
  grid-column: var(--hours-column);
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 10px 4px;
  background: #5fc2cc;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 700;
  white-space: nowrap;
}
.clinic-hours-title {
  justify-content: flex-start;
  padding-left: 12px;
  border-left: 0;
}
.clinic-hours-time {
  grid-column: var(--hours-column);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  padding: 8px 11px;
  background: #fff0f1;
  border-top: 1px solid #ebdde2;
}
.clinic-hours-time:nth-child(2) {
  grid-row: 2;
}
.clinic-hours-time:nth-child(3) {
  grid-row: 3;
}
.clinic-hours-time span {
  color: #b76b7b;
  font-size: 9px;
  font-weight: 700;
}
.clinic-hours-time strong {
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
}
.clinic-hours-cell {
  grid-column: var(--hours-column);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 7px 3px;
  border-top: 1px solid #ebdde2;
  border-left: 1px solid #f0e5e8;
  color: #4e9da7;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}
.clinic-hours-cell:nth-child(2) {
  grid-row: 2;
}
.clinic-hours-cell:nth-child(3) {
  grid-row: 3;
}
.clinic-hours-mobile-value {
  display: none;
}
.clinic-hours-cell.has-note {
  flex-direction: column;
  color: #5c4050;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.clinic-hours-cell em,
.clinic-hours-special em {
  color: #d85f67;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}
.clinic-hours-special {
  grid-column: var(--hours-column);
  grid-row: 2/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 5px 2px;
  border-top: 1px solid #ebdde2;
  border-left: 1px solid #f0e5e8;
  background: #fffdfc;
  color: #5c4050;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
.clinic-hours-special span,
.clinic-hours-special b,
.clinic-hours-special em {
  display: block;
}
.clinic-hours-special b {
  color: #a78493;
  font-size: 10px;
  font-weight: 500;
}
.clinic-hours-special span {
  font-size: 11px;
  white-space: nowrap;
}
.legacy-fixed-content .clinic-hours {
  margin: 18px 0 30px;
}
.legacy-fixed-content .clinic-hours-grid {
  font-size: 12px;
}
.legacy-fixed-content .clinic-hours strong {
  color: inherit;
}
.legacy-fixed-content .clinic-hours .schedule-notes {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
}
.fixed-page-enrichment {
  margin: 0 0 54px;
}
.fixed-page-lead {
  max-width: 820px;
  margin: 0 auto 38px !important;
  color: #684b59 !important;
  font-size: 16px !important;
  font-weight: 500;
  line-height: 2.1 !important;
  text-align: center;
}
.fixed-page-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.fixed-page-info-grid section {
  padding: 27px 28px;
  border: 1px solid #eedde1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(100, 62, 77, 0.055);
}
.fixed-page-info-grid section > span,
.fixed-page-related-heading > span,
.fixed-page-detail-divider > span {
  color: #d76d77;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.fixed-page-info-grid h3 {
  margin: 5px 0 18px !important;
  color: #553646 !important;
  font-size: 19px !important;
}
.fixed-page-info-grid ul,
.fixed-page-info-grid ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
.fixed-page-info-grid li {
  position: relative;
  margin: 0 !important;
  padding: 0 0 0 20px !important;
  color: #755766;
  font-size: 13px;
  line-height: 1.7;
}
.fixed-page-info-grid ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5fc2cc;
}
.fixed-page-info-grid ol li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  padding-left: 0 !important;
}
.fixed-page-info-grid ol b {
  color: #5aaeb7;
  font-size: 10px;
}
.fixed-page-safety-note {
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 13px;
  background: #fff0f1;
}
.fixed-page-safety-note strong {
  color: #b65262;
  font-size: 12px;
}
.fixed-page-safety-note p {
  margin: 0 !important;
  color: #765966 !important;
  font-size: 11.5px !important;
  line-height: 1.8 !important;
}
.fixed-page-related {
  margin-top: 48px;
}
.fixed-page-related-heading {
  margin-bottom: 18px;
  text-align: center;
}
.fixed-page-related-heading h3,
.fixed-page-detail-divider h3 {
  margin: 5px 0 0 !important;
  color: #553646 !important;
  font-size: 22px !important;
}
.fixed-page-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.fixed-page-related-grid a {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e8dce0;
  border-radius: 14px;
  background: #fff;
  color: #684b59;
  text-decoration: none;
}
.fixed-page-related-grid figure {
  height: 145px;
  margin: 0 !important;
  overflow: hidden;
  background: #e9f1f2;
}
.fixed-page-related-grid figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.fixed-page-related-grid a:hover figure img {
  transform: scale(1.025);
}
.fixed-page-related-grid a > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 20px;
}
.fixed-page-related-grid time {
  color: #b28b9a;
  font-size: 9px;
}
.fixed-page-related-grid strong {
  margin: 8px 0 16px;
  font-size: 12.5px;
  line-height: 1.7;
}
.fixed-page-related-grid span {
  margin-top: auto;
  color: #c6606b;
  font-size: 10px;
  font-weight: 800;
}
.fixed-page-detail-divider {
  margin: 54px 0 0;
  padding-top: 35px;
  border-top: 1px solid #e9dde1;
  text-align: center;
}
.fixed-page-detail-divider h3 {
  font-size: 20px !important;
}
@media (max-width: 700px) {
  .fixed-page-enrichment {
    margin-bottom: 40px;
  }
  .fixed-page-lead {
    margin-bottom: 28px !important;
    font-size: 14px !important;
    text-align: left;
  }
  .fixed-page-info-grid {
    grid-template-columns: 1fr;
  }
  .fixed-page-info-grid section {
    padding: 23px 20px;
  }
  .fixed-page-safety-note {
    display: block;
    padding: 17px 18px;
  }
  .fixed-page-safety-note strong {
    display: block;
    margin-bottom: 6px;
  }
  .fixed-page-related-grid {
    grid-template-columns: 1fr;
  }
  .fixed-page-related-grid a > div {
    padding: 17px 18px;
  }
}

/* ---- Mole, pigmentation and wart page ---- */
.skin-warning > p a {
  display: inline-block;
  margin-left: 8px;
  color: #a94f5c;
  font-weight: 700;
}
.skin-detail-page {
  --skin-text-body: 15px;
  --skin-text-support: 14px;
  --skin-text-meta: 13px;
  --skin-text-label: 12px;
  --skin-title-section: 28px;
  --skin-title-card: 17px;
  background: #fffaf8;
  color: #533b47;
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: var(--skin-text-body);
  line-height: 1.9;
}
.skin-detail-page button,
.skin-detail-page input,
.skin-detail-page select,
.skin-detail-page textarea {
  font-family: inherit;
}
.skin-detail-page h1,
.skin-detail-page h2,
.skin-detail-page h3,
.skin-detail-page h4,
.skin-detail-page h5,
.skin-detail-page h6 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}
.skin-container {
  width: min(1080px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}
.skin-section {
  padding: 82px 0;
}
.skin-kicker,
.skin-heading > span {
  display: block;
  margin-bottom: 10px;
  color: #c96572;
  font-size: var(--skin-text-label);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.18em;
}
.skin-heading {
  margin-bottom: 34px;
  text-align: center;
}
.skin-heading h2 {
  margin: 0;
  color: #513a46;
  font-size: var(--skin-title-section);
  font-weight: 900;
  line-height: 1.5;
}
.skin-heading > p {
  max-width: 650px;
  margin: 13px auto 0;
  color: #806471;
  font-size: var(--skin-text-meta);
  line-height: 1.85;
}
.skin-intro {
  background: linear-gradient(135deg, #fff8f5, #fcebed);
}
.skin-intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
}
.skin-intro h2 {
  margin: 0;
  color: #513a46;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.55;
}
.skin-intro-copy > p {
  margin: 0 0 18px;
  color: #6f5360;
  font-size: var(--skin-text-body);
  line-height: 2;
}
.skin-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.skin-type-card {
  position: relative;
  min-width: 0;
  padding: 28px;
  border: 1px solid #eadde0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(89, 56, 71, 0.06);
}
.skin-type-card > .skin-type-icon {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #d98b93;
  font-size: 27px;
}
.skin-type-card > div > p {
  margin: 0;
  color: #c77a84;
  font-size: var(--skin-text-label);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.18em;
}
.skin-type-card h3 {
  margin: 4px 0 17px;
  font-size: var(--skin-title-card);
  line-height: 1.55;
}
.skin-type-card > p {
  margin: 0;
  color: #765a67;
  font-size: var(--skin-text-support);
  line-height: 1.9;
}
.skin-type-spot > .skin-type-icon {
  color: #b49373;
}
.skin-type-wart > .skin-type-icon {
  color: #5bb2bb;
}
.skin-warning {
  margin-top: 28px;
  padding: 26px 30px;
  border: 1px solid #f1cdd2;
  border-radius: 18px;
  background: #fff1f1;
}
.skin-warning > div {
  display: flex;
  align-items: center;
  gap: 11px;
}
.skin-warning > div > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d86570;
  color: #fff;
  font-weight: 900;
}
.skin-warning h3 {
  margin: 0;
  font-size: var(--skin-title-card);
  line-height: 1.55;
}
.skin-warning ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 15px;
  padding: 0;
  list-style: none;
}
.skin-warning li {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 14px 15px;
  border-radius: 10px;
  background: #fff;
  color: #75515f;
  font-size: var(--skin-text-support);
  font-weight: 700;
  line-height: 1.9;
}
.skin-warning > p {
  margin: 0;
  color: #856975;
  font-size: var(--skin-text-meta);
  line-height: 1.85;
}
.skin-treatment {
  background: #426f74;
  color: #fff;
}
.skin-heading-light h2 {
  color: #fff;
}
.skin-heading-light > span {
  color: #98dce1;
}
.skin-heading-light > p {
  color: rgba(255, 255, 255, 0.78);
}
.skin-treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.skin-treatment-grid article {
  position: relative;
  padding: 29px 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}
.skin-treatment-grid article > b {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.23);
  font-size: 29px;
}
.skin-treatment-grid h3 {
  margin: 0 0 17px;
  font-size: var(--skin-title-card);
  line-height: 1.55;
}
.skin-treatment-grid article > p {
  min-height: 140px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--skin-text-support);
  line-height: 1.9;
}
.skin-treatment-grid dl {
  margin: 0;
}
.skin-treatment-grid dl > div {
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.skin-treatment-grid dt {
  margin-bottom: 4px;
  color: #99e0e5;
  font-size: var(--skin-text-label);
  font-weight: 900;
  line-height: 1.6;
}
.skin-treatment-grid dd {
  margin: 0;
  font-size: var(--skin-text-support);
  line-height: 1.9;
}
.skin-wound-policy {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  margin-top: 22px;
  padding: 27px 30px;
  border-radius: 16px;
  background: #fff;
  color: #543d49;
}
.skin-wound-policy div > p {
  margin: 0;
  color: #d06c77;
  font-size: var(--skin-text-label);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.18em;
}
.skin-wound-policy h3 {
  margin: 5px 0 0;
  font-size: var(--skin-title-card);
  line-height: 1.55;
}
.skin-wound-policy > p {
  margin: 0;
  color: #765a66;
  font-size: var(--skin-text-support);
  line-height: 1.9;
}
.skin-cases {
  background: #fff7f4;
}
.skin-case-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.skin-case-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid #eadde0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(87, 55, 69, 0.065);
}
.skin-case-card:nth-child(even) .skin-case-copy {
  order: 2;
}
.skin-case-card:nth-child(even) .skin-case-images {
  order: 1;
}
.skin-case-number {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c86873;
  font-size: var(--skin-text-label);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.14em;
}
.skin-case-number span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #f9e5e7;
  letter-spacing: 0;
}
.skin-case-copy h3 {
  margin: 12px 0 7px;
  font-size: 19px;
  line-height: 1.55;
}
.skin-case-profile {
  margin: 0 0 15px !important;
  color: #a07c8b !important;
  font-size: var(--skin-text-meta) !important;
  font-weight: 700;
  line-height: 1.7;
}
.skin-case-copy > p:not(.skin-case-profile) {
  margin: 0;
  color: #745764;
  font-size: var(--skin-text-support);
  line-height: 1.9;
}
.skin-case-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 19px;
  color: #b95764;
  font-size: var(--skin-text-support);
  font-weight: 800;
  line-height: 1.7;
  text-decoration: none;
}
.skin-case-copy > a span {
  font-size: 16px;
}
.skin-case-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}
.skin-case-images figure {
  min-width: 0;
  margin: 0;
}
.skin-case-images figure > div {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: 14px;
  background: #e9eeee;
}
.skin-case-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.skin-case-images figure b {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(60, 89, 92, 0.82);
  color: #fff;
  font-size: var(--skin-text-label);
  line-height: 1.6;
}
.skin-case-images figure:first-child b {
  background: rgba(172, 78, 90, 0.85);
}
.skin-case-images figcaption {
  padding-top: 7px;
  color: #896b78;
  font-size: var(--skin-text-meta);
  line-height: 1.7;
  text-align: center;
}
.skin-case-arrow {
  color: #d27b84;
  text-align: center;
}
.skin-faq {
  background: #f6eeee;
}

@media (max-width: 800px) {
  .skin-section {
    padding: 62px 0;
  }
  .skin-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .skin-type-grid,
  .skin-treatment-grid {
    grid-template-columns: 1fr;
  }
  .skin-warning ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .skin-treatment-grid article > p {
    min-height: 0;
  }
  .skin-wound-policy {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .skin-case-card {
    grid-template-columns: 1fr;
  }
  .skin-case-card:nth-child(even) .skin-case-copy,
  .skin-case-card:nth-child(even) .skin-case-images {
    order: initial;
  }
  .skin-case-images figure > div {
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media (max-width: 520px) {
  .skin-detail-page {
    --skin-text-body: 14px;
    --skin-text-support: 14px;
    --skin-text-meta: 12px;
    --skin-title-section: 22px;
    --skin-title-card: 17px;
  }
  .skin-container {
    width: calc(100% - 28px);
  }
  .skin-section {
    padding: 52px 0;
  }
  .skin-heading {
    margin-bottom: 26px;
    text-align: left;
  }
  .skin-intro h2 {
    font-size: 24px;
  }
  .skin-type-card {
    padding: 23px 20px;
  }
  .skin-warning {
    padding: 22px 18px;
  }
  .skin-warning ul {
    grid-template-columns: 1fr;
  }
  .skin-warning li {
    min-height: 0;
  }
  .skin-treatment-grid article {
    padding: 25px 21px;
  }
  .skin-wound-policy {
    padding: 22px 20px;
  }
  .skin-case-card {
    gap: 23px;
    padding: 22px 17px;
  }
  .skin-case-copy h3 {
    font-size: 18px;
  }
  .skin-case-images {
    grid-template-columns: minmax(0, 1fr) 17px minmax(0, 1fr);
    gap: 4px;
  }
}
@media (max-width: 700px) {
  .clinic-hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .clinic-hours-labels {
    display: none;
  }
  .clinic-hours-day {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    border: 1px solid #e8d9de;
    border-radius: 11px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(92, 52, 70, 0.045);
  }
  .clinic-hours-head {
    grid-column: 1;
    grid-row: 1/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    border: 0;
    background: #5fc2cc;
    font-size: 13px;
    white-space: nowrap;
  }
  .clinic-hours-cell {
    position: relative;
    grid-column: 2 !important;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    min-height: 42px;
    padding: 8px 12px;
    border: 0;
    border-top: 1px solid #f0e5e8;
    color: #5c4050;
    font-size: 12px;
    text-align: left;
  }
  .clinic-hours-cell:nth-child(2) {
    grid-row: 1;
    border-top: 0;
  }
  .clinic-hours-cell:nth-child(3) {
    grid-row: 2;
  }
  .clinic-hours-cell::before {
    content: attr(data-period);
    color: #a06e86;
    font-size: 10px;
    font-weight: 700;
  }
  .clinic-hours-desktop-value {
    display: none;
  }
  .clinic-hours-mobile-value {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }
  .clinic-hours-mobile-value > span {
    text-align: center;
  }
  .clinic-hours-mobile-value > b {
    color: #a78493;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
  }
  .clinic-hours-cell.has-note {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 16px;
    flex-direction: initial;
    color: #5c4050;
    font-size: 14px;
    white-space: nowrap;
  }
  .clinic-hours-special {
    grid-column: 2;
    grid-row: 1/3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px;
    align-items: center;
    justify-content: stretch;
    min-height: 84px;
    padding: 12px 16px;
    border: 0;
    color: #5c4050;
  }
  .clinic-hours-special span {
    font-size: 14px;
    text-align: center;
  }
  .clinic-hours-special b {
    text-align: center;
  }
  .clinic-hours-special em {
    text-align: right;
  }
  .schedule-notes {
    margin-top: 18px;
    font-size: 11.5px;
  }
}
.ic156 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ic157 {
  background: #fff;
  border: 1px solid #f4dce5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(180, 90, 95, 0.06);
}
.ic158 {
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
.ic159 {
  display: flex;
  align-items: center;
  gap: 13px;
}
.ic160 {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fce9ea;
  color: #ed9296;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 17px;
  line-height: 1;
}
.ic161 {
  position: relative;
  width: 20px;
  height: 20px;
  color: transparent;
  font-size: 0;
  flex: 0 0 20px;
  transition: transform 0.32s ease;
}
.ic161::before,
.ic161::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 2px;
  background: #5fc2cc;
  content: "";
  transform: translate(-50%, -50%);
  transition:
    transform 0.32s ease,
    opacity 0.22s ease;
}
.ic161::before {
  width: 14px;
  height: 2px;
}
.ic161::after {
  width: 2px;
  height: 14px;
}
.ic162 {
  display: flex;
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 14.5px;
  color: #7a4a5e;
  line-height: 1.95;
  align-items: flex-start;
  gap: 13px;
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  transition:
    max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.24s ease,
    transform 0.32s ease,
    visibility 0s linear 0.42s;
  will-change: max-height;
}
.faq-answer-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2f3f5;
  color: #4db0bb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 17px;
  line-height: 1;
}
.faq-answer-text {
  display: block;
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
}
.ic163 {
  padding-top: 80px;
  background: #fff8f6;
}
.ic164 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, #f6b9bc 0%, transparent 55%),
    linear-gradient(150deg, #ed9296, #e47a80);
  border-radius: 30px;
  padding: 58px 48px;
  text-align: center;
  color: #fff;
  box-shadow: 0 22px 50px rgba(228, 122, 128, 0.3);
}
.cta-section > * {
  position: relative;
  z-index: 1;
}
.cta-section > .common-cta-floral {
  position: absolute;
  z-index: 0;
  right: auto;
  bottom: -145px;
  left: -105px;
  width: 560px;
  max-width: none;
  height: auto;
  opacity: 0.14;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}
.cta-section > .section-kicker {
  display: table;
  margin-right: auto;
  margin-bottom: 14px;
  margin-left: auto;
}
.ic165 {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  letter-spacing: 0.12em;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #e07075;
  background: #fff;
  padding: 7px 24px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(150, 60, 65, 0.18);
}
.ic166 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.ic167 {
  font-size: 15px;
  color: #fff0f0;
  max-width: 40em;
  margin: 0 auto 30px;
  line-height: 1.95;
}
.ic168 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.ic169 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #e07075;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(150, 70, 75, 0.2);
}
.ic170 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: 999px;
}
.ic171 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fce9ea, #f8dadd);
  color: #8c5872;
  padding-top: 46px;
  padding-bottom: 34px;
}
#site-footer-2026 > * {
  position: relative;
  z-index: 1;
}
#site-footer-2026 > .footer-floral-mark {
  position: absolute;
  z-index: 0;
  right: auto;
  bottom: -135px;
  left: -92px;
  width: 500px;
  max-width: none;
  height: auto;
  opacity: 0.18;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}
.ic172 {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
}
.ic173 {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.ic174 {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ed9296;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.footer-logo-link {
  display: inline-flex;
  text-decoration: none;
}
.footer-logo-img {
  height: 92px;
  width: auto;
  max-width: 370px;
  display: block;
  object-fit: contain;
}
.ic175 {
  font-size: 13px;
  line-height: 1.9;
}
.ic176 {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 28px 34px;
  flex: 1;
  min-width: 680px;
}
.ic177 {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13.5px;
}
.ic178 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  padding: 0 0 9px;
  border-bottom: 1px solid rgba(197, 111, 133, 0.28);
  color: #684052;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.04em;
}
.ic178::before {
  content: "";
  display: block;
  flex: 0 0 4px;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: #e27883;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.42);
}
.ic179 {
  position: relative;
  display: inline-block;
  width: max-content;
  color: #8c5872;
  text-decoration: none;
  line-height: 1.45;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}
.ic179::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: #d06c77;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.ic179:hover {
  color: #c65f6a;
  transform: translateX(3px);
}
.ic179:hover::after {
  transform: scaleX(1);
}
.ic180 {
  max-width: 1080px;
  margin: 28px auto 0;
  border-top: 1px solid #f4cdd2;
  padding-top: 18px;
  font-size: 12px;
  color: #b07e94;
}
.voices-page {
  overflow: hidden;
  background: #fff9f7;
  color: #553646;
}
.voices-container {
  width: min(1080px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}
.voices-section-label {
  margin: 0 0 14px;
  color: #d86d77;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.voices-intro {
  padding: 88px 0 64px;
  text-align: center;
}
.voices-intro h2 {
  margin: 0 0 22px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 900;
}
.voices-intro > p:last-child {
  max-width: 730px;
  margin: 0 auto;
  color: #80606f;
  font-size: 14px;
  line-height: 2;
}
.voices-cases {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-bottom: 90px;
}
.voice-case-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  border: 1px solid #f0dde1;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(113, 68, 85, 0.08);
}
.voice-case-card:nth-child(even) .voice-case-copy {
  order: 2;
}
.voice-case-card:nth-child(even) .voice-case-photos {
  order: 1;
}
.voice-case-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.voice-case-meta span {
  color: #d86d77;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.voice-case-meta b {
  padding: 5px 10px;
  border-radius: 999px;
  background: #e9f7f8;
  color: #438e97;
  font-size: 10px;
}
.voice-case-copy h2 {
  margin: 0 0 9px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.55;
}
.voice-case-profile {
  margin: 0 0 20px;
  color: #a58191;
  font-size: 12px;
  font-weight: 700;
}
.voice-case-story {
  margin: 0;
  color: #765665;
  font-size: 13px;
  line-height: 1.95;
}
.voice-case-copy blockquote {
  position: relative;
  margin: 25px 0 0;
  padding: 18px 18px 18px 43px;
  border: 0;
  border-radius: 14px;
  background: #fff2f2;
  color: #714456;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.75;
}
.voice-case-copy blockquote span {
  position: absolute;
  top: 7px;
  left: 15px;
  color: #e08089;
  font-family: serif;
  font-size: 34px;
  line-height: 1;
}
.voice-source-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #b85464;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
}
.voice-source-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #f6dde0;
  color: #b85464;
  transition: transform 0.2s ease;
}
.voice-source-link:hover span {
  transform: translateX(3px);
}
.voice-case-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.voice-case-photos figure {
  margin: 0;
  min-width: 0;
}
.voice-case-image {
  height: 270px;
  overflow: hidden;
  border-radius: 15px;
  background: #f2ecee;
}
.voice-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-case-photos figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 4px 0;
  color: #886775;
  font-size: 11px;
  font-weight: 700;
}
.voice-case-photos figcaption span {
  color: #d86d77;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.voice-case-image--show-upper img {
  object-position: center top;
}
.voices-letter {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
  align-items: center;
  margin-bottom: 72px;
  padding: 52px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ddf3f5, #f9e7e9);
}
.voices-letter-image {
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(64, 123, 131, 0.15);
}
.voices-letter-image img {
  display: block;
  width: 100%;
  height: auto;
}
.voices-letter-copy h2 {
  margin: 0 0 20px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 900;
}
.voices-letter-copy > p:not(.voices-section-label) {
  color: #715361;
  font-size: 14px;
  line-height: 2;
}
.voices-letter blockquote {
  margin: 22px 0 0;
  padding: 0;
  border: 0;
  color: #b85464;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.8;
}
.case-disclaimer {
  padding: 26px 30px;
  border: 1px solid #e8d9de;
  border-radius: 16px;
  background: #fff;
}
.case-disclaimer h2 {
  margin: 0 0 8px;
  color: #533b47;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
}
.case-disclaimer p {
  margin: 0;
  color: #826674;
  font-size: 11.5px;
  line-height: 1.85;
}
.voices-note {
  margin-bottom: 90px;
}
.skin-cases .skin-medical-note {
  margin: 25px 0 0;
}
@media (max-width: 800px) {
  .voices-intro {
    padding: 62px 0 45px;
  }
  .voices-intro h2 {
    font-size: 25px;
  }
  .voice-case-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px;
  }
  .voice-case-card:nth-child(even) .voice-case-copy,
  .voice-case-card:nth-child(even) .voice-case-photos {
    order: initial;
  }
  .voice-case-copy h2 {
    font-size: 21px;
  }
  .voice-case-image {
    height: auto;
    aspect-ratio: 1/1;
  }
  .voices-letter {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .voices-letter-copy h2 {
    font-size: 23px;
  }
}
@media (max-width: 480px) {
  .voices-container {
    width: min(100% - 28px, 1080px);
  }
  .voices-intro h2 {
    font-size: 22px;
  }
  .voices-cases {
    gap: 28px;
    padding-bottom: 60px;
  }
  .voice-case-card {
    padding: 21px 17px;
    border-radius: 20px;
  }
  .voice-case-photos {
    gap: 7px;
  }
  .voice-case-photos figcaption {
    display: block;
  }
  .voice-case-photos figcaption span {
    display: block;
    margin-bottom: 2px;
  }
  .voice-case-copy blockquote {
    font-size: 14px;
  }
  .voices-letter {
    margin-bottom: 50px;
    padding: 21px 17px;
  }
  .voices-note {
    margin-bottom: 60px;
  }
  .case-disclaimer {
    padding: 21px 18px;
  }
}
.ic181 {
  position: relative;
  background:
    radial-gradient(circle at 18% 22%, #9fe0e6 0%, transparent 42%),
    radial-gradient(circle at 82% 18%, #6bc9d2 0%, transparent 46%),
    radial-gradient(circle at 65% 80%, #8ad8df 0%, transparent 50%),
    radial-gradient(circle at 30% 75%, #7ccdd6 0%, transparent 48%),
    linear-gradient(135deg, #7ad0d8, #4db0bb);
}
.ic182 {
  font-size: 15.5px;
  line-height: 2;
  max-width: 40em;
  margin: 0 auto 38px;
  text-shadow: 0 1px 8px rgba(30, 95, 105, 0.3);
}
.ic183 {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  min-height: 260px;
  box-shadow: 0 16px 40px rgba(30, 95, 105, 0.22);
}
.treatment-case-stack {
  display: grid;
  gap: 18px;
}
.treatment-case-stack .treatment-case-image {
  height: 155px;
}
.treatment-before-after {
  display: flex;
  flex-direction: column;
  color: #305e64;
  text-decoration: none;
  padding: 18px;
  align-items: stretch;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.treatment-before-after:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(30, 95, 105, 0.28);
}
.treatment-case-heading {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: left;
}
.treatment-case-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  flex: 1;
}
.treatment-case-image {
  position: relative;
  display: block;
  height: 190px;
  overflow: hidden;
  border-radius: 14px;
  background: #ddedef;
}
.treatment-case-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.treatment-before-after:hover .treatment-case-image img {
  transform: scale(1.025);
}
.treatment-case-image b {
  position: absolute;
  right: 9px;
  bottom: 9px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(35, 73, 78, 0.84);
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.treatment-case-image:first-child b {
  background: rgba(170, 84, 92, 0.88);
}
.treatment-case-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #4db0bb;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.treatment-case-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 13px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.treatment-case-caption i {
  font-style: normal;
  font-size: 17px;
  color: #4db0bb;
}
.funryu-before-after {
  background: #fff;
  color: #88576c;
}
.funryu-before-after .treatment-case-arrow {
  background: #ed9296;
}
.funryu-before-after .treatment-case-caption i {
  color: #ed9296;
}
.ic184 {
  background: #fff;
  border-radius: 24px;
  padding: 34px 32px;
  box-shadow: 0 16px 40px rgba(30, 95, 105, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ic185 {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e2f3f5;
  color: #4db0bb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.ic186 {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fce9ea;
  color: #ed9296;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.ic187 {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef6df;
  color: #84be45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.ic188 {
  margin-top: 26px;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  background: #4db0bb;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
}

@media (max-width: 520px) {
  .treatment-before-after {
    padding: 14px;
  }
  .treatment-case-heading {
    font-size: 14px;
  }
  .treatment-case-images {
    grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr);
    gap: 5px;
  }
  .treatment-case-image {
    height: 148px;
    border-radius: 11px;
  }
  .treatment-case-arrow {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .treatment-case-image b {
    right: 6px;
    bottom: 6px;
    padding: 4px 7px;
    font-size: 10px;
  }
  .treatment-case-caption {
    font-size: 11.5px;
  }
}

/* ---- CONTENT UPDATE CLASSES ---- */
.hero-subtitle {
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 5px rgba(49, 112, 119, 0.5);
}
.hero-desc {
  font-size: 14px;
  color: #fff;
  max-width: 44em;
  margin: 14px auto 0;
  font-weight: 500;
  line-height: 1.95;
  text-shadow: 0 1px 5px rgba(49, 112, 119, 0.46);
}
.pillar-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  margin: 0 0 20px;
}
.flow-desc {
  font-size: 13px;
  color: #a06e86;
  line-height: 1.8;
  margin-top: 7px;
  text-align: left;
}
.case-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.case-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(180, 90, 95, 0.18);
}
.dept-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.dept-link:hover {
  background: rgba(255, 255, 255, 0.32);
}
.maps-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 9px 18px;
  background: #5fc2cc;
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.maps-btn:hover {
  background: #4aafba;
}
.news-section {
  background: #fff;
  border-bottom: 1.5px solid #edd8e0;
}
.news-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px 28px;
}
.news-inner > .section-kicker {
  display: flex;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.news-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.news-deco-l {
  color: #f0b8bb;
  font-weight: 300;
  font-size: 20px;
  transform: skewX(-12deg);
}
.news-deco-r {
  color: #f0b8bb;
  font-weight: 300;
  font-size: 20px;
  transform: skewX(12deg);
}
.news-h {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #4e2a3c;
  letter-spacing: 0.06em;
}
.news-list {
  list-style: none;
}
.news-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #edd8e0;
}
.news-item:first-child {
  border-top: 1px solid #edd8e0;
}
.news-date {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid #e1848c;
  color: #8f6075;
  font-size: 11.5px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.news-new {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  background: #ed9296;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.news-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex: 1;
  color: #4e2a3c;
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.15s;
}
.news-title span {
  flex-shrink: 0;
  color: #d96870;
  font-size: 12px;
  transition: transform 0.15s;
}
.news-title:hover {
  color: #d15f69;
}
.news-title:hover span {
  transform: translateX(3px);
}
.news-archive-link-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.news-archive-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 23px;
  border: 1px solid #e7c9d1;
  border-radius: 999px;
  background: #fff;
  color: #8c5872;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(142, 72, 94, 0.06);
  transition:
    border-color 0.15s,
    color 0.15s,
    transform 0.15s;
}
.news-archive-link span {
  color: #d96870;
}
.news-archive-link:hover {
  border-color: #ed9296;
  color: #d15f69;
  transform: translateY(-1px);
}
.news-archive-page {
  font-family: "Noto Sans JP", sans-serif;
  color: #4e2a3c;
  background: #fff;
}
.news-archive-container {
  width: min(900px, 100%);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.news-archive-hero {
  padding: 55px 0 48px;
  background: linear-gradient(145deg, #fff4f5, #fffdfc 65%, #f3fafa);
  border-bottom: 1px solid #f0dce2;
  text-align: center;
}
.news-archive-hero p {
  margin: 0 0 8px;
  color: #d56770;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.news-archive-hero h1 {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
}
.news-archive-hero div {
  margin-top: 12px;
  color: #806171;
  font-size: 13.5px;
  line-height: 1.8;
}
.news-archive-section {
  padding: 58px 0 72px;
}
.news-archive-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #e9dce1;
  list-style: none;
}
.news-archive-list li {
  margin: 0;
  border-bottom: 1px solid #e9dce1;
}
.news-archive-list li > a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 15px 7px;
  color: #4e2a3c;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s,
    padding 0.15s;
}
.news-archive-list li > a:hover {
  padding-left: 13px;
  padding-right: 13px;
  background: #fff8f6;
  color: #cf5f69;
}
.news-archive-date {
  flex: 0 0 88px;
  color: #9b7888;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.news-archive-list strong {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}
.news-archive-arrow {
  flex-shrink: 0;
  color: #d96870;
  font-size: 12px;
  transition: transform 0.15s;
}
.news-archive-list a:hover .news-archive-arrow {
  transform: translateX(3px);
}
.news-archive-pagination {
  margin-top: 38px;
}
.news-archive-empty {
  padding: 35px;
  border: 1px solid #e9dce1;
  border-radius: 13px;
  background: #fffdfc;
  text-align: center;
  color: #806171;
  font-size: 14px;
}
@media (max-width: 600px) {
  .news-archive-container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .news-archive-hero {
    padding: 42px 0 38px;
  }
  .news-archive-hero h1 {
    font-size: 25px;
  }
  .news-archive-section {
    padding: 42px 0 55px;
  }
  .news-archive-list li > a {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px 9px;
    padding: 15px 4px;
  }
  .news-archive-date {
    flex-basis: auto;
  }
  .news-archive-list strong {
    flex-basis: calc(100% - 28px);
    order: 3;
    font-size: 13.5px;
  }
  .news-archive-arrow {
    order: 4;
    margin-left: auto;
    margin-top: 4px;
  }
}
.hiro-breadcrumb {
  font-family: "Noto Sans JP", sans-serif;
  background: linear-gradient(90deg, #fff8f6, #fff0f1);
  border-bottom: 1px solid #f4dce5;
  padding: 18px 28px 13px;
  color: #8c5872;
}
.hiro-breadcrumb-list {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.hiro-breadcrumb-list::-webkit-scrollbar {
  display: none;
}
.hiro-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.5;
  flex-shrink: 0;
}
.hiro-breadcrumb-item:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #d89aa9;
  border-right: 1.5px solid #d89aa9;
  transform: rotate(45deg);
  opacity: 0.9;
}
.hiro-breadcrumb-link {
  display: inline-flex;
  align-items: center;
  color: #8c5872;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #f4dce5;
  border-radius: 999px;
  padding: 6px 12px;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s;
}
.hiro-breadcrumb-link:hover {
  background: #fff;
  color: #d85f67;
  transform: translateY(-1px);
}
.hiro-breadcrumb-current {
  display: inline-flex;
  align-items: center;
  color: #4e2a3c;
  font-weight: 700;
  background: #fff;
  border: 1px solid #f1cdd6;
  border-radius: 999px;
  padding: 6px 13px;
  box-shadow: 0 6px 16px rgba(180, 90, 95, 0.08);
}
@media (max-width: 900px) {
  .flow-desc {
    font-size: 12px;
  }
  .news-inner {
    padding: 32px 18px;
  }
  .news-item {
    flex-wrap: wrap;
    gap: 6px 10px;
  }
  .news-title {
    flex-basis: 100%;
    padding-left: 0;
  }
  .hiro-breadcrumb {
    padding: 14px 18px 10px;
  }
  .hiro-breadcrumb-item {
    font-size: 12px;
  }
  .hiro-breadcrumb-link,
  .hiro-breadcrumb-current {
    padding: 5px 10px;
  }
}

/* ---- FAQ accordion state (vanilla JS toggles .open) ---- */
.ic157.open .ic162 {
  padding-bottom: 22px;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition:
    max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease 0.08s,
    transform 0.32s ease 0.05s,
    visibility 0s;
}
.ic157.open .ic161::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
@media (prefers-reduced-motion: reduce) {
  .ic161,
  .ic161::before,
  .ic161::after,
  .ic162,
  .ic157.open .ic162 {
    transition: none !important;
    transform: none !important;
  }
}

/* ---- Fixed page: rehabilitation ---- */
.subpage {
  font-family: "Noto Sans JP", sans-serif;
  color: #4e2a3c;
  background: #fff8f6;
  line-height: 1.85;
}
.subpage-hero {
  position: relative;
  min-height: 280px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(78, 42, 60, 0.42),
    rgba(237, 146, 150, 0.22)
  );
  z-index: -1;
}
.subpage-hero-inner {
  width: min(1080px, 100%);
  padding: 58px 28px;
  text-align: center;
}
.subpage-title {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 3px 18px rgba(60, 25, 35, 0.32);
  letter-spacing: 0.06em;
}
.subpage-container {
  max-width: 1040px;
  margin: 0 auto;
}
.subpage-intro {
  background: #fff8f6;
}
.section-title-2026 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
  text-align: center;
}
.section-title-2026 h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.45;
  color: #4e2a3c;
}
.section-title-mark {
  color: #f0b8bb;
  font-size: 22px;
  font-weight: 300;
}
.section-title-mark-left {
  transform: skewX(-12deg);
}
.section-title-mark-right {
  transform: skewX(12deg);
}
.rihabiri-lead-figure {
  max-width: 780px;
  margin: 0 auto 28px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 42px rgba(180, 90, 95, 0.12);
}
.rihabiri-lead-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.rihabiri-lead-text {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15.5px;
  color: #7a4a5e;
  line-height: 2.05;
}
.rihabiri-equipment {
  background: linear-gradient(160deg, #fff0f1, #fff8f6 58%, #f5fbf9);
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.equipment-card {
  background: #fff;
  border: 1px solid #f4dce5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(180, 90, 95, 0.09);
}
.equipment-image {
  aspect-ratio: 16/10;
  background: #fce9ea;
  overflow: hidden;
}
.equipment-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.equipment-body {
  padding: 22px 24px 24px;
}
.equipment-body h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  color: #4e2a3c;
  margin-bottom: 10px;
}
.equipment-body p {
  font-size: 13.5px;
  color: #7a4a5e;
  line-height: 1.9;
}
.legacy-fixed-content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #f4dce5;
  border-radius: 18px;
  padding: 34px 38px;
  box-shadow: 0 12px 32px rgba(180, 90, 95, 0.08);
  font-size: 15px;
  color: #6e4a5a;
  line-height: 2;
}
.legacy-fixed-content .tcd-pb-row {
  margin-bottom: 34px;
}
.legacy-fixed-content .tcd-pb-row:last-child {
  margin-bottom: 0;
}
.legacy-fixed-content .tcd-pb-widget {
  margin-bottom: 28px;
}
.legacy-fixed-content .tcd-pb-widget:last-child {
  margin-bottom: 0;
}
.legacy-fixed-content h2,
.legacy-fixed-content h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1.5;
  color: #4e2a3c;
}
.legacy-fixed-content h2 {
  font-size: 24px;
  margin: 34px 0 18px;
  padding: 14px 18px;
  border-left: 5px solid #5fc2cc;
  background: #eaf8f9;
  border-radius: 10px;
}
.legacy-fixed-content h3 {
  font-size: 20px;
  margin: 30px 0 14px;
  padding-bottom: 9px;
  border-bottom: 2px solid #f4dce5;
}
.legacy-fixed-content h3:first-child {
  margin-top: 0;
}
.legacy-fixed-content p {
  margin: 0 0 18px;
}
.legacy-fixed-content a {
  color: #1b9dad;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legacy-fixed-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.legacy-fixed-content ol,
.legacy-fixed-content ul {
  margin: 0 0 24px 1.4em;
  padding: 0;
}
.legacy-fixed-content li {
  margin: 0 0 14px;
}
.legacy-fixed-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 28px;
  font-size: 14px;
}
.legacy-fixed-content th,
.legacy-fixed-content td {
  border: 1px solid #f0d7de;
  padding: 11px 13px;
  vertical-align: top;
}
.legacy-fixed-content th {
  background: #fff0f1;
  color: #4e2a3c;
  font-weight: 700;
  text-align: left;
}
.legacy-fixed-content td {
  background: #fff;
  color: #6e4a5a;
}
.legacy-fixed-content .red {
  color: #d85f67;
  font-weight: 700;
}
.legacy-fixed-content .pink-block,
.legacy-fixed-content .pink_box,
.legacy-fixed-content .box-pink {
  background: #fff0f1;
  border: 1px solid #f4cdd2;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 22px 0;
}
.legacy-fixed-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.legacy-fixed-content .alignright {
  float: right;
  margin: 0 0 18px 24px;
}
.legacy-fixed-content .alignleft {
  float: left;
  margin: 0 24px 18px 0;
}
.legacy-fixed-content::after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 900px) {
  .subpage-hero {
    min-height: 210px;
  }
  .subpage-hero-inner {
    padding: 44px 18px;
  }
  .subpage-title {
    font-size: 30px;
  }
  .section-title-2026 {
    margin-bottom: 26px;
  }
  .section-title-2026 h2 {
    font-size: 25px;
  }
  .rihabiri-lead-text {
    font-size: 14.5px;
    line-height: 1.95;
  }
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .equipment-body {
    padding: 19px 20px 22px;
  }
  .legacy-fixed-content {
    padding: 24px 20px;
    font-size: 14px;
    line-height: 1.9;
  }
  .legacy-fixed-content h2 {
    font-size: 21px;
  }
  .legacy-fixed-content h3 {
    font-size: 18px;
  }
  .legacy-fixed-content table {
    font-size: 13px;
  }
  .legacy-fixed-content th,
  .legacy-fixed-content td {
    padding: 9px 10px;
  }
  .legacy-fixed-content .alignright,
  .legacy-fixed-content .alignleft {
    float: none;
    display: block;
    margin: 0 auto 18px;
  }
}

/* ---- Fixed page: funryu / atheroma ---- */
.funryu-detail-page {
  max-width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #5c3447;
  background: #fff;
  line-height: 2;
  overflow-x: clip;
}
.funryu-detail-page,
.funryu-detail-page * {
  box-sizing: border-box;
}
.funryu-detail-page p {
  font-size: 15px;
  line-height: 2;
  margin: 0 0 17px;
  color: #5c3447;
  overflow-wrap: anywhere;
}
.funryu-hero {
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(252, 233, 234, 0.9) 0%,
      rgba(252, 233, 234, 0) 54%
    ),
    linear-gradient(155deg, #f9e4e5, #f0d4d6 52%, #e8d8dc);
  padding: 58px 28px 54px;
  text-align: center;
}
.funryu-page-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #ed9296;
  letter-spacing: 0.1em;
  background: #fff;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.funryu-page-h1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: #4e2a3c;
  line-height: 1.45;
  margin: 0 0 14px;
  letter-spacing: 0.03em;
}
.funryu-page-lead {
  font-size: 15px;
  color: #7a4a5e;
  line-height: 2;
  max-width: 48em;
  margin: 0 auto !important;
}
.funryu-section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 66px 28px;
}
.funryu-band {
  background: linear-gradient(160deg, #fff4f5, #fff8f6 56%, #f5fbf9);
}
.funryu-detail-page .funryu-h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #4e2a3c;
  line-height: 1.5;
  margin: 0 0 20px;
  padding-bottom: 11px;
  border-bottom: 3px solid #ed9296;
  letter-spacing: 0.03em;
  overflow-wrap: anywhere;
}
.funryu-section-kicker {
  display: block;
  margin-bottom: 9px;
  color: #d26e77;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.funryu-policy-lead {
  color: #563346 !important;
  font-size: 16.5px !important;
  font-weight: 600;
  line-height: 2 !important;
}
.funryu-policy-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}
.funryu-policy-principles > div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 13px;
  align-items: center;
  padding: 19px 18px;
  border: 1px solid #f1d6db;
  border-radius: 16px;
  background: #fff8f8;
  box-shadow: 0 8px 22px rgba(180, 90, 95, 0.06);
}
.funryu-policy-principles span {
  grid-row: 1/3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ed9296;
  color: #fff;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.funryu-policy-principles strong {
  color: #5b3547;
  font-size: 14px;
  line-height: 1.5;
}
.funryu-policy-principles small {
  margin-top: 2px;
  color: #997180;
  font-size: 10.5px;
  line-height: 1.55;
}
.funryu-basics-box {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 32px;
  padding: 28px 30px;
  border: 1px solid #f1d5da;
  border-radius: 20px;
  background: #fff3f4;
  color: #5b3547;
  box-shadow: 0 12px 30px rgba(180, 90, 95, 0.08);
}
.funryu-basics-box > div > span {
  display: block;
  margin-bottom: 7px;
  color: #c96872;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.funryu-basics-box h3 {
  margin: 0;
  color: #5b3547;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.6;
}
.funryu-basics-box p {
  margin: 0;
  color: #765263;
  font-size: 12.5px;
  line-height: 1.9;
}
.funryu-section-lead {
  max-width: 760px;
  margin-bottom: 24px !important;
}
.funryu-h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 19px;
  color: #4e2a3c;
  line-height: 1.55;
  margin: 30px 0 10px;
}
.funryu-note-box {
  background: #fce9ea;
  border: 1px solid #f6cfd3;
  border-radius: 16px;
  padding: 24px 28px;
  margin: 24px 0;
}
.funryu-note-box-teal {
  background: #e8f7f8;
  border-color: #cbedef;
}
.funryu-note-box h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.55;
  color: #4e2a3c;
  margin: 0 0 10px;
}
.funryu-note-box p {
  font-size: 14px;
  color: #7a4a5e;
  margin: 0;
}
.funryu-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 26px 0;
}
.funryu-feature-card {
  position: relative;
  background: #fff;
  border: 1px solid #f4dce5;
  border-radius: 16px;
  padding: 26px 24px 24px;
  box-shadow: 0 8px 24px rgba(180, 90, 95, 0.08);
  overflow: hidden;
}
.funryu-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: #ed9296;
}
.funryu-feature-card-teal::before {
  background: #5fc2cc;
}
.funryu-feature-card-green::before {
  background: #84be45;
}
.funryu-feature-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff0f1;
  color: #ed9296;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}
.funryu-feature-card-teal .funryu-feature-kicker {
  background: #e2f3f5;
  color: #4db0bb;
}
.funryu-feature-card-green .funryu-feature-kicker {
  background: #eff8e8;
  color: #72a936;
}
.funryu-feature-card h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.55;
  color: #4e2a3c;
  margin: 0 0 9px;
}
.funryu-feature-card p {
  font-size: 13.5px;
  color: #7a4a5e;
  line-height: 1.9;
  margin: 0;
}
.funryu-treatment-message {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 30px;
  align-items: center;
  margin-top: 24px;
  padding: 27px 30px;
  border: 1px solid #edc9cf;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(180, 90, 95, 0.08);
}
.funryu-treatment-message span {
  display: block;
  margin-bottom: 7px;
  color: #d46771;
  font-size: 10px;
  font-weight: 900;
}
.funryu-treatment-message h3 {
  margin: 0;
  color: #5a3446;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.65;
}
.funryu-treatment-message p {
  margin: 0;
  padding-left: 26px;
  border-left: 1px solid #ebcfd4;
  color: #815d6e;
  font-size: 12.5px;
  line-height: 1.9;
}
.funryu-records {
  background: #b85f69;
  color: #fff;
}
.funryu-records .funryu-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 38px;
  padding-bottom: 30px;
}
.funryu-records .funryu-section > div {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.funryu-records .funryu-section > div:last-child {
  border-right: 0;
}
.funryu-records strong {
  display: block;
  color: #fff;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 32px;
  line-height: 1.2;
}
.funryu-records strong small {
  margin-left: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
}
.funryu-records span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 700;
}
.funryu-records > p {
  margin: 0;
  padding: 0 18px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9.5px;
  text-align: center;
}
.funryu-flow-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}
.funryu-flow-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #f4dce5;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 4px 14px rgba(180, 90, 95, 0.06);
}
.funryu-flow-item > span {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fce9ea;
  color: #ed9296;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.funryu-flow-item:nth-child(even) > span {
  background: #e2f3f5;
  color: #4db0bb;
}
.funryu-flow-item h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15.5px;
  font-weight: 900;
  color: #4e2a3c;
  line-height: 1.55;
  margin: 0 0 4px;
}
.funryu-flow-item p {
  font-size: 13.5px;
  color: #8c5872;
  line-height: 1.85;
  margin: 0;
}
.funryu-cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 18px 0 10px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(75, 176, 187, 0.08);
}
.funryu-cost-table th {
  background: #5fc2cc;
  color: #fff;
  padding: 12px 15px;
  text-align: left;
  font-weight: 700;
}
.funryu-cost-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #f4dce5;
  color: #5c3447;
}
.funryu-cost-table tr:last-child td {
  border-bottom: 0;
}
.funryu-small-note {
  font-size: 12.5px !important;
  color: #a06e86 !important;
  line-height: 1.8 !important;
  margin: 10px 0 0 !important;
}
.funryu-case-heading {
  margin-bottom: 28px;
  text-align: left;
}
.funryu-case-heading > span {
  display: block;
  color: #c86873;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.funryu-case-heading .funryu-h2 {
  margin-top: 5px;
}
.funryu-case-heading > p {
  max-width: 700px;
  margin: 13px 0 0;
}
.funryu-case-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.funryu-case-card {
  display: block;
  padding: 34px;
  border: 1px solid #eadde0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(87, 55, 69, 0.065);
}
.funryu-case-body {
  min-width: 0;
  margin-bottom: 27px;
}
.funryu-case-number {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c86873;
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.14em;
}
.funryu-case-number span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #f9e5e7;
  letter-spacing: 0;
}
.funryu-case-body h3 {
  margin: 12px 0 12px;
  color: #4e2a3c;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.55;
}
.funryu-case-body p {
  margin: 0;
  color: #745764;
  font-size: 13px;
  line-height: 1.9;
}
.funryu-case-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}
.funryu-case-gallery figure {
  min-width: 0;
  margin: 0;
}
.funryu-case-gallery figure > div {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #e9eeee;
  aspect-ratio: 4/3;
}
.funryu-case-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.funryu-case-gallery b {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(60, 89, 92, 0.82);
  color: #fff;
  font-size: 8px;
  line-height: 1.6;
}
.funryu-case-gallery figure:first-child b {
  background: rgba(172, 78, 90, 0.85);
}
.funryu-case-gallery figcaption {
  padding-top: 6px;
  color: #896b78;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.funryu-case-source {
  margin-top: 20px;
}
.funryu-case-note {
  margin-top: 25px;
}
.funryu-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 30px;
}
.funryu-blog-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #f4dce5;
  border-radius: 12px;
  padding: 14px 16px;
  color: #4e2a3c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition:
    border-color 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
}
.funryu-blog-grid a::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #ed9296;
  border-right: 2px solid #ed9296;
  transform: rotate(45deg);
}
.funryu-blog-grid a:hover {
  border-color: #ed9296;
  box-shadow: 0 6px 16px rgba(180, 90, 95, 0.12);
  transform: translateY(-1px);
}
.funryu-center {
  text-align: center;
}
.funryu-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ed9296;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  border-radius: 999px;
  padding: 14px 28px;
  box-shadow: 0 10px 24px rgba(180, 90, 95, 0.18);
}
.funryu-primary-link:hover {
  background: #e47a80;
}
@media (max-width: 900px) {
  .funryu-hero {
    padding: 44px 18px 42px;
  }
  .funryu-page-h1 {
    font-size: 25px;
  }
  .funryu-page-lead {
    font-size: 14px;
  }
  .funryu-section {
    width: calc(100vw - 36px);
    max-width: 864px;
    padding: 46px 0;
  }
  .funryu-detail-page .funryu-h2 {
    font-size: 23px;
  }
  .funryu-policy-principles {
    grid-template-columns: 1fr;
  }
  .funryu-basics-box {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .funryu-treatment-message {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .funryu-treatment-message p {
    padding: 16px 0 0;
    border-top: 1px solid #ebcfd4;
    border-left: 0;
  }
  .funryu-feature-grid,
  .funryu-blog-grid {
    grid-template-columns: 1fr;
  }
  .funryu-note-box {
    padding: 21px 20px;
  }
  .funryu-flow-item {
    padding: 16px 17px;
    gap: 13px;
  }
  .funryu-flow-item > span {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
  .funryu-cost-table {
    font-size: 13px;
  }
  .funryu-cost-table th,
  .funryu-cost-table td {
    padding: 10px 11px;
  }
  .funryu-case-card {
    padding: 27px;
  }
  .funryu-case-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }
}

@media (max-width: 520px) {
  .funryu-page-h1 {
    font-size: 22px;
  }
  .funryu-detail-page .unified-page-hero-inner {
    width: calc(100vw - 36px);
  }
  .funryu-section {
    width: calc(100vw - 36px);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  .funryu-detail-page h1,
  .funryu-detail-page h2,
  .funryu-detail-page h3,
  .funryu-detail-page p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .funryu-detail-page p {
    font-size: 14px;
  }
  .funryu-policy-lead {
    font-size: 15px !important;
  }
  .funryu-policy-principles > div {
    padding: 17px 15px;
  }
  .funryu-basics-box {
    padding: 23px 21px;
  }
  .funryu-records .funryu-section {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .funryu-records .funryu-section > div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  .funryu-records .funryu-section > div:last-child {
    border-bottom: 0;
  }
  .funryu-records strong {
    font-size: 28px;
  }
  .funryu-case-heading {
    text-align: left;
  }
  .funryu-case-card {
    padding: 22px 17px;
  }
  .funryu-case-body {
    margin-bottom: 22px;
  }
  .funryu-case-body h3 {
    font-size: 18px;
  }
  .funryu-case-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 8px;
  }
  .funryu-case-gallery figcaption {
    font-size: 10px;
  }
  .funryu-cost-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ---- Fixed page: Natsui-style moist wound healing ---- */
.natsui-detail-page {
  max-width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #3e5153;
  background: #fff;
  line-height: 1.95;
  overflow-x: clip;
}
.natsui-detail-page * {
  box-sizing: border-box;
}
.natsui-detail-page p {
  margin: 0;
  color: #52676a;
  font-size: 14.5px;
  line-height: 2;
  overflow-wrap: anywhere;
}
.natsui-container {
  width: min(1020px, 100%);
  margin: 0 auto;
  padding: 72px 28px;
}
.natsui-hero {
  min-height: 340px;
}
.detail-anchor-nav {
  position: sticky;
  top: 122px;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 20px;
  border-bottom: 1px solid #dcedee;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(44, 100, 106, 0.08);
  backdrop-filter: blur(10px);
}
.detail-anchor-nav a {
  padding: 16px 19px;
  color: #507176;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    color 0.15s,
    background 0.15s;
}
.detail-anchor-nav a:hover {
  color: #268d99;
  background: #f0fafa;
}
.funryu-detail-page [id],
.natsui-detail-page [id],
.skin-detail-page [id] {
  scroll-margin-top: 190px;
}
.natsui-kicker {
  display: block;
  margin-bottom: 10px;
  color: #3e9ca6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.funryu-detail-page .funryu-h2,
.natsui-detail-page .natsui-h2 {
  margin: 0 0 22px;
  padding-bottom: 11px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.funryu-detail-page .funryu-h2 {
  border-bottom: 3px solid #ed9296;
  color: #4e2a3c;
}
.natsui-detail-page .natsui-h2 {
  border-bottom: 3px solid #4bb0bb;
  color: #304b4f;
}
.natsui-lead {
  margin-bottom: 18px !important;
  color: #3f5a5d !important;
  font-size: 16px !important;
  font-weight: 500;
}
/* Shared inline emphasis used when copy is requested to be "marked". */
.text-marker {
  padding: 0 0.08em 0.06em;
  background: linear-gradient(transparent 58%, rgba(255, 230, 0, 0.58) 58%);
  color: inherit;
  font-weight: 800;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.natsui-detail-page .text-marker {
  color: #28666d;
}
.natsui-section-lead {
  max-width: 780px;
  margin: 0 0 30px !important;
}
.natsui-band {
  background: #f2f9f9;
}
.natsui-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 58px;
  align-items: center;
}
.natsui-intro-grid > * {
  min-width: 0;
}
.natsui-principles {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid #d2e9eb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(44, 100, 106, 0.1);
}
.natsui-principles > div {
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr;
  column-gap: 13px;
  align-items: center;
  padding: 17px 15px;
  border-radius: 15px;
  background: #f4fafa;
}
.natsui-principles span {
  grid-row: 1/3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #43a7b2;
  color: #fff;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.natsui-principles strong {
  color: #31565a;
  font-size: 15px;
  line-height: 1.5;
}
.natsui-principles small {
  color: #779093;
  font-size: 11px;
  line-height: 1.55;
}
.natsui-target-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}
.natsui-target-grid section {
  padding: 24px 22px 22px;
  border: 1px solid #d7e9ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(44, 100, 106, 0.055);
}
.natsui-target-grid section > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 13px;
  background: #e1f3f4;
  color: #348f99;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.natsui-target-grid h3 {
  margin: 0 0 8px;
  color: #31565a;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}
.natsui-target-grid p {
  font-size: 12.5px;
  line-height: 1.85;
}
.natsui-first-aid {
  display: grid;
  grid-template-columns: 280px 1fr;
  margin-top: 70px;
  margin-bottom: 70px;
  padding: 0 28px;
  border: 1px solid #f0d4d8;
  border-radius: 22px;
  background: #fff8f7;
  overflow: hidden;
}
.natsui-first-aid-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -28px;
  padding: 28px 30px;
  background: #e98a91;
  color: #fff;
}
.natsui-first-aid-head span {
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.natsui-first-aid-head h2 {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.55;
}
.natsui-first-aid-body {
  padding: 27px 0 27px 30px;
}
.natsui-first-aid-body p {
  font-size: 13.5px;
}
.natsui-caution {
  margin-top: 10px !important;
  color: #93636a !important;
  font-size: 11.5px !important;
  line-height: 1.75 !important;
}
.natsui-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.natsui-flow section {
  display: flex;
  gap: 16px;
  padding: 23px;
  border: 1px solid #d7e9ea;
  border-radius: 18px;
  background: #fff;
}
.natsui-flow section > span {
  display: flex;
  flex: 0 0 43px;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #43a7b2;
  color: #fff;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.natsui-flow h3 {
  margin: 1px 0 6px;
  color: #31565a;
  font-size: 15.5px;
  font-weight: 900;
  line-height: 1.5;
}
.natsui-flow p {
  font-size: 12.5px;
  line-height: 1.85;
}
.natsui-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.natsui-policy-grid > div {
  padding: 18px 19px;
  border-radius: 14px;
  background: #dff1f2;
}
.natsui-policy-grid strong {
  display: block;
  margin-bottom: 5px;
  color: #287c85;
  font-size: 13px;
}
.natsui-policy-grid p {
  font-size: 11.5px;
  line-height: 1.75;
}
.natsui-cases {
  width: min(1100px, 100%);
  background: #f2f9f9;
  box-shadow: 0 0 0 100vmax #f2f9f9;
  clip-path: inset(0 -100vmax);
}
.natsui-photo-notice {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 26px 0 !important;
  padding: 14px 18px;
  border-radius: 12px;
  background: #fff4ee;
  color: #765d54 !important;
}
.natsui-photo-notice strong {
  flex-shrink: 0;
  color: #b66d52;
  font-size: 12px;
}
.natsui-photo-notice span {
  font-size: 11.5px;
  line-height: 1.7;
}
.natsui-case-list {
  display: grid;
  gap: 28px;
}
.natsui-case-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid #cfe3e5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(44, 100, 106, 0.13);
  overflow: hidden;
}
.natsui-case-copy {
  padding: 28px;
  background: #fff;
}
.natsui-case-copy > span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ddeff0;
  color: #2e858e;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.natsui-case-copy h3 {
  margin: 0 0 11px;
  color: #304f53;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}
.natsui-case-copy p {
  font-size: 12.5px;
  line-height: 1.9;
}
.natsui-case-period {
  display: block;
  margin-top: 15px;
  color: #d1767e;
  font-size: 11px;
}
.natsui-case-copy a {
  display: inline-flex;
  margin-top: 17px;
  color: #258995;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 800;
}
.natsui-case-copy a::after {
  content: "→";
  margin-left: 7px;
}
.natsui-case-copy h3 .article-source-title-link {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  text-decoration: none;
}
.natsui-case-copy h3 .article-source-title-link::after {
  content: none;
  margin: 0;
}
.natsui-case-gallery {
  display: grid;
  align-items: stretch;
  gap: 1px;
  background: #ddebed;
}
.natsui-case-gallery-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.natsui-case-gallery-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.natsui-case-gallery figure {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: #fff;
}
.natsui-case-gallery figure > div {
  flex: 1;
  min-height: 210px;
  overflow: hidden;
  background: #e8f2f3;
}
.natsui-case-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}
.natsui-case-gallery-2 img {
  object-position: center top;
}
.natsui-case-gallery figcaption {
  padding: 9px 12px;
  background: #fff;
  color: #557175;
  font-size: 10.5px;
  font-weight: 700;
  text-align: center;
}
.natsui-archive {
  background: #305e64;
  color: #fff;
}
.natsui-archive .natsui-kicker {
  color: #8ed7de;
}
.natsui-detail-page .natsui-archive .natsui-h2,
.funryu-detail-page .natsui-archive .natsui-h2 {
  margin-bottom: 0;
  border-bottom-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}
.natsui-archive .natsui-section-lead {
  color: rgba(255, 255, 255, 0.78);
}
.specialty-case-archive-pink {
  background: linear-gradient(145deg, #fff8f8 0%, #fcebed 56%, #fff4f5 100%);
  color: #573945;
}
.specialty-case-archive-pink .funryu-h2 {
  border-bottom-color: #ed9296;
  color: #4e2a3c;
}
.specialty-case-archive-pink .natsui-section-lead {
  color: #765e67;
}
.funryu-archive-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 9px;
}
.funryu-archive-meta .funryu-section-kicker {
  margin-bottom: 0;
}
.funryu-archive-meta > strong {
  flex-shrink: 0;
  color: #9a6974;
  font-size: 11px;
  font-weight: 700;
}
.funryu-archive-meta > strong span {
  margin-right: 4px;
  color: #b85f69;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 31px;
}
.specialty-case-archive-pink .natsui-search-grid a {
  border-color: #eecfd5;
  background: rgba(255, 255, 255, 0.78);
  color: #704852;
  box-shadow: 0 7px 18px rgba(126, 64, 76, 0.055);
}
.specialty-case-archive-pink .natsui-search-grid a:hover {
  background: #fff;
  box-shadow: 0 10px 24px rgba(126, 64, 76, 0.1);
}
.specialty-case-archive-pink .natsui-search-grid span {
  color: #8b6a73;
}
.specialty-case-archive-pink .natsui-search-grid i {
  color: #c45f69;
}
.specialty-case-archive-pink .natsui-latest {
  border-top-color: #e8c9ce;
}
.specialty-case-archive-pink .natsui-latest > h3 {
  color: #704852;
}
.specialty-case-archive-pink .natsui-primary-link {
  background: #d9757e;
  color: #fff;
  box-shadow: 0 9px 24px rgba(171, 75, 88, 0.18);
}
.specialty-case-archive-pink .natsui-primary-link:hover {
  background: #c96570;
}
@media (max-width: 650px) {
  .funryu-archive-meta {
    display: block;
  }
  .funryu-archive-meta > strong {
    display: block;
    margin-top: 7px;
  }
  .funryu-archive-meta > strong span {
    font-size: 26px;
  }
}
.specialty-case-archive-green {
  background: linear-gradient(145deg, #f7fcfc 0%, #e7f5f6 56%, #f1fafa 100%);
  color: #304f53;
}
.natsui-detail-page .specialty-case-archive-green .natsui-h2 {
  border-bottom-color: #4bb0bb;
  color: #304b4f;
}
.specialty-case-archive-green .natsui-section-lead {
  color: #587074;
}
.natsui-archive-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 10px;
}
.natsui-archive-meta .natsui-kicker {
  margin-bottom: 0;
}
.natsui-archive-meta > strong {
  flex-shrink: 0;
  color: #5c7e82;
  font-size: 11px;
  font-weight: 700;
}
.natsui-archive-meta > strong span {
  margin-right: 4px;
  color: #368f99;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 31px;
}
.specialty-case-archive-green .natsui-search-grid a {
  border-color: #cbe5e7;
  background: rgba(255, 255, 255, 0.82);
  color: #315b60;
  box-shadow: 0 7px 18px rgba(49, 105, 112, 0.055);
}
.specialty-case-archive-green .natsui-search-grid a:hover {
  background: #fff;
  box-shadow: 0 10px 24px rgba(49, 105, 112, 0.11);
}
.specialty-case-archive-green .natsui-search-grid span {
  color: #668085;
}
.specialty-case-archive-green .natsui-search-grid i {
  color: #3b9da7;
}
.specialty-case-archive-green .natsui-latest {
  border-top-color: #c9e2e4;
}
.specialty-case-archive-green .natsui-latest > h3 {
  color: #315b60;
}
.specialty-case-archive-green .natsui-primary-link {
  background: #4aa8b2;
  color: #fff;
  box-shadow: 0 9px 24px rgba(46, 132, 141, 0.18);
}
.specialty-case-archive-green .natsui-primary-link:hover {
  background: #398f99;
}
.natsui-archive-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 20px;
}
.natsui-archive-heading > strong {
  flex-shrink: 0;
  color: #c5e9ec;
  font-size: 11px;
  font-weight: 700;
}
.natsui-archive-heading > strong span {
  margin-right: 4px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 31px;
}
.natsui-search-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.natsui-search-grid a {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px 42px 18px 19px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.15s;
}
.natsui-search-grid a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.natsui-search-grid strong {
  font-size: 13px;
}
.natsui-search-grid span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10.5px;
}
.natsui-search-grid i {
  position: absolute;
  right: 17px;
  top: 50%;
  font-style: normal;
  transform: translateY(-50%);
}
.natsui-latest {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.natsui-latest > h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 14px;
}
.natsui-latest-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.natsui-latest-list a {
  display: grid;
  grid-template-columns: 92px 1fr 20px;
  gap: 14px;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
}
.natsui-latest-list time {
  color: #9fd4d8;
  font-size: 10.5px;
}
.natsui-latest-list strong {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.65;
}
.natsui-latest-list span {
  color: #8ed7de;
}
.funryu-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.funryu-latest-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: #fff;
  color: #573945 !important;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(71, 34, 43, 0.14);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.funryu-latest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 34px rgba(71, 34, 43, 0.2);
}
.funryu-latest-card figure {
  display: flex;
  height: auto;
  margin: 0;
  aspect-ratio: 4/3;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, #fce9ea, #fff7f7);
  color: #b85f69;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.12em;
}
.funryu-latest-card figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.funryu-latest-card > div {
  display: flex;
  min-height: 165px;
  padding: 18px 17px 17px;
  flex-direction: column;
}
.funryu-latest-card time {
  color: #b16a75;
  font-size: 10px;
  font-weight: 700;
}
.funryu-latest-card strong {
  display: block;
  margin-top: 7px;
  color: #573945;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}
.funryu-latest-card > div > span {
  display: flex;
  margin-top: auto;
  padding-top: 14px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1e1e4;
  color: #b85464;
  font-size: 10.5px;
  font-weight: 900;
}
.funryu-latest-card i {
  display: inline-flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f6dde0;
  font-style: normal;
  transition: transform 0.2s ease;
}
.funryu-latest-card:hover i {
  transform: translateX(3px);
}
.natsui-latest-card {
  border-color: #cbe5e7;
  color: #315b60 !important;
  box-shadow: 0 12px 28px rgba(45, 104, 111, 0.11);
}
.natsui-latest-card:hover {
  box-shadow: 0 17px 34px rgba(45, 104, 111, 0.17);
}
.natsui-latest-card figure {
  background: linear-gradient(145deg, #dff1f2, #f4fbfb);
  color: #368f99;
}
.natsui-latest-card time {
  color: #57868c;
}
.natsui-latest-card strong {
  color: #315b60;
}
.natsui-latest-card > div > span {
  border-top-color: #ddedef;
  color: #338d97;
}
.natsui-latest-card i {
  background: #dceff1;
  color: #338d97;
}
@media (max-width: 650px) {
  .natsui-archive-meta {
    display: block;
  }
  .natsui-archive-meta > strong {
    display: block;
    margin-top: 7px;
  }
  .natsui-archive-meta > strong span {
    font-size: 26px;
  }
}
.natsui-center {
  text-align: center;
}
.natsui-primary-link {
  display: inline-flex;
  margin-top: 32px;
  padding: 13px 27px;
  border-radius: 999px;
  background: #fff;
  color: #287c85;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 900;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.13);
}
.natsui-closing {
  background: #fff2f2;
  text-align: center;
}
.natsui-closing .natsui-container {
  max-width: 850px;
}
.natsui-closing .natsui-container > span {
  display: block;
  margin-bottom: 9px;
  color: #d1747b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.natsui-closing h2 {
  margin: 0 0 18px;
  color: #5a3c49;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.65;
}
.natsui-closing p {
  color: #765965;
}
.natsui-closing .natsui-container > div {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}
.natsui-closing a {
  display: inline-flex;
  justify-content: center;
  min-width: 190px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #e4858c;
  color: #fff;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 900;
}
.natsui-closing a + a {
  background: #43a7b2;
}

@media (max-width: 900px) {
  .natsui-container {
    padding: 54px 20px;
  }
  .natsui-hero {
    min-height: 260px;
  }
  .detail-anchor-nav {
    top: 106px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 8px;
    scrollbar-width: none;
  }
  .detail-anchor-nav::-webkit-scrollbar {
    display: none;
  }
  .detail-anchor-nav a {
    padding: 13px 12px;
    font-size: 10.5px;
  }
  .funryu-detail-page .funryu-h2,
  .natsui-detail-page .natsui-h2 {
    font-size: 23px;
  }
  .natsui-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .natsui-principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px;
  }
  .natsui-principles > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .natsui-principles span {
    margin-bottom: 10px;
  }
  .natsui-principles small {
    margin-top: 3px;
  }
  .natsui-target-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .natsui-first-aid {
    grid-template-columns: 220px 1fr;
    margin: 52px 20px;
    padding-right: 20px;
  }
  .natsui-first-aid-head {
    padding: 24px 25px;
  }
  .natsui-first-aid-body {
    padding-left: 23px;
  }
  .natsui-case-card {
    grid-template-columns: 250px 1fr;
  }
  .natsui-case-copy {
    padding: 23px;
  }
  .natsui-case-gallery figure > div,
  .natsui-case-gallery img {
    min-height: 180px;
  }
  .natsui-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .funryu-latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 650px) {
  .natsui-detail-page p {
    font-size: 14px;
  }
  .natsui-container {
    width: 100%;
    padding: 46px 18px;
  }
  .funryu-detail-page .funryu-h2,
  .natsui-detail-page .natsui-h2 {
    font-size: 22px;
    overflow-wrap: anywhere;
  }
  .natsui-lead {
    font-size: 14.5px !important;
  }
  .natsui-principles {
    grid-template-columns: 1fr;
  }
  .natsui-principles > div {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
  }
  .natsui-principles span {
    grid-row: 1/3;
    margin: 0;
  }
  .natsui-target-grid,
  .natsui-flow,
  .natsui-policy-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .natsui-target-grid {
    gap: 12px;
  }
  .natsui-target-grid section {
    min-width: 0;
    padding: 20px;
  }
  .natsui-first-aid {
    display: block;
    width: auto;
    margin: 42px 18px;
    padding: 0;
  }
  .natsui-first-aid-head {
    margin: 0;
    padding: 20px 22px;
  }
  .natsui-first-aid-head h2 {
    font-size: 17px;
  }
  .natsui-first-aid-body {
    padding: 20px 22px;
  }
  .natsui-policy-grid {
    gap: 9px;
  }
  .natsui-photo-notice {
    display: block;
  }
  .natsui-photo-notice strong {
    display: block;
    margin-bottom: 4px;
  }
  .natsui-case-card {
    display: block;
  }
  .natsui-case-gallery-2,
  .natsui-case-gallery-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .natsui-case-gallery figure > div,
  .natsui-case-gallery img {
    min-height: 150px;
  }
  .natsui-case-gallery-2 img {
    object-fit: contain;
    background: #e8f2f3;
  }
  .natsui-archive-heading {
    display: block;
  }
  .natsui-archive-heading > strong {
    display: block;
    margin-top: 10px;
  }
  .natsui-search-grid {
    grid-template-columns: 1fr;
  }
  .natsui-latest-list a {
    grid-template-columns: 75px 1fr 14px;
    gap: 9px;
  }
  .natsui-latest-list strong {
    font-size: 11.5px;
  }
  .funryu-latest-grid {
    grid-template-columns: 1fr;
  }
  .funryu-latest-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
  }
  .funryu-latest-card figure {
    height: 100%;
    min-height: 180px;
    aspect-ratio: auto;
  }
  .funryu-latest-card > div {
    min-height: 180px;
    padding: 16px 15px;
  }
  .natsui-closing h2 {
    font-size: 21px;
  }
  .natsui-closing .natsui-container > div {
    flex-direction: column;
    align-items: center;
  }
  .natsui-closing a {
    width: min(280px, 100%);
  }
}

/* ---- Unified photo hero for every subpage ---- */
.unified-page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 52px 28px;
  background-color: #466e73;
  background-image: url("/wp-content/uploads/2020/08/image.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 0;
  text-align: center;
}
.unified-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    rgba(41, 64, 68, 0.78),
    rgba(58, 80, 82, 0.62) 54%,
    rgba(105, 66, 81, 0.58)
  );
}
.unified-page-hero-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}
.unified-page-hero .unified-page-hero-en {
  display: inline-block;
  margin: 0 0 11px;
  padding: 4px 14px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(237, 146, 150, 0.44);
  color: rgba(255, 255, 255, 0.94);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(90, 48, 58, 0.28);
  box-shadow: 0 3px 10px rgba(92, 52, 70, 0.08);
  backdrop-filter: blur(3px);
}
.unified-page-hero .unified-page-hero-title {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.025em;
  text-shadow: 0 3px 18px rgba(25, 43, 46, 0.42);
}
.unified-page-hero .unified-page-hero-description {
  max-width: 760px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  line-height: 1.9;
  text-shadow: 0 2px 12px rgba(25, 43, 46, 0.36);
}
.unified-page-hero .unified-page-hero-description p {
  margin: 0;
  color: inherit;
}
.case-blog-hero {
  padding-top: 52px;
  padding-bottom: 50px;
}
.case-blog-hero .case-blog-container {
  width: min(900px, 100%);
}
.case-blog-hero .case-blog-search {
  position: relative;
  z-index: 1;
  text-shadow: none;
}
.case-article-header-inner {
  max-width: 960px;
  text-align: center;
}
.case-article-header .case-article-kinds,
.case-article-header .case-article-meta {
  justify-content: center;
}
.case-article-header .case-article-summary {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.case-article-header .case-article-meta {
  color: rgba(255, 255, 255, 0.86);
}
.case-article-header .case-article-meta span {
  color: #d2f4f5;
}
.case-article-header .case-article-kinds > span {
  color: #ddf7f8;
}
.case-article-header .case-article-kinds a {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.92);
  color: #72505f;
}
.news-archive-hero .news-archive-container {
  width: min(900px, 100%);
}
.subpage-hero {
  min-height: 300px;
}
.funryu-hero {
  min-height: 300px;
}
@media (max-width: 700px) {
  .unified-page-hero {
    min-height: 230px;
    padding: 40px 18px;
    background-position: center;
  }
  .unified-page-hero .unified-page-hero-en {
    margin-bottom: 10px;
    padding: 4px 13px;
    font-size: 9.5px;
  }
  .unified-page-hero .unified-page-hero-title {
    font-size: 24px;
    line-height: 1.55;
  }
  .unified-page-hero .unified-page-hero-description {
    font-size: 12.5px;
    line-height: 1.8;
  }
  .case-blog-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Phase 1 flow redesign: test on the mole/pigmentation page only. */
.unified-treatment-flow {
  background: linear-gradient(180deg, #f7fbfb 0%, #eef7f8 100%);
}
.natsui-detail-page .unified-treatment-flow {
  background: #fff;
}
.treatment-flow-list {
  position: relative;
  display: flex;
  max-width: 900px;
  margin: 22px auto 0;
  padding: 0;
  flex-direction: column;
  gap: 0;
  list-style: none;
}
.treatment-flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin: 0;
  padding: 0 0 24px;
  border: 0;
}
.treatment-flow-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: -36px;
  left: 35px;
  width: 2px;
  background: linear-gradient(#7bcbd2, #e9a0a6);
}
.treatment-flow-list li:last-child {
  padding-bottom: 0;
}
.treatment-flow-list li + li {
  border: 0;
}
.treatment-flow-list li > b {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 7px solid #eef7f8;
  border-radius: 50%;
  background: linear-gradient(145deg, #5fc2cc, #48a8b2);
  color: #fff;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(55, 142, 151, 0.2);
}
.treatment-flow-list li:nth-child(even) > b {
  background: linear-gradient(145deg, #ed9296, #d96d77);
  box-shadow: 0 7px 18px rgba(191, 86, 98, 0.18);
}
.treatment-flow-list li > div {
  min-height: 72px;
  padding: 23px 26px 24px;
  border: 1px solid #dcebec;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(61, 112, 119, 0.07);
}
.treatment-flow-list h3 {
  margin: 0 0 8px;
  color: #49353f;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.55;
}
.treatment-flow-list p {
  margin: 0;
  color: #705762;
  font-size: 14px;
  line-height: 1.9;
}
@media (max-width: 600px) {
  .treatment-flow-list li {
    grid-template-columns: 51px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 17px;
  }
  .treatment-flow-list li:not(:last-child)::before {
    top: 25.5px;
    bottom: -25.5px;
    left: 25px;
  }
  .treatment-flow-list li > b {
    width: 51px;
    height: 51px;
    border-width: 5px;
    font-size: 12px;
  }
  .treatment-flow-list li > div {
    min-height: 51px;
    padding: 18px 17px 19px;
    border-radius: 14px;
  }
  .treatment-flow-list h3 {
    font-size: 16px;
  }
  .treatment-flow-list p {
    font-size: 13px;
  }
}

/* Atheroma flow: full-bleed background in the page's pink theme. */
.funryu-detail-page .funryu-section.unified-treatment-flow {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: max(28px, calc((100vw - 900px) / 2));
  padding-left: max(28px, calc((100vw - 900px) / 2));
  background: linear-gradient(135deg, #fff8f8 0%, #fcebed 52%, #fff4f5 100%);
}
.funryu-detail-page
  .unified-treatment-flow
  .treatment-flow-list
  li:not(:last-child)::before {
  background: linear-gradient(#ed9296, #d86b76);
}
.funryu-detail-page .unified-treatment-flow .treatment-flow-list li > div {
  border-color: #f0d5da;
  box-shadow: 0 8px 24px rgba(151, 70, 84, 0.07);
}
@media (max-width: 600px) {
  .funryu-detail-page .funryu-section.unified-treatment-flow {
    padding-right: 18px;
    padding-left: 18px;
  }
}

/* ---- Dedicated rehabilitation page ---- */
.rehab-page {
  --rehab-navy: #36565d;
  --rehab-teal: #4caab4;
  --rehab-teal-light: #e8f6f7;
  --rehab-pink: #ed9296;
  --rehab-ink: #493b43;
  background: #fbfaf8;
  color: var(--rehab-ink);
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.9;
}
.rehab-page h1,
.rehab-page h2,
.rehab-page h3 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}
.rehab-page [id] {
  scroll-margin-top: 190px;
}
.rehab-container {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}
.rehab-section {
  padding: 82px 0;
}
.rehab-kicker,
.rehab-heading > span,
.rehab-intro-message > span,
.rehab-visit span {
  display: block;
  color: var(--rehab-teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.rehab-heading {
  margin-bottom: 35px;
  text-align: center;
}
.rehab-heading h2 {
  margin: 5px 0 0;
  color: var(--rehab-navy);
  font-size: 29px;
  font-weight: 900;
  line-height: 1.5;
}
.rehab-heading > p {
  max-width: 650px;
  margin: 13px auto 0;
  color: #6f7a7b;
  font-size: 13px;
  line-height: 1.9;
}
.rehab-intro {
  background: linear-gradient(135deg, #f3fafa 0%, #fff8f6 100%);
}
.rehab-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 65px;
  align-items: center;
}
.rehab-intro-copy h2 {
  margin: 8px 0 24px;
  color: var(--rehab-navy);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.55;
}
.rehab-intro-copy p {
  margin: 0 0 17px;
  color: #657377;
  font-size: 15px;
  line-height: 2;
}
.rehab-intro-message {
  padding: 35px 32px;
  border: 1px solid #cde5e7;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(51, 112, 119, 0.09);
}
.rehab-intro-message strong {
  display: block;
  margin: 9px 0 17px;
  color: #3f6268;
  font-size: 20px;
  line-height: 1.75;
}
.rehab-intro-message p {
  margin: 0;
  color: #7a686f;
  font-size: 13px;
  line-height: 1.85;
}
.rehab-intro-message::before {
  content: "＋";
  display: flex;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rehab-teal), #378f99);
  color: #fff;
  font-size: 21px;
  font-weight: 300;
}
.rehab-targets {
  background: #fff;
}
.rehab-target-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.rehab-target-grid section {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dcebed;
  border-radius: 18px;
  background: #f9fdfd;
}
.rehab-target-grid figure {
  height: 180px;
  margin: 0;
  overflow: hidden;
  background: #fcebed;
}
.rehab-target-grid figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rehab-target-grid section:nth-child(1) figure img {
  object-position: 43% center;
}
.rehab-target-grid section:nth-child(2) figure img {
  object-position: center 58%;
}
.rehab-target-grid section:nth-child(3) figure img {
  object-position: center 62%;
}
.rehab-target-grid section:nth-child(4) figure img {
  object-position: center 58%;
}
.rehab-target-copy {
  padding: 24px 22px 25px;
}
.rehab-target-grid b {
  display: flex;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--rehab-teal-light);
  color: #368c96;
  font-size: 15px;
}
.rehab-target-grid section:nth-child(even) b {
  background: #fce9ea;
  color: #cc6670;
}
.rehab-target-grid h3 {
  margin: 0 0 10px;
  color: #435d62;
  font-size: 17px;
  font-weight: 900;
}
.rehab-target-grid p {
  margin: 0;
  color: #6e7779;
  font-size: 13px;
  line-height: 1.85;
}
.rehab-flow-section {
  background: linear-gradient(145deg, #e5f3ee 0%, #f1f8f3 55%, #eaf6f4 100%);
  color: var(--rehab-ink);
}
.rehab-heading-light h2 {
  color: #3d6260;
}
.rehab-heading-light > span {
  color: #4a9a94;
}
.rehab-heading-light > p {
  color: #6a7d79;
}
.rehab-flow-list {
  position: relative;
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  gap: 0;
  list-style: none;
}
.rehab-flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 22px;
  padding: 0 0 22px;
}
.rehab-flow-list li:last-child {
  padding-bottom: 0;
}
.rehab-flow-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 35px;
  bottom: -35px;
  left: 34px;
  width: 2px;
  background: linear-gradient(#75c7be, #e7a1a5);
}
.rehab-flow-list li > b {
  position: relative;
  z-index: 1;
  display: flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border: 6px solid #eaf5f0;
  border-radius: 50%;
  background: linear-gradient(145deg, #62bdb5, #449c96);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 7px 18px rgba(68, 139, 132, 0.17);
}
.rehab-flow-list li:nth-child(even) > b {
  background: linear-gradient(145deg, #ed9296, #d86c77);
  box-shadow: 0 7px 18px rgba(183, 92, 101, 0.15);
}
.rehab-flow-list li > div {
  min-height: 70px;
  padding: 21px 24px;
  border: 1px solid #d3e6df;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(69, 112, 105, 0.07);
}
.rehab-flow-list h3 {
  margin: 0 0 5px;
  color: #405e5d;
  font-size: 17px;
  font-weight: 900;
}
.rehab-flow-list p {
  margin: 0;
  color: #6b7875;
  font-size: 13px;
  line-height: 1.85;
}
.rehab-equipment-section {
  background: linear-gradient(180deg, #f4fafa, #fff9f7);
}
.rehab-equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.rehab-equipment-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dce8e9;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(58, 103, 109, 0.07);
}
.rehab-equipment-card figure {
  min-height: 290px;
  margin: 0;
  padding: 18px;
  background: linear-gradient(145deg, #f1f8f8, #fff);
}
.rehab-equipment-card figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.rehab-equipment-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 25px;
}
.rehab-equipment-card > div > span {
  color: #c7646d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.rehab-equipment-card h3 {
  margin: 5px 0 13px;
  color: #3d5a60;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}
.rehab-equipment-card p {
  margin: 0;
  color: #6b7678;
  font-size: 12.5px;
  line-height: 1.9;
}
.rehab-equipment-card:nth-child(n + 5) {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.rehab-equipment-card:nth-child(n + 5) figure {
  min-height: 230px;
}
.rehab-equipment-note {
  margin: 18px 0 0;
  color: #8a767d;
  font-size: 11px;
  text-align: center;
}
.rehab-stories-section {
  background: #fff;
}
.rehab-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.rehab-story-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dce9ea;
  border-radius: 22px;
  background: #fafdfd;
  box-shadow: 0 11px 30px rgba(58, 103, 109, 0.07);
}
.rehab-story-mark {
  display: flex;
  min-height: 340px;
  padding: 27px 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #407980, #315c62);
  color: #fff;
  text-align: center;
}
.rehab-story-mark small {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  opacity: 0.72;
}
.rehab-story-mark strong {
  margin: 13px 0 2px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}
.rehab-story-mark span {
  font-size: 11px;
  font-weight: 700;
}
.rehab-story-column .rehab-story-mark {
  background: linear-gradient(155deg, #e68a90, #c7646d);
}
.rehab-story-column .rehab-story-mark strong {
  font-size: 29px;
}
.rehab-story-copy {
  display: flex;
  padding: 28px 25px;
  flex-direction: column;
}
.rehab-story-copy > span {
  color: #c7646d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.rehab-story-column .rehab-story-copy > span {
  color: #338c95;
}
.rehab-story-copy h3 {
  margin: 5px 0 13px;
  color: #3d5b61;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
}
.rehab-story-copy p {
  margin: 0 0 11px;
  color: #6b7678;
  font-size: 12.5px;
  line-height: 1.85;
}
.rehab-story-copy a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 8px;
  color: #33858e;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 900;
}
.rehab-story-copy a::after {
  content: "→";
  margin-left: 7px;
}
.rehab-story-note {
  margin: 16px 0 0;
  color: #8a777d;
  font-size: 10.5px;
  text-align: center;
}
.rehab-story-copy h3 .article-source-title-link {
  display: inline;
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  text-decoration: none;
}
.rehab-story-copy h3 .article-source-title-link::after {
  content: none;
  margin: 0;
}
.rehab-visit {
  padding: 42px 0;
  background: linear-gradient(135deg, #e6f5f6, #fcebed);
}
.rehab-visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}
.rehab-visit h2 {
  margin: 5px 0 7px;
  color: #385a60;
  font-size: 23px;
}
.rehab-visit p {
  margin: 0;
  color: #6d7477;
  font-size: 13px;
}
.rehab-visit-actions {
  display: flex;
  gap: 10px;
}
.rehab-visit-actions a {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: #397e86;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}
.rehab-visit-actions a:last-child {
  background: var(--rehab-teal);
  color: #fff;
}
.rehab-faq-section {
  background: #f7f1f1;
}
.rehab-faq-section .hiro-faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}
.rehab-source-note {
  max-width: 860px;
  margin: 24px auto 0;
  padding: 18px 21px;
  border: 1px solid #ddd7d8;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.65);
}
.rehab-source-note strong {
  color: #526e73;
  font-size: 11px;
}
.rehab-source-note p {
  margin: 4px 0 0;
  color: #817579;
  font-size: 10.5px;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .rehab-page [id] {
    scroll-margin-top: 170px;
  }
  .rehab-section {
    padding: 62px 0;
  }
  .rehab-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .rehab-target-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rehab-equipment-card {
    grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
  }
  .rehab-story-grid {
    grid-template-columns: 1fr;
  }
  .rehab-story-mark {
    min-height: 290px;
  }
  .rehab-visit-grid {
    grid-template-columns: 1fr;
  }
  .rehab-visit-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .rehab-container {
    width: calc(100% - 28px);
  }
  .rehab-section {
    padding: 52px 0;
  }
  .rehab-anchor-nav a {
    padding-right: 11px;
    padding-left: 11px;
  }
  .rehab-heading {
    text-align: left;
  }
  .rehab-heading h2 {
    font-size: 23px;
  }
  .rehab-heading > p {
    font-size: 12.5px;
  }
  .rehab-intro-copy h2 {
    font-size: 25px;
  }
  .rehab-intro-copy p {
    font-size: 14px;
  }
  .rehab-intro-message {
    padding: 27px 22px;
  }
  .rehab-intro-message strong {
    font-size: 18px;
  }
  .rehab-target-grid {
    grid-template-columns: 1fr;
  }
  .rehab-target-grid figure {
    height: auto;
    aspect-ratio: 16/10;
  }
  .rehab-target-copy {
    padding: 23px 20px;
  }
  .rehab-flow-list li {
    grid-template-columns: 51px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 17px;
  }
  .rehab-flow-list li:not(:last-child)::before {
    top: 25.5px;
    bottom: -25.5px;
    left: 25px;
  }
  .rehab-flow-list li > b {
    width: 51px;
    height: 51px;
    border-width: 5px;
    font-size: 11px;
  }
  .rehab-flow-list li > div {
    min-height: 51px;
    padding: 17px 16px;
  }
  .rehab-flow-list h3 {
    font-size: 15px;
  }
  .rehab-flow-list p {
    font-size: 12px;
  }
  .rehab-equipment-grid {
    grid-template-columns: 1fr;
  }
  .rehab-equipment-card,
  .rehab-equipment-card:nth-child(n + 5) {
    grid-template-columns: 1fr;
  }
  .rehab-equipment-card figure,
  .rehab-equipment-card:nth-child(n + 5) figure {
    height: 300px;
    min-height: 0;
    padding: 15px;
  }
  .rehab-equipment-card > div {
    padding: 22px 20px;
  }
  .rehab-visit-actions {
    display: grid;
  }
  .rehab-visit-actions a {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .rehab-story-card {
    grid-template-columns: 1fr;
  }
  .rehab-story-mark {
    min-height: 0;
    padding: 25px;
  }
  .rehab-story-mark strong {
    font-size: 38px;
  }
  .rehab-story-copy {
    padding: 23px 20px;
  }
  .rehab-story-note {
    text-align: left;
  }
}

/* Rehabilitation uses the shared pink specialty-page palette. */
.rehab-page {
  --rehab-navy: #74434f;
  --rehab-teal: #ed9296;
  --rehab-teal-light: #fcebed;
  --rehab-pink: #ed9296;
}
.rehab-anchor-nav {
  border-bottom-color: #f0d7db;
  box-shadow: 0 8px 22px rgba(158, 76, 89, 0.08);
}
.rehab-anchor-nav a {
  color: #7a5660;
}
.rehab-anchor-nav a:hover {
  color: #c85f69;
  background: #fff3f4;
}
.rehab-intro {
  background: linear-gradient(135deg, #fff8f8 0%, #fcebed 100%);
}
.rehab-intro-copy p {
  color: #725f65;
}
.rehab-intro-message {
  border-color: #f0d5da;
  box-shadow: 0 14px 36px rgba(151, 70, 84, 0.09);
}
.rehab-intro-message strong {
  color: #74434f;
}
.rehab-intro-message::before {
  background: linear-gradient(145deg, #ed9296, #d96d77);
}
.rehab-target-grid section {
  border-color: #f0dadf;
  background: #fffafa;
}
.rehab-target-grid b,
.rehab-target-grid section:nth-child(even) b {
  background: #fce9ea;
  color: #c9656e;
}
.rehab-target-grid h3 {
  color: #704852;
}
.rehab-flow-section {
  background: linear-gradient(145deg, #fff8f8 0%, #fcebed 55%, #fff4f5 100%);
}
.rehab-heading-light h2 {
  color: #74434f;
}
.rehab-heading-light > span {
  color: #c45f69;
}
.rehab-heading-light > p {
  color: #846a71;
}
.rehab-flow-list li:not(:last-child)::before {
  background: linear-gradient(#ed9296, #d86b76);
}
.rehab-flow-list li > b {
  border-color: #fcebed;
  background: linear-gradient(145deg, #5fc2cc, #48a8b2);
  box-shadow: 0 7px 18px rgba(55, 142, 151, 0.2);
}
.rehab-flow-list li:nth-child(even) > b {
  background: linear-gradient(145deg, #ed9296, #d96d77);
  box-shadow: 0 7px 18px rgba(191, 86, 98, 0.18);
}
.rehab-flow-list li > div {
  border-color: #f0d5da;
  box-shadow: 0 8px 24px rgba(151, 70, 84, 0.07);
}
.rehab-flow-list h3 {
  color: #704852;
}
.rehab-flow-list p {
  color: #79636a;
}
.rehab-equipment-section {
  background: linear-gradient(180deg, #fff8f8, #fffdfb);
}
.rehab-equipment-card {
  border-color: #efdadf;
  box-shadow: 0 10px 30px rgba(146, 73, 86, 0.07);
}
.rehab-equipment-card figure {
  background: linear-gradient(145deg, #fff2f3, #fff);
}
.rehab-equipment-card h3 {
  color: #704852;
}
.rehab-story-card {
  border-color: #efdadf;
  background: #fffafa;
  box-shadow: 0 11px 30px rgba(146, 73, 86, 0.07);
}
.rehab-story-mark,
.rehab-story-column .rehab-story-mark {
  background: linear-gradient(155deg, #b85f69, #82414d);
}
.rehab-story-copy > span,
.rehab-story-column .rehab-story-copy > span,
.rehab-story-copy a {
  color: #c45f69;
}
.rehab-story-copy h3 {
  color: #704852;
}
.rehab-visit {
  background: linear-gradient(135deg, #fcebed, #fff7f7);
}
.rehab-visit h2 {
  color: #74434f;
}
.rehab-visit-actions a {
  color: #b45964;
}
.rehab-visit-actions a:last-child {
  background: #d9757e;
}

/* Phase 1 treatment palette proposal: light, fresh and readable. */
.skin-detail-page .skin-treatment {
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(116, 208, 215, 0.28),
      transparent 34%
    ),
    linear-gradient(145deg, #e8f6f6 0%, #f7fcfc 58%, #fff7f6 100%);
  color: #35565a;
}
.skin-detail-page .skin-treatment .skin-heading-light h2 {
  color: #315b60;
  text-shadow: none;
}
.skin-detail-page .skin-treatment .skin-heading-light > span {
  color: #378f98;
}
.skin-detail-page .skin-treatment .skin-heading-light > p {
  color: #58757a;
}
.skin-detail-page .skin-treatment-grid article {
  border-color: #cde4e6;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(55, 121, 128, 0.09);
}
.skin-detail-page .skin-treatment-grid article > b {
  color: rgba(72, 163, 173, 0.18);
}
.skin-detail-page .skin-treatment-grid h3 {
  color: #385159;
}
.skin-detail-page .skin-treatment-grid article > p {
  color: #566f75;
}
.skin-detail-page .skin-treatment-grid dl > div {
  border-top-color: #d8e9ea;
}
.skin-detail-page .skin-treatment-grid dt {
  color: #c25f6a;
}
.skin-detail-page .skin-treatment-grid dd {
  color: #47636a;
}
.skin-detail-page .skin-wound-policy {
  border: 1px solid #d6e9ea;
  box-shadow: 0 9px 25px rgba(64, 130, 136, 0.08);
}

/* Clinic policy statement: editorial layout without a card treatment. */
.skin-detail-page .skin-intro-note {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 25px;
  align-items: start;
  margin-top: 32px;
  padding: 25px 0 0;
  border: 0;
  border-top: 1px solid #afcfd2;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.skin-detail-page .skin-intro-note span {
  display: block;
  margin: 3px 0 0;
  color: #b95d68;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.skin-detail-page .skin-intro-note strong {
  display: block;
  color: #31575b;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.85;
}
@media (max-width: 520px) {
  .skin-detail-page .skin-intro-note {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 27px;
    padding-top: 20px;
  }
  .skin-detail-page .skin-intro-note span {
    margin: 0;
    font-size: 12px;
  }
  .skin-detail-page .skin-intro-note strong {
    font-size: 17px;
    line-height: 1.8;
  }
}

/* Fixed-page FAQ uses the same accordion component as the front page. */
.funryu-detail-page .hiro-faq-accordion,
.natsui-detail-page .hiro-faq-accordion,
.skin-detail-page .hiro-faq-accordion {
  max-width: 860px;
  margin: 22px auto 0;
}

/* ---- Dedicated traffic accident care page ---- */
.traffic-page {
  --traffic-navy: #385a63;
  --traffic-teal: #4aa8b2;
  --traffic-pale: #eaf6f7;
  --traffic-coral: #e98286;
  --traffic-ink: #493c43;
  background: #fcfbf9;
  color: var(--traffic-ink);
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.9;
}
.traffic-page h1,
.traffic-page h2,
.traffic-page h3 {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}
.traffic-page [id] {
  scroll-margin-top: 190px;
}
.traffic-container {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}
.traffic-section {
  padding: 80px 0;
}
.traffic-kicker,
.traffic-heading > span,
.traffic-contact span {
  display: block;
  color: var(--traffic-teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.traffic-heading {
  margin-bottom: 34px;
  text-align: center;
}
.traffic-heading h2 {
  margin: 5px 0 0;
  color: var(--traffic-navy);
  font-size: 29px;
  font-weight: 900;
  line-height: 1.55;
}
.traffic-heading > p {
  max-width: 700px;
  margin: 12px auto 0;
  color: #6d7779;
  font-size: 13px;
  line-height: 1.9;
}
.traffic-heading-light h2 {
  color: #fff;
}
.traffic-heading-light > span {
  color: #a8e3e7;
}
.traffic-heading-light > p {
  color: rgba(255, 255, 255, 0.77);
}
.traffic-intro {
  background: linear-gradient(135deg, #f0f8f8, #fff8f5);
}
.traffic-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 58px;
  align-items: center;
}
.traffic-intro h2 {
  margin: 7px 0 23px;
  color: var(--traffic-navy);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.55;
}
.traffic-intro p {
  margin: 0 0 16px;
  color: #637276;
  font-size: 14.5px;
  line-height: 2;
}
.traffic-urgent {
  padding: 28px;
  border: 1px solid #f0ced0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(111, 72, 79, 0.09);
}
.traffic-urgent > span {
  color: #c55f68;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.traffic-urgent h3 {
  margin: 4px 0 14px;
  color: #7c4048;
  font-size: 19px;
}
.traffic-urgent ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.traffic-urgent li {
  position: relative;
  padding: 7px 0 7px 19px;
  border-bottom: 1px solid #f5e5e6;
  color: #6d555c;
  font-size: 12.5px;
  line-height: 1.7;
}
.traffic-urgent li::before {
  content: "!";
  position: absolute;
  left: 0;
  color: #d56b72;
  font-weight: 900;
}
.traffic-urgent p {
  margin: 15px 0 0;
  color: #a04e56;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}
.traffic-symptoms {
  background: #fff;
}
.traffic-symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.traffic-symptom-grid article {
  min-width: 0;
  padding: 25px 22px;
  border: 1px solid #dceaec;
  border-radius: 18px;
  background: #f9fdfd;
}
.traffic-symptom-grid b {
  display: flex;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #e1f2f3;
  color: #378e97;
  font-size: 14px;
}
.traffic-symptom-grid article:nth-child(even) b {
  background: #fce9ea;
  color: #c9656d;
}
.traffic-symptom-grid h3 {
  margin: 0 0 8px;
  color: #405c62;
  font-size: 16px;
  font-weight: 900;
}
.traffic-symptom-grid p {
  margin: 0;
  color: #6b7678;
  font-size: 12.5px;
  line-height: 1.8;
}
.traffic-note {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  margin-top: 22px;
  padding: 25px 28px;
  border-radius: 16px;
  background: #edf6f6;
}
.traffic-note strong {
  color: #37656a;
  font-size: 14px;
  line-height: 1.75;
}
.traffic-note p {
  margin: 0;
  color: #647679;
  font-size: 12.5px;
  line-height: 1.85;
}
.traffic-care {
  background: linear-gradient(145deg, #365c63, #47777d);
  color: #fff;
}
.traffic-care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.traffic-care-grid article {
  display: flex;
  min-width: 0;
  padding: 34px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
}
.traffic-care-grid article > span {
  color: #a8e3e7;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.traffic-care-grid article:nth-child(2) > span {
  color: #ffd6d8;
}
.traffic-care-grid h3 {
  margin: 5px 0 13px;
  color: #fff;
  font-size: 22px;
}
.traffic-care-grid p {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.9;
}
.traffic-care-grid ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.traffic-care-grid li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
}
.traffic-care-grid li::before {
  content: "—";
  margin-right: 9px;
  color: #91d7dc;
}
.traffic-care-grid article:nth-child(2) li::before {
  color: #f3adb1;
}
.traffic-care-grid a {
  display: inline-flex;
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 17px;
  border-radius: 999px;
  background: #fff;
  color: #357d85;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
}
.traffic-flow-section {
  background: linear-gradient(180deg, #f5fafa, #eaf5f6);
}
.traffic-flow-section .treatment-flow-list {
  margin-top: 0;
}

/* Dedicated joint injection page */
.joint-page {
  --joint: #3e7d88;
  --joint-dark: #2f555d;
  --joint-deep: #263f46;
  --joint-soft: #eaf4f5;
  --joint-mist: #f5f9f9;
  color: #445a5f;
  background: #fff;
}
.joint-page main {
  display: block;
}
.joint-container {
  width: min(100% - 56px, 1040px);
  margin: 0 auto;
}
.joint-section {
  padding: 88px 0;
}
.joint-page-hero {
  background-image: url("/wp-content/uploads/2020/08/kansetu_img01.jpg");
  background-position: center 56%;
}
.joint-page-hero::before {
  background: linear-gradient(
    110deg,
    rgba(29, 55, 62, 0.86),
    rgba(45, 82, 89, 0.68) 55%,
    rgba(67, 106, 111, 0.5)
  );
}
.joint-page-hero .unified-page-hero-en {
  background: rgba(92, 165, 173, 0.38);
}
.joint-anchor-nav {
  border-color: #d5e5e7;
  background: #fbfdfd;
}
.joint-anchor-nav a {
  color: var(--joint-dark);
}
.joint-kicker,
.joint-heading > span,
.joint-story > div > div > span,
.joint-contact-grid > div > span {
  display: block;
  color: #4a929c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.joint-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}
.joint-heading h2 {
  position: relative;
  margin: 8px 0 14px;
  padding-bottom: 17px;
  color: var(--joint-dark);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.45;
}
.joint-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 58px;
  height: 3px;
  border-radius: 4px;
  background: var(--joint);
  transform: translateX(-50%);
}
.joint-heading p {
  margin: 0;
  color: #6d7e81;
  font-size: 14px;
  line-height: 1.9;
}
.joint-heading-light > span {
  color: #9bd7dc;
}
.joint-heading-light h2,
.joint-heading-light p {
  color: #fff;
}
.joint-heading-light h2::after {
  background: #a7dce0;
}
.joint-intro {
  background: linear-gradient(135deg, #fff, #f2f8f8);
}
.joint-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 62px;
  align-items: center;
}
.joint-intro-photo {
  position: relative;
}
.joint-intro-photo img {
  display: block;
  width: 100%;
  height: 510px;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(43, 77, 83, 0.14);
}
.joint-intro-photo span {
  position: absolute;
  right: -20px;
  bottom: 28px;
  padding: 12px 17px;
  border-radius: 999px;
  background: #fff;
  color: var(--joint);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  box-shadow: 0 9px 28px rgba(37, 66, 72, 0.16);
}
.joint-intro-copy h2 {
  margin: 10px 0 24px;
  color: var(--joint-dark);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 33px;
  font-weight: 900;
  line-height: 1.55;
}
.joint-intro-copy > p {
  margin: 0 0 17px;
  color: #63777a;
  font-size: 14px;
  line-height: 2;
}
.joint-key-message {
  margin-top: 27px;
  padding: 20px 22px;
  border-left: 4px solid var(--joint);
  border-radius: 0 13px 13px 0;
  background: #fff;
  box-shadow: 0 9px 25px rgba(45, 78, 84, 0.08);
}
.joint-key-message strong {
  display: block;
  margin-bottom: 7px;
  color: var(--joint-dark);
  font-size: 14px;
}
.joint-key-message span {
  color: #6d7f82;
  font-size: 12px;
  line-height: 1.8;
}
.joint-symptoms {
  background: #fff;
}
.joint-symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.joint-symptom-grid article {
  padding: 26px 23px;
  border: 1px solid #d9e7e8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 9px 27px rgba(46, 80, 86, 0.055);
}
.joint-symptom-grid b {
  display: flex;
  width: 44px;
  height: 44px;
  margin-bottom: 17px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--joint-soft);
  color: var(--joint);
  font-size: 14px;
}
.joint-symptom-grid article:nth-child(2n) b {
  background: #f8edee;
  color: #b76b74;
}
.joint-symptom-grid h3 {
  margin: 0 0 9px;
  color: var(--joint-dark);
  font-size: 16px;
  line-height: 1.55;
}
.joint-symptom-grid p {
  margin: 0;
  color: #6c7c7f;
  font-size: 12.5px;
  line-height: 1.8;
}
.joint-urgent {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: 16px;
  background: #fff1f0;
}
.joint-urgent > div {
  display: flex;
  gap: 12px;
  align-items: center;
}
.joint-urgent span {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #be5d5d;
  color: #fff;
  font-weight: 900;
}
.joint-urgent h3 {
  margin: 0;
  color: #873f43;
  font-size: 15px;
}
.joint-urgent p {
  margin: 0;
  color: #765c60;
  font-size: 12.5px;
  line-height: 1.85;
}
.joint-options {
  background: linear-gradient(140deg, #294951, #3f7079);
  color: #fff;
}
.joint-option-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.joint-option-map article {
  display: flex;
  min-width: 0;
  padding: 27px 22px;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  flex-direction: column;
}
.joint-option-map article > b {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(158, 218, 223, 0.18);
  color: #afe0e4;
  font-size: 9px;
}
.joint-option-map h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 17px;
}
.joint-option-map p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12.5px;
  line-height: 1.85;
}
.joint-option-map a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  color: #b9e8eb;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.joint-option-map a span {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 0.2s;
}
.joint-option-map a:hover span {
  transform: translateX(3px);
}
.joint-next-step {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 5px 35px;
  margin-top: 20px;
  padding: 27px 30px;
  border-radius: 17px;
  background: #fff;
  color: var(--joint-dark);
}
.joint-next-step > span {
  grid-row: 1/3;
  padding-top: 5px;
  color: #5798a0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.joint-next-step h3 {
  margin: 0 0 7px;
  font-size: 16px;
}
.joint-next-step p {
  margin: 0;
  color: #687a7d;
  font-size: 12.5px;
  line-height: 1.8;
}
.joint-injection {
  background: #f3f8f8;
}
.joint-injection-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
.joint-injection-copy h2 {
  margin: 9px 0 17px;
  color: var(--joint-dark);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 31px;
  line-height: 1.5;
}
.joint-injection-copy p {
  margin: 0 0 15px;
  color: #65777a;
  font-size: 13.5px;
  line-height: 1.95;
}
.joint-injection-copy .joint-lead {
  color: #3e6167;
  font-size: 16px;
  font-weight: 800;
}
.joint-injection-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.joint-injection-points article {
  padding: 23px 21px;
  border: 1px solid #d8e7e8;
  border-radius: 17px;
  background: #fff;
}
.joint-injection-points span {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--joint-soft);
  color: var(--joint);
  font-size: 9px;
  font-weight: 900;
}
.joint-injection-points article:nth-child(2n) span {
  background: #f7e9eb;
  color: #b46670;
}
.joint-injection-points h3 {
  margin: 10px 0 8px;
  color: var(--joint-dark);
  font-size: 15px;
  line-height: 1.55;
}
.joint-injection-points p {
  margin: 0;
  color: #718083;
  font-size: 11.5px;
  line-height: 1.8;
}
.joint-flow {
  background: linear-gradient(180deg, #fff, #eef6f6);
}
.joint-flow .treatment-flow-list {
  margin-top: 0;
}
.joint-flow .treatment-flow-list li > div {
  border-color: #d7e6e7;
}
.joint-aftercare {
  background: linear-gradient(140deg, #305963, #477b83);
  color: #fff;
}
.joint-aftercare-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}
.joint-aftercare-do,
.joint-aftercare-alert {
  padding: 31px 29px;
  border-radius: 19px;
}
.joint-aftercare-do {
  background: #fff;
  color: var(--joint-dark);
}
.joint-aftercare-do h3,
.joint-aftercare-alert h3 {
  margin: 0 0 19px;
  font-size: 19px;
  line-height: 1.5;
}
.joint-aftercare-do ul,
.joint-aftercare-alert ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.joint-aftercare-do li {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid #e1ebec;
}
.joint-aftercare-do b {
  font-size: 12px;
}
.joint-aftercare-do li span {
  color: #6a7b7e;
  font-size: 11.5px;
  line-height: 1.75;
}
.joint-aftercare-alert {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(25, 50, 56, 0.42);
}
.joint-aftercare-alert > span {
  display: block;
  margin-bottom: 7px;
  color: #f5c0c3;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.joint-aftercare-alert li {
  position: relative;
  padding: 6px 0 6px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12.5px;
}
.joint-aftercare-alert li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f0a4aa;
}
.joint-aftercare-alert p {
  margin: 17px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.68);
  font-size: 10.5px;
  line-height: 1.75;
}
.joint-story {
  background: #f8f3f1;
}
.joint-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.joint-story h2 {
  margin: 8px 0 15px;
  color: var(--joint-dark);
  font-size: 27px;
}
.joint-story h2 a {
  color: inherit;
}
.joint-story p {
  margin: 0 0 13px;
  color: #697a7d;
  font-size: 13px;
  line-height: 1.9;
}
.joint-story .article-source-link {
  margin-top: 8px;
}
.joint-story-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(62, 72, 72, 0.1);
}
.joint-story-photo img {
  display: block;
  width: 100%;
  height: 285px;
  object-fit: cover;
  object-position: center;
}
.joint-story-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 285px;
  padding: 16px 19px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: #3c646b;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.7;
  box-shadow: 0 8px 24px rgba(40, 63, 67, 0.14);
  backdrop-filter: blur(5px);
}
.joint-story-photo figcaption span {
  position: absolute;
  top: -2px;
  left: 8px;
  color: #b7d7da;
  font-family: serif;
  font-size: 38px;
  line-height: 1;
}
.joint-contact {
  padding: 54px 0;
  background: #223f46;
  color: #fff;
}
.joint-contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 55px;
  align-items: center;
}
.joint-contact h2 {
  margin: 7px 0 10px;
  color: #fff;
  font-size: 25px;
}
.joint-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  line-height: 1.85;
}
.joint-contact-grid > a {
  display: flex;
  padding: 19px 24px;
  align-items: center;
  border-radius: 15px;
  background: #fff;
  color: var(--joint-dark);
  text-decoration: none;
  flex-direction: column;
}
.joint-contact-grid > a small {
  font-size: 10px;
  font-weight: 800;
}
.joint-contact-grid > a strong {
  margin: 3px 0;
  font-size: 25px;
  letter-spacing: 0.04em;
}
.joint-contact-grid > a span {
  color: #728386;
  font-size: 9px;
}
.joint-faq {
  background: #fff;
}
.joint-faq .hiro-faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}
.joint-source-note {
  max-width: 860px;
  margin: 24px auto 0;
  padding: 19px 21px;
  border: 1px solid #dce7e8;
  border-radius: 14px;
  background: #f8fbfb;
}
.joint-source-note strong {
  color: var(--joint-dark);
  font-size: 11px;
}
.joint-source-note p {
  margin: 5px 0 12px;
  color: #758386;
  font-size: 10.5px;
  line-height: 1.8;
}
.joint-source-note > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.joint-source-note a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--joint);
  font-size: 10.5px;
  font-weight: 800;
  text-decoration: none;
}
.joint-source-note a span {
  font-size: 9px;
}
@media (max-width: 760px) {
  .joint-container {
    width: min(100% - 36px, 1040px);
  }
  .joint-section {
    padding: 62px 0;
  }
  .joint-page-hero {
    background-position: 62% center;
  }
  .joint-heading {
    margin-bottom: 28px;
  }
  .joint-heading h2 {
    font-size: 25px;
  }
  .joint-heading p {
    font-size: 13px;
  }
  .joint-intro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .joint-intro-photo img {
    height: 370px;
  }
  .joint-intro-photo span {
    right: 13px;
    bottom: 15px;
  }
  .joint-intro-copy h2 {
    font-size: 27px;
  }
  .joint-symptom-grid {
    grid-template-columns: 1fr 1fr;
  }
  .joint-urgent {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 21px;
  }
  .joint-option-map {
    grid-template-columns: 1fr 1fr;
  }
  .joint-next-step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 23px;
  }
  .joint-next-step > span {
    grid-row: auto;
  }
  .joint-injection-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .joint-injection-copy h2 {
    font-size: 26px;
  }
  .joint-aftercare-grid,
  .joint-story-grid,
  .joint-contact-grid {
    grid-template-columns: 1fr;
  }
  .joint-aftercare-do,
  .joint-aftercare-alert {
    padding: 26px 22px;
  }
  .joint-story-grid {
    gap: 26px;
  }
  .joint-story-photo img {
    height: 260px;
  }
  .joint-contact-grid {
    gap: 25px;
  }
  .joint-contact h2 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .joint-intro-photo img {
    height: 310px;
  }
  .joint-symptom-grid,
  .joint-option-map,
  .joint-injection-points {
    grid-template-columns: 1fr;
  }
  .joint-aftercare-do li {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .joint-story-photo img {
    height: 230px;
  }
  .joint-story-photo figcaption {
    right: 12px;
    bottom: 12px;
    max-width: 250px;
    padding: 13px 15px;
    font-size: 14px;
  }
}

/* Dedicated ingrown nail page */
.nail-detail-page {
  --nail: #b66b57;
  --nail-dark: #653f38;
  --nail-soft: #faeee9;
  --nail-cream: #fff9f5;
  color: #493a3a;
  background: #fff;
}
.nail-detail-page main {
  display: block;
}
.nail-container {
  width: min(100% - 56px, 1040px);
  margin: 0 auto;
}
.nail-section {
  padding: 88px 0;
}
.nail-anchor-nav {
  border-color: #e9d8d1;
  background: #fffdfc;
}
.nail-anchor-nav a {
  color: #68483f;
}
.nail-kicker,
.nail-heading > span,
.nail-aftercare span,
.nail-visit-grid > div > span {
  display: block;
  color: var(--nail);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.nail-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}
.nail-heading h2 {
  position: relative;
  margin: 8px 0 14px;
  padding-bottom: 17px;
  color: var(--nail-dark);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.45;
}
.nail-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 58px;
  height: 3px;
  border-radius: 4px;
  background: var(--nail);
  transform: translateX(-50%);
}
.nail-heading p {
  margin: 0;
  color: #79615b;
  font-size: 14px;
  line-height: 1.9;
}
.nail-heading-light > span,
.nail-heading-light h2,
.nail-heading-light p {
  color: #fff;
}
.nail-heading-light h2::after {
  background: #f4c4b5;
}
.nail-intro {
  background: linear-gradient(135deg, #fff 0%, #fff9f5 55%, #faeee9 100%);
}
.nail-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.nail-intro h2 {
  margin: 12px 0 0;
  color: var(--nail-dark);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.55;
}
.nail-intro-copy > p {
  margin: 0 0 18px;
  color: #69534e;
  font-size: 15px;
  line-height: 2;
}
.nail-intro-copy > p strong {
  color: var(--nail-dark);
}
.nail-key-message {
  margin-top: 28px;
  padding: 20px 23px;
  border-left: 4px solid var(--nail);
  background: #fff;
  box-shadow: 0 8px 26px rgba(101, 63, 56, 0.07);
}
.nail-key-message span {
  display: block;
  margin-bottom: 6px;
  color: var(--nail);
  font-size: 10px;
  font-weight: 900;
}
.nail-key-message strong {
  color: #5a413c;
  font-size: 14px;
  line-height: 1.8;
}
.nail-signs {
  background: #fff;
}
.nail-sign-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.nail-sign-grid article {
  padding: 27px 22px;
  border: 1px solid #eaddd7;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 9px 25px rgba(87, 58, 50, 0.055);
}
.nail-sign-grid b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--nail-soft);
  color: var(--nail);
  font-size: 16px;
}
.nail-sign-grid h3 {
  margin: 0 0 10px;
  color: var(--nail-dark);
  font-size: 16px;
  line-height: 1.55;
}
.nail-sign-grid p {
  margin: 0;
  color: #78615b;
  font-size: 12.5px;
  line-height: 1.8;
}
.nail-caution {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 25px;
  padding: 22px 28px;
  border-radius: 15px;
  background: #fff4f1;
}
.nail-caution > div {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nail-caution span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c75e5d;
  color: #fff;
  font-weight: 900;
}
.nail-caution h3 {
  margin: 0;
  color: #873f3f;
  font-size: 15px;
}
.nail-caution p {
  margin: 0;
  color: #755a56;
  font-size: 12.5px;
  line-height: 1.8;
}
.nail-treatment {
  background: linear-gradient(135deg, #68453d, #8b584a);
}
.nail-treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.nail-treatment-grid article {
  position: relative;
  padding: 30px 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #fff;
}
.nail-treatment-grid article > b {
  color: #dca693;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.nail-treatment-grid h3 {
  margin: 8px 0 15px;
  color: var(--nail-dark);
  font-size: 18px;
  line-height: 1.55;
}
.nail-treatment-grid p {
  margin: 0 0 17px;
  color: #755d57;
  font-size: 13px;
  line-height: 1.85;
}
.nail-treatment-grid ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nail-treatment-grid li {
  position: relative;
  padding-left: 17px;
  color: #765b54;
  font-size: 11.5px;
}
.nail-treatment-grid li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nail);
}
.nail-procedure {
  margin-top: 22px;
  padding: 32px 28px 28px;
  border-radius: 18px;
  background: #fff9f6;
}
.nail-procedure-heading {
  max-width: 680px;
  margin: 0 auto 25px;
  text-align: center;
}
.nail-procedure-heading > span {
  color: var(--nail);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.nail-procedure-heading h3 {
  margin: 6px 0 9px;
  color: var(--nail-dark);
  font-size: 22px;
}
.nail-procedure-heading p {
  margin: 0;
  color: #806860;
  font-size: 11.5px;
  line-height: 1.8;
}
.nail-procedure-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nail-procedure-list li {
  overflow: hidden;
  border: 1px solid #e9d9d2;
  border-radius: 15px;
  background: #fff;
}
.nail-procedure-list figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  margin: 0;
  padding: 12px;
  background: #f7eeea;
}
.nail-procedure-list img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.nail-procedure-list li > div {
  padding: 20px 19px 22px;
}
.nail-procedure-list li > div > b {
  color: var(--nail);
  font-size: 9px;
  letter-spacing: 0.12em;
}
.nail-procedure-list h4 {
  margin: 5px 0 9px;
  color: var(--nail-dark);
  font-size: 16px;
}
.nail-procedure-list p {
  margin: 0;
  color: #755d57;
  font-size: 12px;
  line-height: 1.8;
}
.nail-aftercare {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
  padding: 34px 36px 35px;
  overflow: hidden;
  border: 1px solid #f1cdbf;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff9f5, #fce9e1);
  color: var(--nail-dark);
  box-shadow: 0 14px 32px rgba(55, 27, 22, 0.2);
}
.nail-aftercare::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, #e99a82, #b66b57);
}
.nail-aftercare span {
  display: inline-flex;
  width: max-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--nail);
  color: #fff;
  font-size: 9px;
}
.nail-aftercare h3 {
  margin: 11px 0 0;
  color: var(--nail-dark);
  font-size: 21px;
  line-height: 1.55;
}
.nail-aftercare p {
  margin: 0;
  padding-left: 30px;
  border-left: 1px solid #e3b9aa;
  color: #6f554e;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 2;
}
.nail-cases {
  background: var(--nail-cream);
}
.nail-case-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.nail-case-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid #e9d9d2;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(92, 55, 45, 0.06);
}
.nail-case-copy {
  padding: 34px 31px;
}
.nail-case-copy > span {
  color: var(--nail);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.nail-case-copy h3 {
  margin: 9px 0 14px;
  color: var(--nail-dark);
  font-size: 20px;
  line-height: 1.55;
}
.nail-case-copy p {
  margin: 0;
  color: #765e57;
  font-size: 13px;
  line-height: 1.9;
}
.nail-case-images {
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  gap: 10px;
  align-items: center;
  padding: 22px;
  background: #f4e8e3;
}
.nail-case-images > span {
  color: var(--nail);
  font-size: 20px;
  text-align: center;
}
.nail-case-images figure {
  margin: 0;
}
.nail-case-images figure > div {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  background: #e6d8d3;
}
.nail-case-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nail-case-images b {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 8px;
  border-radius: 20px;
  background: rgba(73, 52, 48, 0.78);
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.1em;
}
.nail-case-images figcaption {
  margin-top: 7px;
  color: #765e57;
  font-size: 10px;
  text-align: center;
}
.nail-case-note {
  max-width: 800px;
  margin: 20px auto 0;
  color: #846e67;
  font-size: 10.5px;
  line-height: 1.8;
  text-align: center;
}
.nail-blog-link {
  text-align: center;
}
.nail-blog-link a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 13px 22px;
  border: 1px solid #ddbeb2;
  border-radius: 999px;
  color: var(--nail-dark);
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
}
.nail-blog-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #ebcfc5;
  transition: transform 0.2s ease;
}
.nail-blog-link a:hover span {
  transform: translateX(3px);
}
.nail-flow {
  background: linear-gradient(180deg, #fff, #f8efeb);
}
.nail-flow .treatment-flow-list li > div {
  border-color: #e8d8d1;
}
.nail-flow .treatment-flow-list li:not(:last-child)::before {
  background: linear-gradient(#b66b57, #e9a0a6);
}
.nail-visit {
  padding: 58px 0;
  background: var(--nail-dark);
  color: #fff;
}
.nail-visit-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 60px;
  align-items: center;
}
.nail-visit h2 {
  margin: 7px 0 12px;
  font-size: 26px;
}
.nail-visit p {
  margin: 0;
  color: #f0e3de;
  font-size: 13px;
  line-height: 1.9;
}
.nail-visit-grid > a {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  border-radius: 15px;
  background: #fff;
  color: var(--nail-dark);
  text-decoration: none;
  flex-direction: column;
}
.nail-visit-grid > a span {
  font-size: 10px;
  font-weight: 800;
}
.nail-visit-grid > a strong {
  margin: 3px 0;
  font-size: 25px;
  letter-spacing: 0.04em;
}
.nail-visit-grid > a small {
  color: #8a6b63;
  font-size: 9px;
}
.nail-faq {
  background: #fff;
}
@media (max-width: 760px) {
  .nail-container {
    width: min(100% - 36px, 1040px);
  }
  .nail-section {
    padding: 62px 0;
  }
  .nail-heading {
    margin-bottom: 28px;
  }
  .nail-heading h2 {
    font-size: 25px;
  }
  .nail-heading p {
    font-size: 13px;
  }
  .nail-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .nail-intro h2 {
    font-size: 28px;
  }
  .nail-intro-copy > p {
    font-size: 14px;
  }
  .nail-sign-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nail-caution {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
  .nail-treatment-grid {
    grid-template-columns: 1fr;
  }
  .nail-procedure {
    padding: 27px 18px 20px;
  }
  .nail-procedure-heading h3 {
    font-size: 20px;
  }
  .nail-procedure-list {
    grid-template-columns: 1fr;
  }
  .nail-procedure-list li {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
  }
  .nail-procedure-list figure {
    height: 100%;
    min-height: 155px;
  }
  .nail-procedure-list li > div {
    padding: 20px 18px;
  }
  .nail-aftercare {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 29px 24px 27px;
  }
  .nail-aftercare h3 {
    font-size: 19px;
  }
  .nail-aftercare p {
    padding: 17px 0 0;
    border-top: 1px solid #e3b9aa;
    border-left: 0;
    font-size: 12.5px;
  }
  .nail-case-card {
    grid-template-columns: 1fr;
  }
  .nail-case-copy {
    padding: 27px 23px;
  }
  .nail-case-images {
    padding: 16px;
  }
  .nail-case-images figure > div {
    height: 180px;
  }
  .nail-visit-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .nail-visit h2 {
    font-size: 23px;
  }
}
@media (max-width: 480px) {
  .nail-sign-grid {
    grid-template-columns: 1fr;
  }
  .nail-procedure-list li {
    grid-template-columns: 120px minmax(0, 1fr);
  }
  .nail-procedure-list figure {
    min-height: 145px;
    padding: 8px;
  }
  .nail-case-images {
    grid-template-columns: 1fr 18px 1fr;
    gap: 5px;
  }
  .nail-case-images figure > div {
    height: 145px;
  }
  .nail-case-copy h3 {
    font-size: 18px;
  }
}
.traffic-cases {
  background: #fff8f6;
}
.traffic-case-grid {
  display: grid;
  gap: 22px;
}
.traffic-case-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  overflow: hidden;
  border: 1px solid #ecdde0;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(99, 67, 76, 0.07);
}
.traffic-case-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #e8dadd;
}
.traffic-case-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #f1e8e8;
}
.traffic-case-gallery img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
}
.traffic-case-gallery figcaption {
  position: absolute;
  right: 9px;
  bottom: 9px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(43, 60, 63, 0.76);
  color: #fff;
  font-size: 9px;
}
.traffic-case-copy {
  display: flex;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
}
.traffic-case-copy > span {
  color: #c45e67;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.traffic-case-copy h3 {
  margin: 5px 0 12px;
  color: #405d62;
  font-size: 19px;
  line-height: 1.6;
}
.traffic-case-copy p {
  margin: 0;
  color: #6e7275;
  font-size: 12.5px;
  line-height: 1.9;
}
.traffic-case-copy a {
  display: inline-flex;
  margin-top: 17px;
  align-self: flex-start;
  color: #33818a;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 900;
}
.traffic-case-copy a::after {
  content: "→";
  margin-left: 7px;
}
.traffic-case-note {
  margin: 15px 0 0;
  color: #8a777c;
  font-size: 10.5px;
  text-align: center;
}
.traffic-insurance {
  background: #3d636a;
  color: #fff;
}
.traffic-insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.traffic-insurance-grid > div {
  padding: 27px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}
.traffic-insurance-grid b {
  color: #96d8dd;
  font-size: 13px;
}
.traffic-insurance-grid h3 {
  margin: 5px 0 9px;
  color: #fff;
  font-size: 17px;
}
.traffic-insurance-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  line-height: 1.8;
}
.traffic-bring {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 5px 32px;
  margin-top: 18px;
  padding: 26px 28px;
  border-radius: 18px;
  background: #fff;
  color: #566b70;
}
.traffic-bring h3 {
  grid-row: 1/3;
  margin: 0;
  color: #3f6369;
  font-size: 18px;
}
.traffic-bring ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 19px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.traffic-bring li {
  font-size: 12px;
}
.traffic-bring li::before {
  content: "✓";
  margin-right: 6px;
  color: #d66d75;
  font-weight: 900;
}
.traffic-bring p {
  margin: 10px 0 0;
  color: #778185;
  font-size: 10.5px;
  line-height: 1.75;
}
.traffic-contact {
  padding: 40px 0;
  background: linear-gradient(135deg, #e6f5f6, #fbe8e9);
}
.traffic-contact .traffic-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.traffic-contact h2 {
  margin: 4px 0 5px;
  color: #3b5f65;
  font-size: 23px;
}
.traffic-contact p {
  margin: 0;
  color: #6d7477;
  font-size: 12.5px;
}
.traffic-contact a {
  display: inline-flex;
  min-width: 220px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: #47a5af;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(54, 137, 146, 0.2);
}
.traffic-contact a small {
  font-size: 9px;
  letter-spacing: 0.1em;
}
.traffic-faq {
  background: #f7f2f1;
}
.traffic-faq .hiro-faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}
.traffic-source-note {
  max-width: 860px;
  margin: 22px auto 0;
  padding: 17px 20px;
  border: 1px solid #ddd7d8;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.66);
}
.traffic-source-note strong {
  color: #526e73;
  font-size: 11px;
}
.traffic-source-note p {
  margin: 4px 0 0;
  color: #817579;
  font-size: 10.5px;
  line-height: 1.8;
}

/* Keep the knee and lower body unobstructed in the joint-story photograph. */
.joint-story-photo figcaption {
  right: auto;
  left: 18px;
}
@media (max-width: 480px) {
  .joint-story-photo figcaption {
    right: auto;
    left: 12px;
  }
}
@media (max-width: 900px) {
  .traffic-page [id] {
    scroll-margin-top: 170px;
  }
  .traffic-section {
    padding: 62px 0;
  }
  .traffic-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .traffic-symptom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .traffic-case-card {
    grid-template-columns: 1fr;
  }
  .traffic-case-gallery img {
    height: 280px;
  }
  .traffic-bring {
    grid-template-columns: 1fr;
  }
  .traffic-bring h3 {
    grid-row: auto;
  }
  .traffic-contact .traffic-container {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .traffic-container {
    width: calc(100% - 28px);
  }
  .traffic-section {
    padding: 50px 0;
  }
  .traffic-heading {
    text-align: left;
  }
  .traffic-heading h2 {
    font-size: 23px;
  }
  .traffic-heading > p {
    font-size: 12.5px;
  }
  .traffic-intro h2 {
    font-size: 25px;
  }
  .traffic-intro p {
    font-size: 14px;
  }
  .traffic-urgent {
    padding: 23px 20px;
  }
  .traffic-symptom-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .traffic-symptom-grid article {
    padding: 21px 19px;
  }
  .traffic-note {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 21px 19px;
  }
  .traffic-care-grid {
    grid-template-columns: 1fr;
  }
  .traffic-care-grid article {
    padding: 27px 22px;
  }
  .traffic-care-grid h3 {
    font-size: 20px;
  }
  .traffic-case-gallery img {
    height: 200px;
  }
  .traffic-case-copy {
    padding: 23px 20px;
  }
  .traffic-insurance-grid {
    grid-template-columns: 1fr;
  }
  .traffic-insurance-grid > div {
    padding: 22px 20px;
  }
  .traffic-bring {
    padding: 22px 20px;
  }
  .traffic-bring ul {
    display: grid;
    gap: 6px;
  }
  .traffic-contact a {
    width: 100%;
    min-width: 0;
  }
  .traffic-case-note {
    text-align: left;
  }
}

/* Shared link from a case, patient story, or column to its source article. */
.article-source-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b85464 !important;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none !important;
}
.article-source-link::after {
  content: none !important;
}
.article-source-link > .article-source-arrow {
  display: inline-flex;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f6dde0;
  color: #b85464;
  font-size: 11.5px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.article-source-link:hover > .article-source-arrow {
  transform: translateX(3px);
}
.article-source-title-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.article-source-title-link:hover {
  color: inherit;
  opacity: 0.72;
}

/* Medical laser page */
.laser-page {
  --laser: #70b9d2;
  --laser-dark: #315f70;
  --laser-deep: #274b59;
  --laser-soft: #eaf7fb;
  --laser-pale: #f7fcfe;
  overflow: hidden;
  background: #fff;
  color: #405f6b;
}
.laser-container {
  width: min(1040px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}
.laser-section {
  padding: 84px 0;
}
.laser-page [id] {
  scroll-margin-top: 174px;
}
.laser-kicker,
.laser-heading > span {
  display: block;
  margin-bottom: 9px;
  color: var(--laser);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.laser-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.laser-heading h2 {
  position: relative;
  margin: 0 0 17px;
  padding-bottom: 17px;
  color: var(--laser-dark);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
}
.laser-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 52px;
  height: 3px;
  border-radius: 99px;
  background: var(--laser);
  content: "";
  transform: translateX(-50%);
}
.laser-heading > p {
  margin: 0;
  color: #667b83;
  font-size: 14px;
  line-height: 1.9;
}
.laser-heading-light > span {
  color: #bceaf6;
}
.laser-heading-light h2 {
  color: #fff;
}
.laser-heading-light > p {
  color: rgba(255, 255, 255, 0.76);
}
.laser-intro {
  background: linear-gradient(145deg, #f8fdfe 0%, #e9f7fb 100%);
}
.laser-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 65px;
  align-items: center;
}
.laser-intro-copy h2 {
  margin: 0 0 22px;
  color: var(--laser-dark);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 32px;
  line-height: 1.55;
}
.laser-intro-copy > p {
  margin: 0 0 14px;
  color: #5d737c;
  font-size: 15px;
  line-height: 2;
}
.laser-key-message {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 4px solid var(--laser);
  border-radius: 0 14px 14px 0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(53, 111, 130, 0.08);
}
.laser-key-message strong,
.laser-key-message span {
  display: block;
}
.laser-key-message strong {
  margin-bottom: 6px;
  color: var(--laser-dark);
  font-size: 14px;
}
.laser-key-message span {
  color: #6e8188;
  font-size: 12px;
  line-height: 1.8;
}
.laser-intro-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 27px;
  border: 1px solid rgba(112, 185, 210, 0.35);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 50px rgba(49, 95, 112, 0.1);
}
.laser-intro-visual::before {
  position: absolute;
  top: -13px;
  right: 31px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(112, 185, 210, 0.3);
  border-radius: 50%;
  content: "";
}
.laser-intro-visual > div {
  display: grid;
  grid-template-columns: 43px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid #dceef3;
}
.laser-intro-visual > div:last-child {
  border-bottom: 0;
}
.laser-intro-visual b {
  display: flex;
  grid-row: 1/4;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--laser);
  color: #fff;
  font-size: 11px;
}
.laser-intro-visual span {
  color: #8aa5af;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.laser-intro-visual strong {
  color: var(--laser-dark);
  font-size: 17px;
}
.laser-intro-visual p {
  margin: 2px 0 0;
  color: #70838a;
  font-size: 11px;
}
.laser-device {
  background: #fff;
}
.laser-device-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: center;
  padding: 34px;
  border: 1px solid #d6eaf1;
  border-radius: 25px;
  background: linear-gradient(135deg, #f1fafd, #fff);
  box-shadow: 0 16px 45px rgba(44, 91, 107, 0.08);
}
.laser-device-photo {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  text-align: center;
}
.laser-device-photo img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: contain;
}
.laser-device-photo figcaption {
  margin-top: 8px;
  color: #82939a;
  font-size: 9px;
  line-height: 1.6;
}
.laser-device-benefits > span {
  color: var(--laser);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.laser-device-benefits h3 {
  margin: 8px 0 17px;
  color: var(--laser-dark);
  font-size: 24px;
  line-height: 1.55;
}
.laser-device-benefits p {
  margin: 0 0 13px;
  color: #607780;
  font-size: 13px;
  line-height: 1.95;
}
.laser-better-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.laser-better-grid article {
  display: flex;
  gap: 14px;
  padding: 22px 19px;
  border: 1px solid #d9ebf1;
  border-radius: 16px;
  background: #fff;
}
.laser-better-grid b {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--laser);
  color: #fff;
  font-size: 9px;
}
.laser-better-grid h3 {
  margin: 0 0 7px;
  color: var(--laser-dark);
  font-size: 14px;
  line-height: 1.55;
}
.laser-better-grid p {
  margin: 0;
  color: #6a7d84;
  font-size: 11px;
  line-height: 1.8;
}
.laser-approval-note {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 25px;
  border-radius: 15px;
  background: #f1f7f9;
}
.laser-approval-note strong {
  color: var(--laser-dark);
  font-size: 13px;
}
.laser-approval-note p {
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid #c9e0e7;
  color: #6b7d84;
  font-size: 11.5px;
  line-height: 1.85;
}
.laser-history {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 37px;
  align-items: center;
  margin-top: 45px;
  padding: 32px 38px;
  border: 1px solid #d8e8ed;
  border-radius: 22px;
  background: #fff;
}
.laser-history > figure {
  margin: 0;
  text-align: center;
}
.laser-history > figure img {
  display: block;
  width: auto;
  height: 220px;
  margin: auto;
  object-fit: contain;
}
.laser-history figcaption {
  margin-top: 8px;
  color: #80939a;
  font-size: 9px;
}
.laser-history > div > span {
  color: var(--laser);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.laser-history h3 {
  margin: 6px 0 10px;
  color: var(--laser-dark);
  font-size: 19px;
  line-height: 1.6;
}
.laser-history > div > p {
  margin: 0;
  color: #6b7c83;
  font-size: 12.5px;
  line-height: 1.9;
}
.laser-cooling-mini {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 17px;
  padding: 12px 15px;
  border-radius: 13px;
  background: var(--laser-soft);
}
.laser-cooling-mini img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.laser-cooling-mini p {
  margin: 0;
  color: #668089;
  font-size: 11px;
  line-height: 1.7;
}
.laser-cooling-mini strong {
  display: block;
  color: var(--laser-dark);
  font-size: 12px;
}
.laser-legacy-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(230px, 0.6fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  border-radius: 18px;
  background: #f4fafc;
}
.laser-legacy-gallery figure {
  margin: 0;
  text-align: center;
}
.laser-legacy-gallery img {
  display: block;
  width: 100%;
  height: 150px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}
.laser-legacy-gallery figcaption {
  margin-top: 7px;
  color: #829299;
  font-size: 9px;
}
.laser-menu {
  background: var(--laser-pale);
}
.laser-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.laser-menu-grid article {
  display: flex;
  padding: 30px 25px;
  border: 1px solid #d9eaf0;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(46, 94, 111, 0.06);
  flex-direction: column;
}
.laser-menu-grid article > span {
  color: var(--laser);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.laser-menu-grid h3 {
  margin: 8px 0 13px;
  color: var(--laser-dark);
  font-size: 19px;
}
.laser-menu-grid p {
  margin: 0 0 15px;
  color: #677b83;
  font-size: 12.5px;
  line-height: 1.85;
}
.laser-menu-grid ul {
  display: flex;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  flex-direction: column;
}
.laser-menu-grid li {
  position: relative;
  padding-left: 17px;
  color: #607984;
  font-size: 11px;
}
.laser-menu-grid li::before {
  position: absolute;
  top: 0.55em;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--laser);
  content: "";
}
.laser-menu-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--laser-dark);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.laser-menu-grid a span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--laser-soft);
  transition: transform 0.2s ease;
}
.laser-menu-grid a:hover span {
  transform: translateX(3px);
}
.laser-diagnosis {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 27px;
  border-radius: 17px;
  background: #e6f4f8;
}
.laser-diagnosis > div {
  display: flex;
  gap: 12px;
  align-items: center;
}
.laser-diagnosis span {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--laser-dark);
  color: #fff;
  font-weight: 900;
}
.laser-diagnosis h3 {
  margin: 0;
  color: var(--laser-dark);
  font-size: 14px;
  line-height: 1.55;
}
.laser-diagnosis p {
  margin: 0;
  color: #607781;
  font-size: 12px;
  line-height: 1.85;
}
.laser-flow {
  background: #fff;
}
.laser-flow .treatment-flow-list {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}
.laser-care {
  background: linear-gradient(145deg, var(--laser-deep), #39778c);
}
.laser-care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}
.laser-care-grid article {
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: #fff;
}
.laser-care-grid article > span {
  color: var(--laser);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.laser-care-grid h3 {
  margin: 7px 0 14px;
  color: var(--laser-dark);
  font-size: 18px;
}
.laser-care-grid ul {
  display: flex;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
}
.laser-care-grid li {
  position: relative;
  padding-left: 18px;
  color: #63777f;
  font-size: 12px;
}
.laser-care-grid li::before {
  position: absolute;
  left: 0;
  color: var(--laser);
  content: "✓";
  font-weight: 900;
}
.laser-care-grid .laser-risk {
  grid-column: 1/-1;
  background: #eaf7fb;
}
.laser-risk p {
  margin: 0;
  color: #5d747d;
  font-size: 12.5px;
  line-height: 1.9;
}
.laser-risk strong {
  display: block;
  margin-top: 13px;
  color: #9b4d55;
  font-size: 11.5px;
}
.laser-related {
  background: #f6fbfd;
}
.laser-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.laser-related-grid > a {
  display: block;
  padding: 25px 23px;
  border: 1px solid #d9e9ee;
  border-radius: 17px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.laser-related-grid > a:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 28px rgba(44, 91, 107, 0.1);
}
.laser-related-grid span {
  color: var(--laser);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.laser-related-grid h3 {
  margin: 7px 0 10px;
  color: var(--laser-dark);
  font-size: 16px;
}
.laser-related-grid p {
  margin: 0 0 14px;
  color: #6b7d84;
  font-size: 11.5px;
  line-height: 1.8;
}
.laser-related-grid b {
  color: var(--laser-dark);
  font-size: 10.5px;
}
.laser-related .case-disclaimer {
  max-width: 820px;
  margin: 22px auto 0;
}
.laser-contact {
  padding: 52px 0;
  background: #dff2f8;
}
.laser-contact-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 55px;
  align-items: center;
}
.laser-contact-grid > div > span {
  color: var(--laser);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.laser-contact h2 {
  margin: 6px 0 10px;
  color: var(--laser-dark);
  font-size: 25px;
}
.laser-contact p {
  margin: 0;
  color: #617983;
  font-size: 12.5px;
  line-height: 1.85;
}
.laser-contact a {
  display: flex;
  padding: 18px 24px;
  align-items: center;
  border-radius: 16px;
  background: var(--laser-dark);
  color: #fff;
  text-decoration: none;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(39, 75, 89, 0.2);
}
.laser-contact a small {
  color: #c6eaf4;
  font-size: 9px;
}
.laser-contact a strong {
  font-size: 24px;
  letter-spacing: 0.04em;
}
.laser-contact a span {
  font-size: 9px;
}
.laser-faq {
  background: #fff;
}
.laser-faq .hiro-faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}
.laser-source-note {
  max-width: 860px;
  margin: 23px auto 0;
  padding: 19px 21px;
  border: 1px solid #d4e5ea;
  border-radius: 14px;
  background: #f7fbfc;
}
.laser-source-note strong {
  color: var(--laser-dark);
  font-size: 11px;
}
.laser-source-note p {
  margin: 5px 0 10px;
  color: #718187;
  font-size: 10.5px;
  line-height: 1.8;
}
.laser-source-note a {
  display: inline-flex;
  gap: 6px;
  color: var(--laser-dark);
  font-size: 10.5px;
  font-weight: 900;
  text-decoration: none;
}
@media (max-width: 820px) {
  .laser-page [id] {
    scroll-margin-top: 170px;
  }
  .laser-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .laser-device-panel {
    grid-template-columns: 1fr;
  }
  .laser-better-grid {
    grid-template-columns: 1fr;
  }
  .laser-menu-grid {
    grid-template-columns: 1fr;
  }
  .laser-menu-grid article {
    padding: 27px 24px;
  }
  .laser-history {
    grid-template-columns: 180px 1fr;
  }
  .laser-diagnosis {
    grid-template-columns: 1fr;
  }
  .laser-related-grid {
    grid-template-columns: 1fr;
  }
  .laser-contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (max-width: 600px) {
  .laser-container {
    width: calc(100% - 30px);
  }
  .laser-section {
    padding: 58px 0;
  }
  .laser-heading {
    margin-bottom: 30px;
    text-align: left;
  }
  .laser-heading h2 {
    font-size: 22px;
  }
  .laser-heading h2::after {
    left: 0;
    transform: none;
  }
  .laser-heading > p {
    font-size: 13px;
  }
  .laser-intro-copy h2 {
    font-size: 27px;
  }
  .laser-intro-copy > p {
    font-size: 14px;
  }
  .laser-intro-visual {
    padding: 22px 19px;
    border-radius: 20px;
  }
  .laser-device-panel {
    gap: 22px;
    padding: 18px;
    border-radius: 20px;
  }
  .laser-device-photo {
    padding: 8px;
  }
  .laser-device-photo img {
    height: 270px;
  }
  .laser-device-benefits h3 {
    font-size: 21px;
  }
  .laser-device-benefits p {
    font-size: 12.5px;
  }
  .laser-better-grid article {
    padding: 19px 17px;
  }
  .laser-approval-note {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
  .laser-approval-note p {
    padding: 12px 0 0;
    border-top: 1px solid #c9e0e7;
    border-left: 0;
  }
  .laser-history {
    grid-template-columns: 1fr;
    padding: 27px 22px;
  }
  .laser-history > figure img {
    height: 205px;
  }
  .laser-history h3 {
    font-size: 17px;
  }
  .laser-legacy-gallery {
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .laser-legacy-gallery img {
    height: auto;
    max-height: 180px;
  }
  .laser-diagnosis {
    padding: 21px 19px;
  }
  .laser-care-grid {
    grid-template-columns: 1fr;
  }
  .laser-care-grid .laser-risk {
    grid-column: auto;
  }
  .laser-contact h2 {
    font-size: 22px;
  }
  .laser-contact-grid {
    gap: 20px;
  }
  .laser-cooling-mini {
    align-items: flex-start;
  }
}

/* Medical laser page: pink theme */
:root {
  --hiro-pink-primary: #ed9296;
  --hiro-pink-action: #d9757e;
  --hiro-pink-action-hover: #c96570;
  --hiro-pink-heading: #704852;
  --hiro-pink-body: #79636a;
  --hiro-pink-muted: #8a737a;
  --hiro-pink-soft: #fcebed;
  --hiro-pink-pale: #fff8f8;
  --hiro-pink-wash: #fff7f7;
  --hiro-pink-border: #f0d5da;
  --hiro-pink-shadow: rgba(151, 70, 84, 0.09);
}
.laser-page {
  --laser: var(--hiro-pink-primary);
  --laser-dark: var(--hiro-pink-heading);
  --laser-soft: var(--hiro-pink-soft);
  --laser-pale: var(--hiro-pink-pale);
  color: #634f57;
}
.laser-intro {
  background: linear-gradient(145deg, #fff9f9 0%, var(--hiro-pink-soft) 100%);
}
.laser-intro-copy > p,
.laser-key-message span,
.laser-heading > p,
.laser-device-benefits p,
.laser-better-grid p,
.laser-menu-grid p,
.laser-menu-grid li,
.laser-diagnosis p,
.laser-care-grid li,
.laser-risk p,
.laser-related-grid p,
.laser-contact p,
.laser-source-note p {
  color: var(--hiro-pink-body);
}
.laser-key-message {
  box-shadow: 0 10px 28px var(--hiro-pink-shadow);
}
.laser-intro-visual {
  border-color: #f0c7cb;
  box-shadow: 0 20px 50px var(--hiro-pink-shadow);
}
.laser-intro-visual::before {
  border-color: #eab8bd;
}
.laser-intro-visual > div {
  border-bottom-color: #f1dadd;
}
.laser-intro-visual span {
  color: #aa858d;
}
.laser-device-panel {
  border-color: var(--hiro-pink-border);
  background: linear-gradient(135deg, #fff3f4, #fff);
  box-shadow: 0 16px 45px var(--hiro-pink-shadow);
}
.laser-better-grid article,
.laser-menu-grid article,
.laser-related-grid > a {
  border-color: #f0d8db;
}
.laser-approval-note,
.laser-diagnosis,
.laser-care-grid .laser-risk {
  background: var(--hiro-pink-soft);
}
.laser-menu {
  background: var(--hiro-pink-pale);
}
.laser-menu-grid article {
  box-shadow: 0 10px 30px rgba(116, 67, 79, 0.06);
}
.laser-care {
  background: linear-gradient(
    145deg,
    var(--hiro-pink-pale),
    var(--hiro-pink-soft)
  );
}
.laser-care .laser-heading-light > span {
  color: var(--laser);
}
.laser-care .laser-heading-light h2 {
  color: var(--laser-dark);
}
.laser-care .laser-heading-light > p {
  color: var(--hiro-pink-body);
}
.laser-care-grid article {
  border-color: var(--hiro-pink-border);
  box-shadow: 0 8px 24px rgba(116, 67, 79, 0.05);
}
.laser-related {
  background: var(--hiro-pink-pale);
}
.laser-related-grid > a:hover {
  box-shadow: 0 13px 28px var(--hiro-pink-shadow);
}
.laser-contact {
  background: var(--hiro-pink-soft);
}
.laser-contact a {
  background: var(--hiro-pink-action);
  box-shadow: 0 10px 24px rgba(171, 75, 88, 0.18);
}
.laser-contact a:hover {
  background: var(--hiro-pink-action-hover);
}
.laser-source-note {
  border-color: #ecd9dc;
  background: #fff9f9;
}
.laser-case {
  background: var(--hiro-pink-pale);
}
.laser-case-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  overflow: hidden;
  border: 1px solid #f0d8db;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(116, 67, 79, 0.08);
}
.laser-case-copy {
  display: flex;
  padding: 35px 31px;
  flex-direction: column;
  justify-content: center;
}
.laser-case-copy > span {
  color: var(--laser);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.laser-case-copy h3 {
  margin: 7px 0 18px;
  color: var(--laser-dark);
  font-size: 21px;
  line-height: 1.55;
}
.laser-case-copy dl {
  margin: 0 0 18px;
}
.laser-case-copy dl > div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #f1e1e3;
}
.laser-case-copy dt {
  color: var(--laser);
  font-size: 10px;
  font-weight: 900;
}
.laser-case-copy dd {
  margin: 0;
  color: #69575e;
  font-size: 11.5px;
}
.laser-case-copy > p {
  margin: 0 0 18px;
  color: #75636a;
  font-size: 12.5px;
  line-height: 1.9;
}
.laser-case-photos {
  display: grid;
  grid-template-columns: 1fr 26px 1fr;
  gap: 10px;
  align-items: center;
  padding: 25px;
  background: #fcebed;
}
.laser-case-photos > span {
  color: var(--laser-dark);
  font-size: 20px;
  text-align: center;
}
.laser-case-photos figure {
  margin: 0;
}
.laser-case-photos figure > div {
  position: relative;
  height: 370px;
  overflow: hidden;
  border-radius: 14px;
  background: #e9dadd;
}
.laser-case-photos img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.laser-case-photos b {
  position: absolute;
  right: 9px;
  bottom: 9px;
  padding: 5px 9px;
  border-radius: 99px;
  background: rgba(84, 48, 57, 0.78);
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.laser-case-photos figcaption {
  margin-top: 7px;
  color: #765f67;
  font-size: 10px;
  text-align: center;
}
.laser-case .case-disclaimer {
  max-width: 820px;
  margin: 20px auto 0;
}
.laser-related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.laser-menu {
  background: #fff;
}
.laser-flow {
  background: var(--hiro-pink-pale);
}
.laser-care {
  background: #fff;
}
.laser-related {
  background: var(--hiro-pink-pale);
}
.laser-intro-visual::before {
  content: none;
}

/* Laser facial page */
.facial-page {
  --facial: var(--hiro-pink-primary);
  --facial-action: var(--hiro-pink-action);
  --facial-heading: var(--hiro-pink-heading);
  --facial-body: var(--hiro-pink-body);
  --facial-soft: var(--hiro-pink-soft);
  --facial-pale: var(--hiro-pink-pale);
  overflow: hidden;
  background: #fff;
  color: var(--facial-body);
}
.facial-container {
  width: min(1040px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}
.facial-section {
  padding: 82px 0;
}
.facial-page [id] {
  scroll-margin-top: 174px;
}
.facial-kicker,
.facial-heading > span {
  display: block;
  margin-bottom: 9px;
  color: var(--facial);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.facial-heading {
  max-width: 750px;
  margin: 0 auto 39px;
  text-align: center;
}
.facial-heading h2 {
  position: relative;
  margin: 0 0 17px;
  padding-bottom: 17px;
  color: var(--facial-heading);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
}
.facial-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 52px;
  height: 3px;
  border-radius: 99px;
  background: var(--facial);
  content: "";
  transform: translateX(-50%);
}
.facial-heading > p {
  margin: 0;
  color: var(--facial-body);
  font-size: 14px;
  line-height: 1.9;
}
.facial-intro {
  background: linear-gradient(145deg, #fff9f9, var(--facial-soft));
}
.facial-intro-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.94fr) minmax(0, 1.06fr);
  gap: 58px;
  align-items: center;
}
.facial-intro-photo {
  position: relative;
  height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 25px;
  background: #f6ecee;
  box-shadow: 0 18px 45px var(--hiro-pink-shadow);
}
.facial-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.facial-intro-photo figcaption {
  position: absolute;
  bottom: 16px;
  left: 17px;
  padding: 7px 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--facial-heading);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.facial-intro-copy h2 {
  margin: 0 0 21px;
  color: var(--facial-heading);
  font-size: 31px;
  line-height: 1.55;
}
.facial-intro-copy > p {
  margin: 0 0 14px;
  color: var(--facial-body);
  font-size: 14.5px;
  line-height: 2;
}
.facial-message {
  margin-top: 23px;
  padding: 20px 22px;
  border: 1px solid var(--hiro-pink-border);
  border-left: 4px solid var(--facial);
  border-radius: 0 14px 14px 0;
  background: #fff;
}
.facial-message strong,
.facial-message span {
  display: block;
}
.facial-message strong {
  margin-bottom: 6px;
  color: var(--facial-heading);
  font-size: 13.5px;
}
.facial-message span {
  color: var(--hiro-pink-muted);
  font-size: 11.5px;
  line-height: 1.8;
}
.facial-concerns {
  background: #fff;
}
.facial-concern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.facial-concern-grid article {
  padding: 26px 23px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 17px;
  background: #fffcfc;
  box-shadow: 0 8px 24px rgba(151, 70, 84, 0.05);
}
.facial-concern-grid b {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--facial-soft);
  color: #c45f69;
  font-size: 11px;
}
.facial-concern-grid h3 {
  margin: 13px 0 8px;
  color: var(--facial-heading);
  font-size: 16px;
}
.facial-concern-grid p {
  margin: 0;
  color: var(--facial-body);
  font-size: 12px;
  line-height: 1.8;
}
.facial-assessment {
  background: var(--facial-pale);
}
.facial-assessment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.facial-assessment-grid article {
  padding: 28px 24px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 18px;
  background: #fff;
}
.facial-assessment-grid span {
  color: var(--facial);
  font-size: 10px;
  font-weight: 900;
}
.facial-assessment-grid h3 {
  margin: 7px 0 10px;
  color: var(--facial-heading);
  font-size: 17px;
}
.facial-assessment-grid p {
  margin: 0;
  color: var(--facial-body);
  font-size: 12.5px;
  line-height: 1.85;
}
.facial-not-suitable {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 27px;
  align-items: center;
  margin-top: 20px;
  padding: 23px 26px;
  border: 1px solid #efd8db;
  border-radius: 16px;
  background: var(--facial-soft);
}
.facial-not-suitable strong,
.facial-not-suitable span {
  display: block;
}
.facial-not-suitable strong {
  color: var(--facial-heading);
  font-size: 14px;
}
.facial-not-suitable span {
  margin-top: 4px;
  color: #c45f69;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.facial-not-suitable p {
  margin: 0;
  padding-left: 25px;
  border-left: 1px solid #e5c9cd;
  color: var(--facial-body);
  font-size: 12px;
  line-height: 1.85;
}
.facial-treatment {
  background: #fff;
}
.facial-treatment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.94fr);
  gap: 55px;
  align-items: center;
}
.facial-treatment-grid > div:first-child h2 {
  margin: 0 0 18px;
  color: var(--facial-heading);
  font-size: 28px;
  line-height: 1.55;
}
.facial-treatment-grid > div:first-child p {
  margin: 0 0 13px;
  color: var(--facial-body);
  font-size: 13.5px;
  line-height: 1.95;
}
.facial-treatment-grid > div:first-child > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: #b45964;
  font-size: 11.5px;
  font-weight: 900;
  text-decoration: none;
}
.facial-treatment-grid > div:first-child > a span {
  display: flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--facial-soft);
}
.facial-treatment-points {
  display: flex;
  gap: 11px;
  padding: 25px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 21px;
  background: var(--facial-pale);
  flex-direction: column;
}
.facial-treatment-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 13px;
  background: #fff;
}
.facial-treatment-points b {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--facial-soft);
  color: #c45f69;
  font-size: 13px;
}
.facial-treatment-points h3 {
  margin: 0 0 3px;
  color: var(--facial-heading);
  font-size: 15px;
}
.facial-treatment-points p {
  margin: 0;
  color: var(--facial-body);
  font-size: 11px;
  line-height: 1.7;
}
.facial-cases {
  background: var(--facial-pale);
}
.facial-case-list {
  display: flex;
  gap: 22px;
  flex-direction: column;
}
.facial-case-card {
  display: grid;
  grid-template-columns: minmax(310px, 0.76fr) minmax(0, 1.24fr);
  overflow: hidden;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(151, 70, 84, 0.07);
}
.facial-case-card:nth-child(even) .facial-case-copy {
  order: 2;
}
.facial-case-card:nth-child(even) .facial-case-photos {
  order: 1;
}
.facial-case-copy {
  display: flex;
  padding: 32px 29px;
  flex-direction: column;
  justify-content: center;
}
.facial-case-copy > span {
  color: var(--facial);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.facial-case-copy h3 {
  margin: 7px 0 15px;
  color: var(--facial-heading);
  font-size: 19px;
  line-height: 1.55;
}
.facial-case-copy dl {
  margin: 0 0 15px;
}
.facial-case-copy dl > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid #f1e1e3;
}
.facial-case-copy dt {
  color: #c45f69;
  font-size: 10px;
  font-weight: 900;
}
.facial-case-copy dd {
  margin: 0;
  color: #6d5a61;
  font-size: 11px;
}
.facial-case-copy > p {
  margin: 0 0 16px;
  color: var(--facial-body);
  font-size: 12px;
  line-height: 1.85;
}
.facial-case-photos {
  display: grid;
  grid-template-columns: 1fr 25px 1fr;
  gap: 9px;
  align-items: center;
  padding: 23px;
  background: var(--facial-soft);
}
.facial-case-photos > span {
  color: var(--facial-heading);
  font-size: 19px;
  text-align: center;
}
.facial-case-photos figure {
  margin: 0;
}
.facial-case-photos figure > div {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 13px;
  background: #eadde0;
}
.facial-case-photos img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.facial-case-photos b {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 9px;
  border-radius: 99px;
  background: rgba(84, 48, 57, 0.76);
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.facial-case-photos figcaption {
  margin-top: 6px;
  color: #765f67;
  font-size: 9.5px;
  text-align: center;
}
.facial-flow {
  background: #fff;
}
.facial-flow .treatment-flow-list {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}
.facial-care {
  background: var(--facial-pale);
}
.facial-care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.facial-care-grid article {
  padding: 28px 26px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 18px;
  background: #fff;
}
.facial-care-grid article > span {
  color: var(--facial);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.facial-care-grid h3 {
  margin: 7px 0 14px;
  color: var(--facial-heading);
  font-size: 18px;
}
.facial-care-grid ul {
  display: flex;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
}
.facial-care-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--facial-body);
  font-size: 12px;
}
.facial-care-grid li::before {
  position: absolute;
  left: 0;
  color: var(--facial);
  content: "✓";
  font-weight: 900;
}
.facial-care-grid .facial-risks {
  grid-column: 1/-1;
  background: var(--facial-soft);
}
.facial-risks p {
  margin: 0;
  color: var(--facial-body);
  font-size: 12.5px;
  line-height: 1.9;
}
.facial-contact {
  padding: 50px 0;
  background: #fff;
}
.facial-contact-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 55px;
  align-items: center;
}
.facial-contact-grid > div > span {
  color: var(--facial);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.facial-contact h2 {
  margin: 6px 0 10px;
  color: var(--facial-heading);
  font-size: 25px;
}
.facial-contact p {
  margin: 0;
  color: var(--facial-body);
  font-size: 12.5px;
  line-height: 1.85;
}
.facial-contact a {
  display: flex;
  padding: 18px 24px;
  align-items: center;
  border-radius: 16px;
  background: var(--hiro-pink-action);
  color: #fff;
  text-decoration: none;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(171, 75, 88, 0.18);
}
.facial-contact a:hover {
  background: var(--hiro-pink-action-hover);
}
.facial-contact a small {
  font-size: 9px;
}
.facial-contact a strong {
  font-size: 24px;
  letter-spacing: 0.04em;
}
.facial-contact a span {
  font-size: 9px;
}
.facial-faq {
  background: var(--facial-pale);
}
.facial-faq .hiro-faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .facial-page [id] {
    scroll-margin-top: 170px;
  }
  .facial-intro-grid,
  .facial-treatment-grid {
    grid-template-columns: 1fr;
  }
  .facial-intro-photo {
    height: 430px;
  }
  .facial-concern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .facial-assessment-grid {
    grid-template-columns: 1fr;
  }
  .facial-case-card {
    grid-template-columns: 1fr;
  }
  .facial-case-card:nth-child(even) .facial-case-copy,
  .facial-case-card:nth-child(even) .facial-case-photos {
    order: initial;
  }
  .facial-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .facial-container {
    width: calc(100% - 30px);
  }
  .facial-section {
    padding: 58px 0;
  }
  .facial-heading {
    margin-bottom: 29px;
    text-align: left;
  }
  .facial-heading h2 {
    font-size: 22px;
  }
  .facial-heading h2::after {
    left: 0;
    transform: none;
  }
  .facial-heading > p {
    font-size: 13px;
  }
  .facial-intro-photo {
    height: 355px;
  }
  .facial-intro-copy h2 {
    font-size: 26px;
  }
  .facial-intro-copy > p {
    font-size: 14px;
  }
  .facial-concern-grid {
    grid-template-columns: 1fr;
  }
  .facial-concern-grid article {
    padding: 22px 20px;
  }
  .facial-not-suitable {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 21px 19px;
  }
  .facial-not-suitable p {
    padding: 12px 0 0;
    border-top: 1px solid #e5c9cd;
    border-left: 0;
  }
  .facial-treatment-grid {
    gap: 27px;
  }
  .facial-treatment-grid > div:first-child h2 {
    font-size: 23px;
  }
  .facial-treatment-points {
    padding: 17px;
  }
  .facial-case-copy {
    padding: 27px 23px;
  }
  .facial-case-photos {
    grid-template-columns: 1fr 18px 1fr;
    gap: 5px;
    padding: 14px;
  }
  .facial-case-photos figure > div {
    height: 255px;
  }
  .facial-care-grid {
    grid-template-columns: 1fr;
  }
  .facial-care-grid .facial-risks {
    grid-column: auto;
  }
  .facial-contact h2 {
    font-size: 22px;
  }
  .facial-contact a {
    width: 100%;
  }
}
@media (max-width: 820px) {
  .laser-case-card {
    grid-template-columns: 1fr;
  }
  .laser-case-copy {
    padding: 29px 25px;
  }
  .laser-case-photos figure > div {
    height: 330px;
  }
}
@media (max-width: 520px) {
  .laser-case-photos {
    grid-template-columns: 1fr 18px 1fr;
    gap: 5px;
    padding: 14px;
  }
  .laser-case-photos figure > div {
    height: 255px;
  }
  .laser-case-copy h3 {
    font-size: 19px;
  }
  .laser-related-grid {
    grid-template-columns: 1fr;
  }
}

/* Botulinum toxin treatment page */
.botox-page {
  --botox: var(--hiro-pink-primary);
  --botox-action: var(--hiro-pink-action);
  --botox-heading: var(--hiro-pink-heading);
  --botox-body: var(--hiro-pink-body);
  --botox-soft: var(--hiro-pink-soft);
  --botox-pale: var(--hiro-pink-pale);
  overflow: hidden;
  background: #fff;
  color: var(--botox-body);
}
.botox-container {
  width: min(1040px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}
.botox-section {
  padding: 82px 0;
}
.botox-page [id] {
  scroll-margin-top: 174px;
}
.botox-kicker,
.botox-heading > span,
.botox-face-map > span,
.botox-contact-grid > div > span {
  display: block;
  margin-bottom: 9px;
  color: var(--botox);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.botox-heading {
  max-width: 750px;
  margin: 0 auto 39px;
  text-align: center;
}
.botox-heading h2 {
  position: relative;
  margin: 0 0 17px;
  padding-bottom: 17px;
  color: var(--botox-heading);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
}
.botox-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 52px;
  height: 3px;
  border-radius: 99px;
  background: var(--botox);
  content: "";
  transform: translateX(-50%);
}
.botox-heading > p {
  margin: 0;
  color: var(--botox-body);
  font-size: 14px;
  line-height: 1.9;
}
.botox-intro {
  background: linear-gradient(145deg, #fff9f9, var(--botox-soft));
}
.botox-intro-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(0, 1.06fr);
  gap: 55px;
  align-items: center;
}
.botox-intro-photo {
  position: relative;
  height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 25px;
  background: #f6ecee;
  box-shadow: 0 18px 45px var(--hiro-pink-shadow);
}
.botox-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}
.botox-intro-photo figcaption {
  position: absolute;
  bottom: 16px;
  left: 17px;
  padding: 7px 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--botox-heading);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.botox-intro .botox-heading {
  max-width: none;
  margin: 0 0 24px;
  text-align: left;
}
.botox-intro .botox-heading h2::after {
  left: 0;
  transform: none;
}
.botox-purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
}
.botox-purpose-grid article {
  padding: 22px 23px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px var(--hiro-pink-shadow);
}
.botox-purpose-grid article > span {
  color: var(--botox);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.botox-purpose-grid h3 {
  margin: 6px 0 8px;
  color: var(--botox-heading);
  font-size: 20px;
}
.botox-purpose-grid p {
  margin: 0 0 12px;
  color: var(--botox-body);
  font-size: 13px;
  line-height: 1.9;
}
.botox-purpose-grid strong {
  display: block;
  padding-top: 10px;
  border-top: 1px solid #f2e0e3;
  color: #b45964;
  font-size: 11.5px;
}
.botox-face {
  background: #fff;
}
.botox-face-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 58px;
  align-items: center;
}
.botox-face-copy h2 {
  margin: 0 0 20px;
  color: var(--botox-heading);
  font-size: 29px;
  line-height: 1.55;
}
.botox-face-copy > p {
  margin: 0 0 14px;
  color: var(--botox-body);
  font-size: 13.5px;
  line-height: 1.95;
}
.botox-face-message {
  margin-top: 22px;
  padding: 19px 21px;
  border-left: 4px solid var(--botox);
  border-radius: 0 14px 14px 0;
  background: var(--botox-pale);
}
.botox-face-message strong,
.botox-face-message span {
  display: block;
}
.botox-face-message strong {
  margin-bottom: 6px;
  color: var(--botox-heading);
  font-size: 13px;
}
.botox-face-message span {
  color: var(--hiro-pink-muted);
  font-size: 11.5px;
  line-height: 1.8;
}
.botox-face-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  padding: 25px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 21px;
  background: var(--botox-pale);
}
.botox-face-map > span {
  grid-column: 1/-1;
  margin: 0 0 3px;
}
.botox-face-map article {
  padding: 19px 17px;
  border-radius: 14px;
  background: #fff;
}
.botox-face-map b {
  color: #b45964;
  font-size: 15px;
}
.botox-face-map p {
  margin: 6px 0 0;
  color: var(--botox-body);
  font-size: 11px;
  line-height: 1.7;
}
.botox-sweat {
  background: var(--botox-pale);
}
.botox-sweat-feature {
  display: grid;
  grid-template-columns: minmax(350px, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 15px 40px var(--hiro-pink-shadow);
}
.botox-sweat-feature figure {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #f0e5e7;
}
.botox-sweat-feature figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}
.botox-sweat-feature > div {
  display: flex;
  padding: 38px 36px;
  justify-content: center;
  flex-direction: column;
}
.botox-sweat-feature > div > span {
  color: var(--botox);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.botox-sweat-feature h3 {
  margin: 7px 0 16px;
  color: var(--botox-heading);
  font-size: 22px;
  line-height: 1.55;
}
.botox-sweat-feature p {
  margin: 0 0 17px;
  color: var(--botox-body);
  font-size: 12.5px;
  line-height: 1.9;
}
.botox-sweat-feature ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.botox-sweat-feature li {
  padding: 9px 11px;
  border-radius: 9px;
  background: var(--botox-soft);
  color: #765a63;
  font-size: 10.5px;
  font-weight: 700;
}
.botox-sweat-feature li::before {
  margin-right: 6px;
  color: var(--botox);
  content: "✓";
}
.botox-sweat-limit {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 19px;
  padding: 22px 25px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 16px;
  background: var(--botox-soft);
}
.botox-sweat-limit strong {
  color: var(--botox-heading);
  font-size: 13.5px;
}
.botox-sweat-limit p {
  margin: 0;
  padding-left: 26px;
  border-left: 1px solid #e5c9cd;
  color: var(--botox-body);
  font-size: 11.5px;
  line-height: 1.85;
}
.botox-assessment {
  background: #fff;
}
.botox-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.botox-check-grid article {
  padding: 27px 23px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 18px;
  background: #fffcfc;
}
.botox-check-grid b {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--botox-soft);
  color: #c45f69;
  font-size: 12px;
}
.botox-check-grid h3 {
  margin: 13px 0 8px;
  color: var(--botox-heading);
  font-size: 16px;
}
.botox-check-grid p {
  margin: 0;
  color: var(--botox-body);
  font-size: 12px;
  line-height: 1.85;
}
.botox-no-treatment {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 20px;
  padding: 24px 26px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 17px;
  background: var(--botox-soft);
}
.botox-no-treatment strong,
.botox-no-treatment span {
  display: block;
}
.botox-no-treatment strong {
  color: var(--botox-heading);
  font-size: 14px;
}
.botox-no-treatment span {
  margin-top: 4px;
  color: #c45f69;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.botox-no-treatment p {
  margin: 0;
  padding-left: 26px;
  border-left: 1px solid #e5c9cd;
  color: var(--botox-body);
  font-size: 12px;
  line-height: 1.85;
}
.botox-flow {
  background: var(--botox-pale);
}
.botox-flow .treatment-flow-list {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}
.botox-risks {
  background: #fff;
}
.botox-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.botox-risk-grid article {
  padding: 27px 23px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 18px;
  background: #fffcfc;
}
.botox-risk-grid article > span {
  color: var(--botox);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.botox-risk-grid h3 {
  margin: 7px 0 14px;
  color: var(--botox-heading);
  font-size: 16px;
}
.botox-risk-grid ul {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
}
.botox-risk-grid li {
  position: relative;
  padding-left: 17px;
  color: var(--botox-body);
  font-size: 11.5px;
}
.botox-risk-grid li::before {
  position: absolute;
  left: 0;
  color: var(--botox);
  content: "—";
  font-weight: 900;
}
.botox-aftercare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 18px;
}
.botox-aftercare > div,
.botox-aftercare aside {
  padding: 27px 25px;
  border-radius: 18px;
}
.botox-aftercare > div {
  border: 1px solid var(--hiro-pink-border);
  background: var(--botox-soft);
}
.botox-aftercare aside {
  border: 1px solid #e8bcc2;
  background: #fff4f4;
}
.botox-aftercare h3 {
  margin: 0 0 10px;
  color: var(--botox-heading);
  font-size: 17px;
}
.botox-aftercare p {
  margin: 0;
  color: var(--botox-body);
  font-size: 12px;
  line-height: 1.9;
}
.botox-aftercare aside > span {
  display: block;
  margin-bottom: 5px;
  color: #c45f69;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.botox-contact {
  padding: 50px 0;
  background: var(--botox-soft);
}
.botox-contact-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 55px;
  align-items: center;
}
.botox-contact h2 {
  margin: 6px 0 10px;
  color: var(--botox-heading);
  font-size: 25px;
}
.botox-contact p {
  margin: 0;
  color: var(--botox-body);
  font-size: 12.5px;
  line-height: 1.85;
}
.botox-contact a {
  display: flex;
  padding: 18px 24px;
  align-items: center;
  border-radius: 16px;
  background: var(--botox-action);
  color: #fff;
  text-decoration: none;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(171, 75, 88, 0.18);
}
.botox-contact a:hover {
  background: var(--hiro-pink-action-hover);
}
.botox-contact a small,
.botox-contact a span {
  font-size: 9px;
}
.botox-contact a strong {
  font-size: 24px;
  letter-spacing: 0.04em;
}
.botox-faq {
  background: #fff;
}
.botox-faq .hiro-faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .botox-page [id] {
    scroll-margin-top: 170px;
  }
  .botox-intro-grid,
  .botox-face-grid,
  .botox-sweat-feature {
    grid-template-columns: 1fr;
  }
  .botox-intro-photo {
    height: 430px;
  }
  .botox-sweat-feature figure {
    height: 430px;
    min-height: 0;
  }
  .botox-check-grid,
  .botox-risk-grid {
    grid-template-columns: 1fr;
  }
  .botox-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .botox-container {
    width: calc(100% - 30px);
  }
  .botox-section {
    padding: 58px 0;
  }
  .botox-heading {
    margin-bottom: 29px;
    text-align: left;
  }
  .botox-heading h2 {
    font-size: 22px;
  }
  .botox-heading h2::after {
    left: 0;
    transform: none;
  }
  .botox-heading > p {
    font-size: 13px;
  }
  .botox-intro-photo {
    height: 280px;
    border-radius: 18px;
  }
  .botox-intro-photo img {
    object-position: 48% center;
  }
  .botox-purpose-grid {
    grid-template-columns: 1fr;
  }
  .botox-purpose-grid article {
    padding: 25px 21px;
  }
  .botox-sweat-limit,
  .botox-no-treatment {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 21px 19px;
  }
  .botox-sweat-limit p,
  .botox-no-treatment p {
    padding: 12px 0 0;
    border-top: 1px solid #e5c9cd;
    border-left: 0;
  }
  .botox-face-grid {
    gap: 27px;
  }
  .botox-face-copy h2 {
    font-size: 24px;
  }
  .botox-face-map {
    padding: 17px;
  }
  .botox-sweat-feature figure {
    height: 330px;
  }
  .botox-sweat-feature > div {
    padding: 27px 22px;
  }
  .botox-sweat-feature h3 {
    font-size: 20px;
  }
  .botox-sweat-feature ul {
    grid-template-columns: 1fr;
  }
  .botox-aftercare {
    grid-template-columns: 1fr;
  }
  .botox-contact h2 {
    font-size: 22px;
  }
  .botox-contact a {
    width: 100%;
  }
}

/* Placenta injection page */
.placenta-page {
  --placenta: var(--hiro-pink-primary);
  --placenta-action: var(--hiro-pink-action);
  --placenta-heading: var(--hiro-pink-heading);
  --placenta-body: var(--hiro-pink-body);
  --placenta-soft: var(--hiro-pink-soft);
  --placenta-pale: var(--hiro-pink-pale);
  overflow: hidden;
  background: #fff;
  color: var(--placenta-body);
}
.placenta-container {
  width: min(1040px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}
.placenta-section {
  padding: 82px 0;
}
.placenta-page [id] {
  scroll-margin-top: 174px;
}
.placenta-kicker,
.placenta-heading > span,
.placenta-related-grid > div > span,
.placenta-contact-grid > div > span {
  display: block;
  margin-bottom: 9px;
  color: var(--placenta);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.placenta-heading {
  max-width: 750px;
  margin: 0 auto 39px;
  text-align: center;
}
.placenta-heading h2 {
  position: relative;
  margin: 0 0 17px;
  padding-bottom: 17px;
  color: var(--placenta-heading);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
}
.placenta-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 52px;
  height: 3px;
  border-radius: 99px;
  background: var(--placenta);
  content: "";
  transform: translateX(-50%);
}
.placenta-heading > p {
  margin: 0;
  color: var(--placenta-body);
  font-size: 14px;
  line-height: 1.9;
}
.placenta-intro {
  background: linear-gradient(145deg, #fff9f9, var(--placenta-soft));
}
.placenta-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 62px;
  align-items: center;
}
.placenta-intro-copy h2 {
  margin: 0 0 21px;
  color: var(--placenta-heading);
  font-size: 31px;
  line-height: 1.55;
}
.placenta-intro-copy > p {
  margin: 0 0 14px;
  color: var(--placenta-body);
  font-size: 14px;
  line-height: 2;
}
.placenta-intro-message {
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid var(--hiro-pink-border);
  border-left: 4px solid var(--placenta);
  border-radius: 0 14px 14px 0;
  background: #fff;
}
.placenta-intro-message strong,
.placenta-intro-message span {
  display: block;
}
.placenta-intro-message strong {
  margin-bottom: 6px;
  color: var(--placenta-heading);
  font-size: 13.5px;
}
.placenta-intro-message span {
  color: var(--hiro-pink-muted);
  font-size: 11.5px;
  line-height: 1.8;
}
.placenta-intro-visual {
  margin: 0;
  padding: 30px 27px 22px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 17px 42px var(--hiro-pink-shadow);
}
.placenta-intro-visual > div {
  display: flex;
  height: 330px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff8f5, #fcebed);
}
.placenta-intro-visual img {
  display: block;
  width: auto;
  height: 88%;
  max-width: 80%;
  image-rendering: auto;
}
.placenta-intro-visual figcaption {
  margin-top: 16px;
  color: var(--hiro-pink-muted);
  font-size: 10px;
  text-align: center;
}
.placenta-purpose {
  background: #fff;
}
.placenta-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.placenta-purpose-grid article {
  position: relative;
  padding: 31px 29px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 20px;
  background: #fffcfc;
}
.placenta-purpose-grid article > b {
  display: flex;
  width: 44px;
  height: 44px;
  margin-bottom: 17px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--placenta-soft);
  color: #c45f69;
  font-size: 12px;
}
.placenta-purpose-grid article > span {
  color: var(--placenta);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.placenta-purpose-grid h3 {
  margin: 7px 0 13px;
  color: var(--placenta-heading);
  font-size: 18px;
  line-height: 1.6;
}
.placenta-purpose-grid p {
  margin: 0 0 18px;
  color: var(--placenta-body);
  font-size: 12.5px;
  line-height: 1.9;
}
.placenta-purpose-grid strong {
  display: block;
  padding-top: 13px;
  border-top: 1px solid #f1dfe2;
  color: #b45964;
  font-size: 11px;
}
.placenta-purpose-note {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 19px;
  padding: 23px 26px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 17px;
  background: var(--placenta-soft);
}
.placenta-purpose-note strong {
  color: var(--placenta-heading);
  font-size: 14px;
  line-height: 1.8;
}
.placenta-purpose-note p {
  margin: 0;
  padding-left: 27px;
  border-left: 1px solid #e5c9cd;
  color: var(--placenta-body);
  font-size: 12px;
  line-height: 1.85;
}
.placenta-assessment {
  background: var(--placenta-pale);
}
.placenta-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.placenta-check-grid article {
  padding: 27px 23px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 18px;
  background: #fff;
}
.placenta-check-grid b {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--placenta-soft);
  color: #c45f69;
  font-size: 12px;
}
.placenta-check-grid h3 {
  margin: 13px 0 8px;
  color: var(--placenta-heading);
  font-size: 16px;
}
.placenta-check-grid p {
  margin: 0;
  color: var(--placenta-body);
  font-size: 12px;
  line-height: 1.85;
}
.placenta-consent {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 20px;
  padding: 25px 27px;
  border: 1px solid #edc7cc;
  border-radius: 18px;
  background: #fff0f1;
}
.placenta-consent span,
.placenta-consent strong {
  display: block;
}
.placenta-consent span {
  margin-bottom: 5px;
  color: #c45f69;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.placenta-consent strong {
  color: var(--placenta-heading);
  font-size: 14px;
  line-height: 1.75;
}
.placenta-consent p {
  margin: 0;
  padding-left: 27px;
  border-left: 1px solid #e4c2c7;
  color: #725d64;
  font-size: 12px;
  line-height: 1.9;
}
.placenta-flow {
  background: #fff;
}
.placenta-flow .treatment-flow-list {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}
.placenta-safety {
  background: var(--placenta-pale);
}
.placenta-safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.placenta-safety-grid article {
  padding: 27px 23px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 18px;
  background: #fff;
}
.placenta-safety-grid article > span {
  color: var(--placenta);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.placenta-safety-grid h3 {
  margin: 7px 0 14px;
  color: var(--placenta-heading);
  font-size: 16px;
}
.placenta-safety-grid ul {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
}
.placenta-safety-grid li {
  position: relative;
  padding-left: 17px;
  color: var(--placenta-body);
  font-size: 11.5px;
}
.placenta-safety-grid li::before {
  position: absolute;
  left: 0;
  color: var(--placenta);
  content: "—";
  font-weight: 900;
}
.placenta-safety-grid p {
  margin: 0;
  color: var(--placenta-body);
  font-size: 11.5px;
  line-height: 1.85;
}
.placenta-urgent {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 25px;
  align-items: center;
  margin-top: 18px;
  padding: 25px 27px;
  border: 1px solid #eabdc3;
  border-radius: 18px;
  background: #fff0f1;
}
.placenta-urgent > span {
  color: #c45f69;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.placenta-urgent > div {
  padding-left: 25px;
  border-left: 1px solid #e3bec4;
}
.placenta-urgent h3 {
  margin: 0 0 7px;
  color: var(--placenta-heading);
  font-size: 15px;
}
.placenta-urgent p {
  margin: 0;
  color: var(--placenta-body);
  font-size: 11.5px;
  line-height: 1.85;
}
.placenta-related {
  padding: 48px 0;
  background: #fff;
}
.placenta-related-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 55px;
  align-items: center;
}
.placenta-related h2 {
  margin: 5px 0 9px;
  color: var(--placenta-heading);
  font-size: 23px;
}
.placenta-related p {
  margin: 0;
  color: var(--placenta-body);
  font-size: 12px;
  line-height: 1.85;
}
.placenta-related a {
  display: flex;
  padding: 20px 23px;
  border: 1px solid var(--hiro-pink-border);
  border-radius: 16px;
  background: var(--placenta-pale);
  color: var(--placenta-heading);
  text-decoration: none;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.placenta-related a:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 27px var(--hiro-pink-shadow);
}
.placenta-related a strong {
  font-size: 14px;
}
.placenta-related a span {
  margin-top: 6px;
  color: #b45964;
  font-size: 10px;
  font-weight: 900;
}
.placenta-contact {
  padding: 50px 0;
  background: var(--placenta-soft);
}
.placenta-contact-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 55px;
  align-items: center;
}
.placenta-contact h2 {
  margin: 6px 0 10px;
  color: var(--placenta-heading);
  font-size: 25px;
}
.placenta-contact p {
  margin: 0;
  color: var(--placenta-body);
  font-size: 12.5px;
  line-height: 1.85;
}
.placenta-contact a {
  display: flex;
  padding: 18px 24px;
  align-items: center;
  border-radius: 16px;
  background: var(--placenta-action);
  color: #fff;
  text-decoration: none;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(171, 75, 88, 0.18);
}
.placenta-contact a:hover {
  background: var(--hiro-pink-action-hover);
}
.placenta-contact a small,
.placenta-contact a span {
  font-size: 9px;
}
.placenta-contact a strong {
  font-size: 24px;
  letter-spacing: 0.04em;
}
.placenta-faq {
  background: #fff;
}
.placenta-faq .hiro-faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .placenta-page [id] {
    scroll-margin-top: 170px;
  }
  .placenta-intro-grid {
    grid-template-columns: 1fr;
  }
  .placenta-intro-visual {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }
  .placenta-check-grid,
  .placenta-safety-grid {
    grid-template-columns: 1fr;
  }
  .placenta-related-grid,
  .placenta-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .placenta-container {
    width: calc(100% - 30px);
  }
  .placenta-section {
    padding: 58px 0;
  }
  .placenta-heading {
    margin-bottom: 29px;
    text-align: left;
  }
  .placenta-heading h2 {
    font-size: 22px;
  }
  .placenta-heading h2::after {
    left: 0;
    transform: none;
  }
  .placenta-heading > p {
    font-size: 13px;
  }
  .placenta-intro-grid {
    gap: 31px;
  }
  .placenta-intro-copy h2 {
    font-size: 26px;
  }
  .placenta-intro-copy > p {
    font-size: 13.5px;
  }
  .placenta-intro-visual {
    padding: 22px 20px 17px;
  }
  .placenta-intro-visual > div {
    height: 280px;
  }
  .placenta-purpose-grid {
    grid-template-columns: 1fr;
  }
  .placenta-purpose-grid article {
    padding: 25px 21px;
  }
  .placenta-purpose-note,
  .placenta-consent,
  .placenta-urgent {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 21px 19px;
  }
  .placenta-purpose-note p,
  .placenta-consent p,
  .placenta-urgent > div {
    padding: 12px 0 0;
    border-top: 1px solid #e5c9cd;
    border-left: 0;
  }
  .placenta-related h2,
  .placenta-contact h2 {
    font-size: 21px;
  }
  .placenta-contact a {
    width: 100%;
  }
}

.ed-causes article:nth-child(1) .ed-cause-icon {
  background: #e5f4f2;
  color: #3e9a91;
}
.ed-causes article:nth-child(2) .ed-cause-icon {
  background: #e8f1f8;
  color: #5389ae;
}
.ed-causes article:nth-child(3) .ed-cause-icon {
  background: #fff2d9;
  color: #b88432;
}
.ed-causes article:nth-child(4) .ed-cause-icon {
  background: #fce9ec;
  color: #cf727c;
}

.edaga-page .edaga-intro {
  background: linear-gradient(145deg, #fff9f9, var(--hiro-pink-soft));
}
.edaga-page .edaga-intro .edaga-kicker {
  color: var(--hiro-pink-primary);
}
.edaga-page .edaga-intro-copy h2 {
  color: var(--hiro-pink-heading);
}
.edaga-page .edaga-intro-copy > p {
  color: var(--hiro-pink-body);
}
.edaga-page .edaga-intro-message {
  border-color: var(--hiro-pink-border);
  border-left-color: var(--hiro-pink-primary);
}
.edaga-page .edaga-intro-message strong {
  color: var(--hiro-pink-heading);
}
.edaga-page .edaga-intro-message span {
  color: var(--hiro-pink-muted);
}
.edaga-page .edaga-intro-photo {
  background: #f6ecee;
  box-shadow: 0 18px 45px var(--hiro-pink-shadow);
}
.edaga-page .edaga-intro-photo figcaption {
  color: var(--hiro-pink-heading);
}
.edaga-page .ed-treatment .edaga-heading > span,
.edaga-page .ed-treatment .ed-causes > span,
.edaga-page .ed-treatment .ed-medication > span {
  color: var(--hiro-pink-primary);
}
.edaga-page .ed-treatment .edaga-heading h2,
.edaga-page .ed-treatment .ed-causes h3,
.edaga-page .ed-treatment .ed-medication h3,
.edaga-page .ed-treatment .ed-causes b,
.edaga-page .ed-treatment .ed-medication > strong {
  color: var(--hiro-pink-heading);
}
.edaga-page .ed-treatment .edaga-heading h2::after {
  background: var(--hiro-pink-primary);
}
.edaga-page .ed-treatment .edaga-heading > p,
.edaga-page .ed-treatment .ed-causes p,
.edaga-page .ed-treatment .ed-medication > p {
  color: var(--hiro-pink-body);
}
.edaga-page .ed-treatment .ed-causes,
.edaga-page .ed-treatment .ed-medication {
  border-color: var(--hiro-pink-border);
}
.edaga-page .ed-treatment .ed-causes {
  background: #fffcfc;
}
.edaga-page .ed-treatment .ed-medication {
  background: var(--hiro-pink-pale);
}
.edaga-page .ed-treatment .ed-causes article {
  border-color: #f2e1e4;
}
.edaga-page .ed-treatment .ed-causes p {
  border-top-color: #f1e1e3;
}
.edaga-page .ed-treatment .ed-medication li {
  color: #765d65;
}
.edaga-page .ed-treatment .ed-medication li::before {
  color: var(--hiro-pink-primary);
}
.edaga-page .ed-treatment .ed-medication > strong {
  border-top-color: var(--hiro-pink-border);
}
.edaga-page .aga-areas b {
  background: var(--hiro-pink-soft);
  color: var(--hiro-pink-heading);
}
.edaga-page .edaga-medication-banner {
  display: flex;
  width: 100%;
  gap: 8px;
  margin: 0 0 13px;
  padding: 9px 13px;
  align-items: center;
  border-radius: 10px;
  background: var(--hiro-pink-action);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 7px 18px rgba(171, 75, 88, 0.18);
}
.edaga-page .edaga-medication-banner::before {
  display: flex;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--hiro-pink-action);
  content: "!";
  font-size: 11px;
  font-weight: 900;
}

@media (max-width: 600px) {
  .edaga-page .ed-causes article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
    gap: 0 11px;
    padding: 15px 14px;
  }
  .edaga-page .ed-cause-icon {
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 11px;
  }
  .edaga-page .ed-cause-icon svg {
    width: 22px;
    height: 22px;
  }
  .edaga-page .ed-causes b {
    display: flex;
    min-height: 38px;
    align-items: center;
    font-size: 12.5px;
  }
  .edaga-page .ed-causes p {
    grid-column: 1/-1;
    margin-top: 9px;
    padding-top: 8px;
    line-height: 1.65;
  }
}

@media (max-width: 600px) {
  .edaga-page .edaga-check-grid,
  .botox-page .botox-check-grid,
  .placenta-page .placenta-check-grid,
  .facial-page .facial-concern-grid,
  .traffic-page .traffic-symptom-grid,
  .joint-page .joint-symptom-grid,
  .nail-page .nail-sign-grid {
    gap: 9px;
  }
  .edaga-page .edaga-check-grid article,
  .botox-page .botox-check-grid article,
  .placenta-page .placenta-check-grid article,
  .facial-page .facial-concern-grid article,
  .traffic-page .traffic-symptom-grid article,
  .joint-page .joint-symptom-grid article,
  .nail-page .nail-sign-grid article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
    gap: 0 11px;
    padding: 15px 14px;
  }
  .edaga-page .edaga-check-grid b,
  .botox-page .botox-check-grid b,
  .placenta-page .placenta-check-grid b,
  .facial-page .facial-concern-grid b,
  .traffic-page .traffic-symptom-grid b,
  .joint-page .joint-symptom-grid b,
  .nail-page .nail-sign-grid b {
    display: flex;
    width: 38px;
    min-width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
  }
  .edaga-page .edaga-check-grid h3,
  .botox-page .botox-check-grid h3,
  .placenta-page .placenta-check-grid h3,
  .facial-page .facial-concern-grid h3,
  .traffic-page .traffic-symptom-grid h3,
  .joint-page .joint-symptom-grid h3,
  .nail-page .nail-sign-grid h3 {
    display: flex;
    min-height: 38px;
    margin: 0;
    align-items: center;
    font-size: 14px;
  }
  .edaga-page .edaga-check-grid p,
  .botox-page .botox-check-grid p,
  .placenta-page .placenta-check-grid p,
  .facial-page .facial-concern-grid p,
  .traffic-page .traffic-symptom-grid p,
  .joint-page .joint-symptom-grid p,
  .nail-page .nail-sign-grid p {
    grid-column: 1/-1;
    margin-top: 9px;
    padding-top: 8px;
    border-top: 1px solid rgba(95, 125, 130, 0.12);
    line-height: 1.7;
  }
}

.edaga-page b.edaga-medication-banner {
  font-size: 13px;
}
.edaga-page div.edaga-intro-message {
  border: 1px solid var(--hiro-pink-border);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(151, 70, 84, 0.06);
}
.edaga-blog-card {
  max-width: 900px;
  margin: 20px auto 0;
  padding: 22px;
  border: 1px solid var(--edaga-border);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(50, 92, 101, 0.07);
}
.edaga-blog-card > div {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.edaga-blog-card > div > span {
  color: var(--edaga);
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.edaga-blog-card h3 {
  margin: 6px 0 10px;
  color: var(--edaga-dark);
  font-size: 19px;
}
.edaga-blog-card p {
  margin: 0 0 13px;
  color: var(--edaga-body);
  font-size: 11.5px;
  line-height: 1.85;
}
.edaga-blog-card .article-source-link {
  align-self: flex-start;
}
@media (max-width: 600px) {
  .edaga-blog-card {
    margin-top: 15px;
    padding: 16px;
  }
  .edaga-blog-card h3 {
    font-size: 17px;
  }
}
@media (max-width: 900px) {
  .case-floating-link {
    right: 88px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    height: 62px;
    padding: 7px 12px 7px 7px;
    border: 3px solid #fff;
    border-radius: 31px;
    box-sizing: border-box;
  }
  .mobile-menu-float {
    right: 15px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    height: 62px;
    box-sizing: border-box;
  }
}

/* Shared faint hibiscus mark for the first overview section on treatment pages. */
#about.funryu-section,
.natsui-intro,
.traffic-intro,
.nail-intro,
.joint-intro,
.skin-intro,
.laser-intro,
.facial-intro,
.botox-intro,
.placenta-intro,
.edaga-intro,
.rehab-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
#about.funryu-section::after,
.natsui-intro::after,
.traffic-intro::after,
.nail-intro::after,
.joint-intro::after,
.skin-intro::after,
.laser-intro::after,
.facial-intro::after,
.botox-intro::after,
.placenta-intro::after,
.edaga-intro::after,
.rehab-intro::after {
  position: absolute;
  top: 50%;
  right: clamp(20px, 5vw, 90px);
  z-index: 0;
  width: clamp(230px, 25vw, 390px);
  aspect-ratio: 1;
  background: url("../img/front2026/favicon-hibiscus.png") center/contain
    no-repeat;
  content: "";
  opacity: 0.035;
  pointer-events: none;
  transform: translateY(-50%) rotate(-8deg);
}
#about.funryu-section > *,
.natsui-intro > *,
.traffic-intro > *,
.nail-intro > *,
.joint-intro > *,
.skin-intro > *,
.laser-intro > *,
.facial-intro > *,
.botox-intro > *,
.placenta-intro > *,
.edaga-intro > *,
.rehab-intro > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  #about.funryu-section::after,
  .natsui-intro::after,
  .traffic-intro::after,
  .nail-intro::after,
  .joint-intro::after,
  .skin-intro::after,
  .laser-intro::after,
  .facial-intro::after,
  .botox-intro::after,
  .placenta-intro::after,
  .edaga-intro::after,
  .rehab-intro::after {
    top: 38%;
    right: -62px;
    width: 230px;
    opacity: 0.03;
    transform: translateY(-50%) rotate(-10deg);
  }
}

/* ED and AGA treatment page */
.edaga-page {
  --edaga: #4c929d;
  --edaga-dark: #355d66;
  --edaga-deep: #294b53;
  --edaga-body: #60777d;
  --edaga-soft: #eaf5f6;
  --edaga-pale: #f5fafa;
  --edaga-border: #d7e8ea;
  --edaga-coral: #df8389;
  overflow: hidden;
  background: #fff;
  color: var(--edaga-body);
}
.edaga-container {
  width: min(1040px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}
.edaga-section {
  padding: 82px 0;
}
.edaga-page [id] {
  scroll-margin-top: 174px;
}
.edaga-kicker,
.edaga-heading > span,
.edaga-contact-grid > div > span {
  display: block;
  margin-bottom: 9px;
  color: var(--edaga);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.edaga-heading {
  max-width: 760px;
  margin: 0 auto 39px;
  text-align: center;
}
.edaga-heading h2 {
  position: relative;
  margin: 0 0 17px;
  padding-bottom: 17px;
  color: var(--edaga-dark);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
}
.edaga-heading h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 52px;
  height: 3px;
  border-radius: 99px;
  background: var(--edaga);
  content: "";
  transform: translateX(-50%);
}
.edaga-heading > p {
  margin: 0;
  color: var(--edaga-body);
  font-size: 14px;
  line-height: 1.9;
}
.edaga-anchor-nav {
  border-color: var(--edaga-border);
  background: #fbfdfd;
}
.edaga-anchor-nav a {
  color: var(--edaga-dark);
}
.edaga-intro {
  background: linear-gradient(145deg, #f8fcfc, var(--edaga-soft));
}
.edaga-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 60px;
  align-items: center;
}
.edaga-intro-copy h2 {
  margin: 0 0 21px;
  color: var(--edaga-dark);
  font-size: 31px;
  line-height: 1.55;
}
.edaga-intro-copy > p {
  margin: 0 0 14px;
  color: var(--edaga-body);
  font-size: 14px;
  line-height: 2;
}
.edaga-intro-message {
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid var(--edaga-border);
  border-left: 4px solid var(--edaga);
  border-radius: 0 14px 14px 0;
  background: #fff;
}
.edaga-intro-message strong,
.edaga-intro-message span {
  display: block;
}
.edaga-intro-message strong {
  margin-bottom: 6px;
  color: var(--edaga-dark);
  font-size: 13.5px;
}
.edaga-intro-message span {
  color: #71868b;
  font-size: 11.5px;
  line-height: 1.8;
}
.edaga-intro-photo {
  position: relative;
  height: 510px;
  margin: 0;
  overflow: hidden;
  border-radius: 25px;
  background: #e6eff0;
  box-shadow: 0 18px 45px rgba(50, 92, 101, 0.12);
}
.edaga-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.edaga-intro-photo figcaption {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 7px 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--edaga-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.ed-treatment {
  background: #fff;
}
.ed-treatment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.ed-causes,
.ed-medication {
  padding: 34px 32px;
  border: 1px solid var(--edaga-border);
  border-radius: 21px;
}
.ed-causes {
  background: #fbfdfd;
}
.ed-medication {
  background: var(--edaga-pale);
}
.ed-causes > span,
.ed-medication > span,
.aga-copy > span,
.aga-medication > span,
.ed-contra > span,
.edaga-risk-grid article > span,
.edaga-urgent > span {
  color: var(--edaga);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.ed-causes h3,
.ed-medication h3,
.aga-copy h3,
.aga-medication h3 {
  margin: 7px 0 20px;
  color: var(--edaga-dark);
  font-size: 20px;
  line-height: 1.55;
}
.ed-causes > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.ed-causes article {
  display: flex;
  min-height: 190px;
  padding: 20px 18px;
  border: 1px solid #e7f0f1;
  border-radius: 13px;
  background: #fff;
  flex-direction: column;
}
.ed-cause-icon {
  display: flex;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--edaga-soft);
  color: var(--edaga);
}
.ed-cause-icon svg {
  display: block;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ed-causes b {
  display: block;
  color: var(--edaga-dark);
  font-size: 13px;
  line-height: 1.5;
}
.ed-causes p {
  margin: 8px 0 0;
  padding-top: 9px;
  border-top: 1px solid #e8f0f1;
  color: var(--edaga-body);
  font-size: 10.5px;
  line-height: 1.8;
}
.ed-medication {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  column-gap: 34px;
}
.ed-medication > span,
.ed-medication > h3,
.ed-medication > strong {
  grid-column: 1/-1;
}
.ed-medication > p {
  margin: 0;
  color: var(--edaga-body);
  font-size: 12.5px;
  line-height: 2;
}
.ed-medication ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ed-medication li {
  padding: 10px 12px;
  border-radius: 9px;
  background: #fff;
  color: #587078;
  font-size: 10.5px;
  font-weight: 700;
}
.ed-medication li::before {
  margin-right: 6px;
  color: var(--edaga);
  content: "✓";
}
.ed-medication > strong {
  display: block;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--edaga-border);
  color: var(--edaga-dark);
  font-size: 11px;
}
.ed-contra {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 27px;
  align-items: center;
  max-width: 900px;
  margin: 18px auto 0;
  padding: 25px 27px;
  border: 1px solid #eec9cc;
  border-radius: 18px;
  background: #fff4f4;
}
.ed-contra > span {
  color: #c96971;
}
.ed-contra > div {
  padding-left: 27px;
  border-left: 1px solid #e7c7ca;
}
.ed-contra h3 {
  margin: 0 0 7px;
  color: #774d54;
  font-size: 16px;
}
.ed-contra p {
  margin: 0;
  color: #765f65;
  font-size: 11.5px;
  line-height: 1.85;
}
.aga-treatment {
  background: var(--edaga-pale);
}
.aga-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 40px;
  align-items: stretch;
}
.aga-copy,
.aga-medication {
  padding: 31px 29px;
  border: 1px solid var(--edaga-border);
  border-radius: 21px;
  background: #fff;
}
.aga-copy > p,
.aga-medication > p {
  margin: 0 0 13px;
  color: var(--edaga-body);
  font-size: 12.5px;
  line-height: 1.9;
}
.aga-areas {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 20px;
}
.aga-areas span {
  grid-column: 1/-1;
  color: var(--edaga);
  font-size: 9px;
  font-weight: 900;
}
.aga-areas b {
  padding: 10px 7px;
  border-radius: 9px;
  background: var(--edaga-soft);
  color: var(--edaga-dark);
  font-size: 10px;
  text-align: center;
}
.aga-medication dl {
  margin: 18px 0;
}
.aga-medication dl > div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--edaga-border);
}
.aga-medication dt {
  color: var(--edaga);
  font-size: 10px;
  font-weight: 900;
}
.aga-medication dd {
  margin: 0;
  color: #586f75;
  font-size: 11px;
}
.aga-medication > strong {
  display: block;
  padding-top: 2px;
  color: var(--edaga-dark);
  font-size: 11px;
}
.aga-notice {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 23px 26px;
  border: 1px solid var(--edaga-border);
  border-radius: 17px;
  background: var(--edaga-soft);
}
.aga-notice strong {
  color: var(--edaga-dark);
  font-size: 14px;
}
.aga-notice p {
  margin: 0;
  padding-left: 27px;
  border-left: 1px solid #cfe2e4;
  color: var(--edaga-body);
  font-size: 12px;
  line-height: 1.85;
}
.edaga-assessment {
  background: #fff;
}
.edaga-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.edaga-check-grid article {
  padding: 27px 23px;
  border: 1px solid var(--edaga-border);
  border-radius: 18px;
  background: #fcfefe;
}
.edaga-check-grid b {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--edaga-soft);
  color: var(--edaga);
  font-size: 12px;
}
.edaga-check-grid h3 {
  margin: 13px 0 8px;
  color: var(--edaga-dark);
  font-size: 16px;
}
.edaga-check-grid p {
  margin: 0;
  color: var(--edaga-body);
  font-size: 12px;
  line-height: 1.85;
}
.edaga-no-prescription {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 19px;
  padding: 23px 26px;
  border: 1px solid var(--edaga-border);
  border-radius: 17px;
  background: var(--edaga-soft);
}
.edaga-no-prescription strong {
  color: var(--edaga-dark);
  font-size: 14px;
}
.edaga-no-prescription p {
  margin: 0;
  padding-left: 27px;
  border-left: 1px solid #cfe2e4;
  color: var(--edaga-body);
  font-size: 12px;
  line-height: 1.85;
}
.edaga-flow {
  background: var(--edaga-pale);
}
.edaga-flow .treatment-flow-list {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}
.edaga-safety {
  background: #fff;
}
.edaga-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.edaga-risk-grid article {
  padding: 27px 23px;
  border: 1px solid var(--edaga-border);
  border-radius: 18px;
  background: #fcfefe;
}
.edaga-risk-grid h3 {
  margin: 7px 0 14px;
  color: var(--edaga-dark);
  font-size: 16px;
}
.edaga-risk-grid ul {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
}
.edaga-risk-grid li {
  position: relative;
  padding-left: 17px;
  color: var(--edaga-body);
  font-size: 11.5px;
}
.edaga-risk-grid li::before {
  position: absolute;
  left: 0;
  color: var(--edaga);
  content: "—";
  font-weight: 900;
}
.edaga-urgent {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 25px;
  align-items: center;
  margin-top: 18px;
  padding: 25px 27px;
  border: 1px solid #e9c4c8;
  border-radius: 18px;
  background: #fff3f3;
}
.edaga-urgent > span {
  color: #c96971;
}
.edaga-urgent > div {
  padding-left: 25px;
  border-left: 1px solid #e2c3c7;
}
.edaga-urgent h3 {
  margin: 0 0 7px;
  color: #774d54;
  font-size: 15px;
}
.edaga-urgent p {
  margin: 0;
  color: #765f65;
  font-size: 11.5px;
  line-height: 1.85;
}
.edaga-contact {
  padding: 50px 0;
  background: var(--edaga-soft);
}
.edaga-contact-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 55px;
  align-items: center;
}
.edaga-contact h2 {
  margin: 6px 0 10px;
  color: var(--edaga-dark);
  font-size: 25px;
}
.edaga-contact p {
  margin: 0;
  color: var(--edaga-body);
  font-size: 12.5px;
  line-height: 1.85;
}
.edaga-contact a {
  display: flex;
  padding: 18px 24px;
  align-items: center;
  border-radius: 16px;
  background: var(--edaga-dark);
  color: #fff;
  text-decoration: none;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(40, 76, 84, 0.2);
}
.edaga-contact a:hover {
  background: var(--edaga-deep);
}
.edaga-contact a small,
.edaga-contact a span {
  font-size: 9px;
}
.edaga-contact a strong {
  font-size: 24px;
  letter-spacing: 0.04em;
}
.edaga-faq {
  background: var(--edaga-pale);
}
.edaga-faq .hiro-faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .edaga-page [id] {
    scroll-margin-top: 170px;
  }
  .edaga-intro-grid,
  .aga-grid {
    grid-template-columns: 1fr;
  }
  .edaga-intro-photo {
    height: 440px;
  }
  .ed-causes > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ed-medication {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .ed-medication > span,
  .ed-medication > h3,
  .ed-medication > strong {
    grid-column: auto;
  }
  .ed-medication > strong {
    margin-top: 4px;
  }
  .edaga-check-grid,
  .edaga-risk-grid {
    grid-template-columns: 1fr;
  }
  .edaga-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .edaga-container {
    width: calc(100% - 30px);
  }
  .edaga-section {
    padding: 58px 0;
  }
  .edaga-heading {
    margin-bottom: 29px;
    text-align: left;
  }
  .edaga-heading h2 {
    font-size: 22px;
  }
  .edaga-heading h2::after {
    left: 0;
    transform: none;
  }
  .edaga-heading > p {
    font-size: 13px;
  }
  .edaga-intro-grid {
    gap: 30px;
  }
  .edaga-intro-copy h2 {
    font-size: 26px;
  }
  .edaga-intro-copy > p {
    font-size: 13.5px;
  }
  .edaga-intro-photo {
    height: 370px;
  }
  .ed-treatment-grid,
  .aga-grid {
    gap: 14px;
  }
  .ed-causes,
  .ed-medication,
  .aga-copy,
  .aga-medication {
    padding: 25px 21px;
  }
  .ed-causes > div,
  .ed-medication ul {
    grid-template-columns: 1fr;
  }
  .ed-contra,
  .aga-notice,
  .edaga-no-prescription,
  .edaga-urgent {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 21px 19px;
  }
  .ed-contra > div,
  .aga-notice p,
  .edaga-no-prescription p,
  .edaga-urgent > div {
    padding: 12px 0 0;
    border-top: 1px solid #d4e3e5;
    border-left: 0;
  }
  .aga-areas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .edaga-contact h2 {
    font-size: 22px;
  }
  .edaga-contact a {
    width: 100%;
  }
}
/* Director greeting and clinic guide */
.greeting-page {
  --greeting-teal: #4ba9b1;
  --greeting-deep: #315f65;
  --greeting-soft: #eaf7f7;
  --greeting-pale: #f6fbfb;
  --greeting-line: #cfe8e9;
  max-width: 100%;
  overflow-x: hidden;
  color: #526a6e;
  background: #fff;
}
.greeting-page main {
  overflow: hidden;
}
.greeting-section {
  padding: 86px 20px;
}
.greeting-container {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.greeting-kicker,
.greeting-heading > span,
.greeting-career > span,
.greeting-qualifications > span,
.greeting-address > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--greeting-teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.greeting-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.greeting-heading h2,
.greeting-intro h2 {
  margin: 0;
  color: var(--greeting-deep);
  font-family: var(--font-serif);
  font-size: clamp(29px, 3.2vw, 43px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.035em;
}
@media (min-width: 1001px) {
  .greeting-intro h2 {
    font-size: clamp(27px, 2.2vw, 31px);
  }
  .greeting-intro-title-line {
    display: inline-block;
    white-space: nowrap;
  }
}
.greeting-heading h2:after {
  display: block;
  width: 56px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--greeting-teal),
    var(--hiro-pink-primary)
  );
  content: "";
}
.greeting-heading p {
  margin: 20px 0 0;
  color: #71878a;
  font-size: 14px;
  line-height: 2;
}
.greeting-intro {
  position: relative;
  background: #fff;
}
.greeting-intro:after {
  position: absolute;
  right: -30px;
  top: 55px;
  width: 260px;
  height: 260px;
  background: url(../img/front2026/favicon-hibiscus.png) center/contain
    no-repeat;
  content: "";
  opacity: 0.035;
  pointer-events: none;
}
.greeting-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 64px;
  align-items: center;
}
.greeting-intro-copy h2 {
  margin-bottom: 28px;
}
.greeting-intro-copy p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 2.15;
}
.greeting-signature {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--greeting-line);
}
.greeting-signature small {
  font-size: 11px;
}
.greeting-signature strong {
  color: var(--greeting-deep);
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.greeting-signature span {
  font-size: 10px;
  letter-spacing: 0.08em;
}
.greeting-intro-photo {
  margin: 0;
}
.greeting-intro-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px 24px 8px 24px;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(43, 93, 98, 0.14);
}
.greeting-intro-photo figcaption {
  margin-top: 12px;
  color: #819497;
  font-size: 10px;
  text-align: right;
}
.greeting-policy {
  background: var(--greeting-pale);
}
.greeting-value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.greeting-value-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--greeting-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(60, 115, 120, 0.06);
}
.greeting-value-grid article > b {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--greeting-soft);
  color: var(--greeting-teal);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.greeting-value-grid h3 {
  margin: 1px 0 8px;
  color: var(--greeting-deep);
  font-size: 17px;
}
.greeting-value-grid p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}
.greeting-profile {
  background: #fff;
}
.greeting-profile-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
}
.greeting-career,
.greeting-qualifications {
  padding: 38px;
  border: 1px solid var(--greeting-line);
  border-radius: 20px;
  background: #fff;
}
.greeting-profile-grid h3 {
  margin: 0 0 28px;
  color: var(--greeting-deep);
  font-family: var(--font-serif);
  font-size: 26px;
}
.greeting-career ol,
.greeting-qualifications ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.greeting-career li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid #e3efef;
}
.greeting-career li:first-child {
  border-top: 0;
  padding-top: 0;
}
.greeting-career time {
  color: var(--greeting-teal);
  font-size: 11px;
  font-weight: 900;
}
.greeting-career strong {
  color: #536d70;
  font-size: 13px;
  line-height: 1.7;
}
.greeting-qualifications {
  background: linear-gradient(145deg, var(--greeting-soft), #fff);
}
.greeting-qualifications li {
  position: relative;
  padding: 14px 10px 14px 30px;
  border-bottom: 1px solid rgba(75, 169, 177, 0.17);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}
.greeting-qualifications li:before {
  position: absolute;
  left: 4px;
  top: 18px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--hiro-pink-primary);
  border-radius: 50%;
  content: "";
}
.greeting-clinic {
  background: var(--greeting-soft);
}
.greeting-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 260px);
  gap: 18px;
}
.greeting-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}
.greeting-gallery-main {
  grid-row: 1/3;
}
.greeting-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.greeting-gallery figure:hover img {
  transform: scale(1.025);
}
.greeting-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px 22px 18px;
  background: linear-gradient(transparent, rgba(30, 61, 65, 0.8));
  color: #fff;
}
.greeting-gallery figcaption b,
.greeting-gallery figcaption span {
  display: block;
}
.greeting-gallery figcaption b {
  font-size: 15px;
}
.greeting-gallery figcaption span {
  margin-top: 3px;
  font-size: 10px;
  opacity: 0.88;
}
.greeting-hours {
  background: #fff;
}
.greeting-hours .clinic-hours {
  margin-top: 0;
}
@media (min-width: 901px) {
  .greeting-hours .clinic-hours-grid {
    grid-template-columns: minmax(150px, 1.55fr) repeat(7, minmax(72px, 1fr));
    grid-template-rows: auto minmax(66px, auto) minmax(66px, auto);
    font-size: 14px;
  }
  .greeting-hours .clinic-hours-head {
    padding: 13px 6px;
    font-size: 14px;
  }
  .greeting-hours .clinic-hours-title {
    padding-left: 18px;
  }
  .greeting-hours .clinic-hours-time {
    padding: 10px 16px;
  }
  .greeting-hours .clinic-hours-time span {
    font-size: 11px;
  }
  .greeting-hours .clinic-hours-time strong {
    font-size: 15px;
  }
  .greeting-hours .clinic-hours-cell {
    font-size: 21px;
  }
  .greeting-hours .clinic-hours-cell.has-note {
    font-size: 12px;
  }
  .greeting-hours .clinic-hours-special span {
    font-size: 13px;
  }
  .greeting-hours .clinic-hours-special b,
  .greeting-hours .clinic-hours-cell em,
  .greeting-hours .clinic-hours-special em {
    font-size: 11px;
  }
}
.greeting-access {
  background: var(--greeting-pale);
}
.greeting-access-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
}
.greeting-map {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(48, 94, 99, 0.12);
}
.greeting-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 570px;
  border: 0;
}
.greeting-map-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 13px;
  background: linear-gradient(135deg, var(--greeting-teal), var(--greeting-deep));
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(39, 91, 97, 0.3);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none !important;
}
.greeting-map-link span {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.greeting-map-link:hover span {
  transform: translateX(3px);
}
.greeting-access-info {
  display: grid;
  gap: 18px;
}
.greeting-address,
.greeting-route {
  padding: 32px;
  border: 1px solid var(--greeting-line);
  border-radius: 18px;
  background: #fff;
}
.greeting-address h3,
.greeting-route h3 {
  margin: 0 0 18px;
  color: var(--greeting-deep);
  font-size: 18px;
  line-height: 1.6;
}
.greeting-address address {
  font-style: normal;
  font-size: 13px;
  line-height: 2;
}
.greeting-address > a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--hiro-pink-action);
  color: #fff;
  text-decoration: none;
}
.greeting-address > a small {
  font-size: 10px;
}
.greeting-address > a strong {
  font-size: 24px;
  letter-spacing: 0.04em;
}
.greeting-route p {
  margin: 0;
  font-size: 12px;
  line-height: 2;
}
.greeting-anchor-nav a:hover {
  color: var(--greeting-teal);
  background: var(--greeting-pale);
}
@media (max-width: 767px) {
  .greeting-section {
    padding: 58px 20px;
  }
  .greeting-container,
  .greeting-container > * {
    min-width: 0;
  }
  .greeting-page h1,
  .greeting-page h2,
  .greeting-page h3,
  .greeting-page p {
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .greeting-heading {
    margin-bottom: 30px;
  }
  .greeting-heading h2,
  .greeting-intro h2 {
    max-width: 100%;
    font-size: 25px;
    overflow-wrap: anywhere;
  }
  .greeting-heading p {
    font-size: 12px;
    line-height: 1.9;
  }
  .greeting-intro:after {
    right: -45px;
    top: 30px;
    width: 190px;
    height: 190px;
  }
  .greeting-intro-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
  .greeting-intro-copy p {
    font-size: 12.5px;
    line-height: 2;
    overflow-wrap: anywhere;
  }
  .greeting-signature {
    gap: 8px;
    margin-top: 24px;
  }
  .greeting-signature strong {
    font-size: 21px;
  }
  .greeting-intro-photo img {
    border-radius: 18px 18px 6px 18px;
  }
  .greeting-value-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .greeting-value-grid article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 19px;
  }
  .greeting-value-grid article > b {
    width: 38px;
    height: 38px;
  }
  .greeting-value-grid h3 {
    margin-top: 0;
    font-size: 15px;
  }
  .greeting-value-grid p {
    font-size: 11.5px;
    line-height: 1.8;
  }
  .greeting-profile-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .greeting-career,
  .greeting-qualifications {
    padding: 25px 20px;
  }
  .greeting-profile-grid h3 {
    margin-bottom: 21px;
    font-size: 22px;
  }
  .greeting-career li {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
    padding: 13px 0;
  }
  .greeting-career time,
  .greeting-career strong,
  .greeting-qualifications li {
    font-size: 11px;
  }
  .greeting-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 260px 175px;
    gap: 10px;
  }
  .greeting-gallery-main {
    grid-column: 1/3;
    grid-row: auto;
  }
  .greeting-gallery figure {
    min-width: 0;
    border-radius: 13px;
  }
  .greeting-gallery figcaption {
    padding: 28px 14px 13px;
  }
  .greeting-gallery figcaption b {
    font-size: 12px;
  }
  .greeting-gallery figcaption span {
    display: none;
  }
  .greeting-access-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .greeting-map,
  .greeting-map iframe {
    min-height: 360px;
  }
  .greeting-map-link {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 11px 16px;
    font-size: 12px;
  }
  .greeting-address,
  .greeting-route {
    padding: 24px 20px;
  }
  .greeting-address h3,
  .greeting-route h3 {
    font-size: 16px;
  }
  .greeting-address > a strong {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .greeting-page h1,
  .greeting-page h2,
  .greeting-page h3,
  .greeting-page p {
    white-space: normal !important;
    word-break: break-all !important;
  }
}

/* Medical links guide */
.link-page {
  --link-teal: #4ba9b1;
  --link-deep: #315f65;
  --link-soft: #eaf7f7;
  --link-pale: #f7fbfb;
  --link-line: #d3e9ea;
  max-width: 100%;
  overflow-x: hidden;
  color: #566e72;
  background: #fff;
}
.link-page main {
  overflow: hidden;
}
.link-section {
  padding: 82px 20px;
}
.link-container {
  width: min(1060px, 100%);
  margin: 0 auto;
}
.link-kicker,
.link-heading > span {
  display: block;
  margin-bottom: 10px;
  color: var(--link-teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.link-intro {
  position: relative;
  background: #fff;
}
.link-intro:after {
  position: absolute;
  right: -28px;
  top: 38px;
  width: 240px;
  height: 240px;
  background: url(../img/front2026/favicon-hibiscus.png) center/contain
    no-repeat;
  content: "";
  opacity: 0.035;
  pointer-events: none;
}
.link-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 64px;
  align-items: center;
}
.link-intro h2,
.link-heading h2 {
  margin: 0;
  color: var(--link-deep);
  font-family: var(--font-serif);
  font-size: clamp(29px, 3.2vw, 41px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.035em;
}
.link-intro p {
  margin: 20px 0 0;
  font-size: 13.5px;
  line-height: 2.05;
}
.link-intro aside {
  padding: 29px;
  border: 1px solid var(--link-line);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--link-soft), #fff);
  box-shadow: 0 12px 30px rgba(57, 107, 112, 0.07);
}
.link-intro aside b {
  display: block;
  margin-bottom: 9px;
  color: var(--link-deep);
  font-size: 15px;
}
.link-intro aside p {
  margin: 0;
  color: #6e8285;
  font-size: 12px;
  line-height: 1.9;
}
.link-heading {
  max-width: 740px;
  margin: 0 auto 39px;
  text-align: center;
}
.link-heading h2:after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 17px auto 0;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    var(--link-teal),
    var(--hiro-pink-primary)
  );
  content: "";
}
.link-heading p {
  margin: 18px 0 0;
  color: #74878a;
  font-size: 13px;
  line-height: 1.9;
}
.link-group-medical,
.link-group-associations {
  background: var(--link-pale);
}
.link-group-related {
  background: #fff;
}
.link-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}
.link-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--link-line);
  border-radius: 17px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 9px 26px rgba(55, 99, 104, 0.06);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.link-card:hover {
  border-color: #9fd2d6;
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(55, 99, 104, 0.12);
}
.link-card figure {
  display: flex;
  height: 145px;
  margin: 0;
  padding: 22px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e8f1f2;
  background: #fff;
}
.link-card img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: saturate(0.9);
}
.link-card > div {
  display: flex;
  min-height: 145px;
  padding: 21px 21px 19px;
  flex-direction: column;
}
.link-card > div > span {
  color: #7a999c;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.link-card h3 {
  margin: 6px 0 19px;
  color: var(--link-deep);
  font-size: 15px;
  line-height: 1.65;
}
.link-card small {
  display: flex;
  margin-top: auto;
  padding-top: 13px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5efef;
  color: #3d929a;
  font-size: 10.5px;
  font-weight: 900;
}
.link-card i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--link-soft);
  font-style: normal;
  transition: transform 0.2s;
}
.link-card:hover i {
  transform: translate(2px, -2px);
}
.link-anchor-nav a:hover {
  color: var(--link-teal);
  background: var(--link-pale);
}
@media (max-width: 767px) {
  .link-section {
    width: 100%;
    padding: 56px 20px;
  }
  .link-container {
    width: 100%;
    max-width: 100%;
  }
  .link-container,
  .link-container > * {
    min-width: 0;
  }
  .link-page h1,
  .link-page h2,
  .link-page h3,
  .link-page p {
    max-width: 100%;
    white-space: normal !important;
    word-break: break-all !important;
  }
  .link-page-hero .unified-page-hero-inner {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }
  .link-page-hero .unified-page-hero-title {
    font-size: 22px;
  }
  .link-intro:after {
    right: -48px;
    width: 180px;
    height: 180px;
  }
  .link-intro-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 27px;
  }
  .link-intro h2,
  .link-heading h2 {
    font-size: 25px;
  }
  .link-intro p {
    font-size: 12.5px;
    line-height: 1.95;
  }
  .link-intro aside {
    padding: 22px 19px;
  }
  .link-heading {
    margin-bottom: 28px;
  }
  .link-heading p {
    font-size: 12px;
  }
  .link-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .link-card figure {
    height: 105px;
    padding: 15px;
  }
  .link-card > div {
    min-height: 126px;
    padding: 15px 14px 13px;
  }
  .link-card h3 {
    margin: 5px 0 12px;
    font-size: 12px;
  }
  .link-card small {
    font-size: 9px;
  }
  .link-card i {
    width: 23px;
    height: 23px;
  }
}
@media (max-width: 420px) {
  .link-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .link-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .link-card figure {
    height: 100%;
    min-height: 126px;
    border-right: 1px solid #e8f1f2;
    border-bottom: 0;
  }
  .link-card > div {
    min-height: 126px;
  }
}

/* Self-pay price guide */
.price-page {
  --price-pink: var(--hiro-pink-primary);
  --price-action: var(--hiro-pink-action);
  --price-heading: var(--hiro-pink-heading);
  --price-soft: var(--hiro-pink-soft);
  --price-pale: var(--hiro-pink-pale);
  --price-line: var(--hiro-pink-border);
  max-width: 100%;
  overflow-x: hidden;
  color: var(--hiro-pink-body);
  background: #fff;
}
.price-page main {
  overflow: hidden;
}
.price-section {
  padding: 82px 20px;
}
.price-container {
  width: min(1060px, 100%);
  margin: 0 auto;
}
.price-kicker,
.price-heading > span,
.price-related > span {
  display: block;
  margin-bottom: 10px;
  color: #c56770;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.price-intro {
  position: relative;
  background: #fff;
}
.price-intro:after {
  position: absolute;
  right: -28px;
  top: 40px;
  width: 240px;
  height: 240px;
  background: url(../img/front2026/favicon-hibiscus.png) center/contain
    no-repeat;
  content: "";
  opacity: 0.035;
  pointer-events: none;
}
.price-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 62px;
  align-items: center;
}
.price-intro h2,
.price-heading h2 {
  margin: 0;
  color: var(--price-heading);
  font-family: var(--font-serif);
  font-size: clamp(29px, 3.2vw, 41px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .price-intro h2 {
    font-size: clamp(27px, 2.6vw, 34px);
  }
  .price-intro-title-line {
    display: inline-block;
    white-space: nowrap;
  }
}
.price-intro p {
  margin: 20px 0 0;
  font-size: 13.5px;
  line-height: 2.05;
}
.price-intro aside {
  padding: 28px;
  border: 1px solid var(--price-line);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--price-soft), #fff);
  box-shadow: 0 12px 30px var(--hiro-pink-shadow);
}
.price-intro aside strong {
  display: block;
  margin-bottom: 12px;
  color: var(--price-heading);
  font-size: 16px;
}
.price-intro aside ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-intro aside li {
  position: relative;
  padding-left: 19px;
  color: #806a71;
  font-size: 11.5px;
  line-height: 1.75;
}
.price-intro aside li:before {
  position: absolute;
  left: 1px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--price-pink);
  content: "";
}
.price-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}
.price-heading h2:after {
  display: block;
  width: 54px;
  height: 3px;
  margin: 17px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--price-pink), #5cb5bd);
  content: "";
}
.price-heading p {
  margin: 18px 0 0;
  color: var(--hiro-pink-muted);
  font-size: 13px;
  line-height: 1.9;
}
.price-laser,
.price-injection {
  background: var(--price-pale);
}
.price-botox,
.price-other {
  background: #fff;
}
.price-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: start;
}
.price-content-grid-reverse {
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
}
.price-table-wrap {
  overflow: hidden;
  border: 1px solid var(--price-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 28px var(--hiro-pink-shadow);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table thead th {
  padding: 14px 20px;
  background: var(--price-heading);
  color: #fff;
  font-size: 11px;
  text-align: left;
}
.price-table thead th:last-child {
  text-align: right;
}
.price-table tbody th,
.price-table tbody td {
  padding: 14px 20px;
  border-top: 1px solid #f2e4e7;
}
.price-table tbody tr:nth-child(even) {
  background: #fffafa;
}
.price-table tbody th {
  color: #67525a;
  font-size: 12.5px;
  font-weight: 700;
  text-align: left;
}
.price-table tbody th span,
.price-table tbody th small {
  display: block;
}
.price-table tbody th small {
  margin-top: 2px;
  color: #b26c76;
  font-size: 9.5px;
}
.price-table tbody td {
  width: 150px;
  color: #b95561;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}
.price-related {
  padding: 28px;
  border: 1px solid var(--price-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 28px var(--hiro-pink-shadow);
}
.price-related h3 {
  margin: 0 0 12px;
  color: var(--price-heading);
  font-size: 18px;
  line-height: 1.65;
}
.price-related p {
  margin: 0 0 19px;
  font-size: 11.5px;
  line-height: 1.9;
}
.price-related a {
  display: flex;
  padding: 13px 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0dde1;
  color: #b95964;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
}
.price-related a span,
.price-injection-guide a span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--price-soft);
  transition: transform 0.2s;
}
.price-related a:hover span,
.price-injection-guide a:hover span {
  transform: translateX(3px);
}
.price-injection > .price-container > .price-table-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.price-injection-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin: 18px auto 0;
}
.price-injection-guide article {
  padding: 23px;
  border: 1px solid var(--price-line);
  border-radius: 15px;
  background: #fff;
}
.price-injection-guide b {
  color: var(--price-heading);
  font-size: 15px;
}
.price-injection-guide p {
  margin: 8px 0 15px;
  font-size: 11px;
  line-height: 1.85;
}
.price-injection-guide a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b95964;
  text-decoration: none;
  font-size: 10.5px;
  font-weight: 900;
}
.price-single-card {
  display: flex;
  max-width: 680px;
  margin: 0 auto;
  padding: 26px 30px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--price-line);
  border-radius: 17px;
  background: linear-gradient(145deg, var(--price-soft), #fff);
  box-shadow: 0 10px 28px var(--hiro-pink-shadow);
}
.price-single-card > div span,
.price-single-card > div small {
  display: block;
}
.price-single-card > div span {
  color: var(--price-heading);
  font-size: 17px;
  font-weight: 900;
}
.price-single-card > div small {
  margin-top: 3px;
  color: var(--hiro-pink-muted);
  font-size: 10px;
}
.price-single-card > strong {
  color: #b95561;
  font-size: 22px;
}
.price-single-card > strong small {
  font-size: 9px;
}
.price-final-note {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 22px auto 0;
  padding: 24px 27px;
  border-radius: 15px;
  background: #f3fafa;
}
.price-final-note b {
  color: #3d6c71;
  font-size: 13px;
  line-height: 1.75;
}
.price-final-note p {
  margin: 0;
  color: #687b7e;
  font-size: 11.5px;
  line-height: 1.85;
}
.price-anchor-nav a:hover {
  color: #c56770;
  background: var(--price-pale);
}
@media (max-width: 767px) {
  .price-section {
    width: 100%;
    padding: 56px 18px;
  }
  .price-container {
    width: 100%;
    max-width: 100%;
  }
  .price-container,
  .price-container > * {
    min-width: 0;
  }
  .price-page h1,
  .price-page h2,
  .price-page h3,
  .price-page p {
    max-width: 100%;
    white-space: normal !important;
    word-break: break-all !important;
  }
  .price-page-hero .unified-page-hero-inner {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }
  .price-intro:after {
    right: -45px;
    width: 180px;
    height: 180px;
  }
  .price-intro-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 27px;
  }
  .price-intro h2,
  .price-heading h2 {
    font-size: 25px;
  }
  .price-intro p {
    font-size: 12.5px;
    line-height: 1.95;
  }
  .price-intro aside {
    padding: 22px 19px;
  }
  .price-heading {
    margin-bottom: 28px;
  }
  .price-heading p {
    font-size: 12px;
  }
  .price-content-grid,
  .price-content-grid-reverse {
    grid-template-columns: minmax(0, 1fr);
  }
  .price-content-grid-reverse .price-related {
    order: 2;
  }
  .price-table tbody th,
  .price-table tbody td {
    padding: 12px 14px;
  }
  .price-table tbody th {
    font-size: 11px;
  }
  .price-table tbody td {
    width: 112px;
    font-size: 12.5px;
  }
  .price-related {
    padding: 22px 19px;
  }
  .price-related h3 {
    font-size: 16px;
  }
  .price-injection-guide {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .price-single-card {
    padding: 22px 19px;
  }
  .price-single-card > div span {
    font-size: 14px;
  }
  .price-single-card > strong {
    font-size: 18px;
  }
  .price-final-note {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 21px 19px;
  }
}
