@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800&family=Noto+Serif+JP:wght@700;800;900&display=swap");

:root {
  --color-primary: #d75f7b;
  --color-primary-dark: #b94b65;
  --color-primary-light: #e58398;
  --color-accent: #c79a55;
  --color-background: #fff7f8;
  --color-background-soft: #fdf7f7;
  --color-background-tint: #fff0f4;
  --color-surface: #fff;
  --color-surface-muted: #fbf1f3;
  --color-surface-accent: #fff9f6;
  --color-text: #493437;
  --color-text-muted: #8c7c7f;
  --color-border: #eadce0;
  --color-border-muted: #efd2d8;
  --color-button-frame: #dfc79f;
  --color-button-frame-soft: #f0dfc5;
  --color-search-panel-border: #f5d8c4;
  --color-search-field-border: #f1dbe0;
  --gradient-primary: linear-gradient(164.434deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  --gradient-search-box:
    radial-gradient(circle at 10% 8%, rgb(255 234 239 / 72%) 0, rgb(255 234 239 / 0%) 34%),
    radial-gradient(circle at 92% 88%, rgb(255 247 250 / 82%) 0, rgb(255 247 250 / 0%) 31%),
    linear-gradient(180deg, rgb(255 255 255 / 96%), rgb(255 252 250 / 92%));
  --font-base: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Noto Serif JP", "Noto Sans JP", serif;
  --font-heading: var(--font-serif);
  --font-site-name: var(--font-serif);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-card: 0 2px 6px rgb(73 52 55 / 10%);
  --shadow-header: 0 2px 3px rgb(73 52 55 / 10%);
  --container-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  background: var(--color-background);
}

body.home {
  background: var(--color-surface);
}

body.is-mobile-nav-open {
  overflow: hidden;

  .c-palette-switcher {
    display: none;
  }
}

body.is-heading-font-mincho {
  --font-heading: var(--font-serif);
}

body.is-heading-font-gothic {
  --font-heading: var(--font-base);
}

body.is-site-name-font-mincho {
  --font-site-name: var(--font-serif);
}

body.is-site-name-font-gothic {
  --font-site-name: var(--font-base);
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.35;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

select,
button,
input,
textarea {
  font: inherit;
}

.l-site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  padding-top: 86px;
}

.l-main {
  flex: 1;
  overflow: hidden;
}

.l-inner {
  width: min(var(--container-width), calc(100% - 48px));
  margin: 0 auto;

  &.is-narrow {
    width: min(820px, calc(100% - 48px));
  }
}

.l-section {
  padding: 72px 0;
}

.l-grid {
  display: grid;
  gap: 28px;

  &.is-service-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  &.is-business-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
  }
}

.l-stack {
  display: grid;
  gap: 28px;
}

.l-side-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}

.l-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
  padding: 34px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 88%), rgb(255 255 255 / 72%));
  border-bottom: 1px solid rgb(255 255 255 / 68%);
  box-shadow: 0 10px 30px rgb(88 42 54 / 8%);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);

  &::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    content: "";
    background: linear-gradient(90deg, var(--color-primary), #74a48f, var(--color-accent));
    pointer-events: none;
  }

  > ._inner {
    display: flex;
    width: min(1360px, calc(100% - 80px));
    min-height: 86px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
}

.l-footer {
  color: var(--color-surface);
  background: var(--color-primary);

  > ._inner {
    display: flex;
    width: min(1360px, calc(100% - 80px));
    min-height: 68px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}

.c-header-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
  color: var(--color-primary);
  text-decoration: none;

  & img {
    width: 260px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
  }

  ._texts {
    display: none;
  }

  ._sub {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }

  ._name {
    font-family: var(--font-site-name);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
  }

  ._lead {
    display: inline-block;
    max-width: 260px;
    padding-left: 14px;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    border-left: 1px solid rgb(215 95 123 / 28%);
    white-space: nowrap;
  }
}

.c-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border-muted);
  border-radius: 999px;
  background: var(--color-surface);
  cursor: pointer;

  ._line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-primary);
    border-radius: 999px;
  }
}

.c-header-nav {
  &.is-mobile {
    display: none;
  }
}

.c-nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin: 0;
  padding: 0;
  align-items: center;
  list-style: none;

  & a {
    display: inline-flex;
    align-items: center;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;

    &:hover {
      color: var(--color-primary);
    }
  }
}

.c-footer-nav {
  .c-nav-menu {
    gap: 28px;
  }

  .c-nav-menu a {
    color: var(--color-surface);
    font-size: 13px;
    font-weight: 600;
  }
}

.c-copyright {
  margin: 0;
  color: var(--color-surface);
  font-size: 13px;
  font-weight: 600;
}

.c-eyebrow {
  margin-bottom: 14px;
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.c-section-title .c-eyebrow,
.p-home-area .c-eyebrow,
.p-page-hero .c-eyebrow,
.p-archive-result-head .c-eyebrow,
.p-common-cta .c-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  &::before,
  &::after {
    display: block;
    width: 58px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, rgb(199 154 85 / 0%), rgb(199 154 85 / 72%));
  }

  &::after {
    background: linear-gradient(90deg, rgb(199 154 85 / 72%), rgb(199 154 85 / 0%));
  }
}

.p-common-cta .c-eyebrow {
  &::before,
  &::after {
    background: linear-gradient(90deg, rgb(255 255 255 / 0%), rgb(255 255 255 / 72%));
  }

  &::after {
    background: linear-gradient(90deg, rgb(255 255 255 / 72%), rgb(255 255 255 / 0%));
  }
}

.c-lead {
  color: var(--color-text);
  font-size: 17px;
  font-weight: 700;
}

.c-small {
  color: var(--color-text-muted);
  font-size: 14px;
}

.c-section-head {
  display: flex;
  margin-bottom: 34px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;

  & h2 {
    margin-bottom: 0;
    font-size: 34px;
  }
}

.c-section-title {
  margin-bottom: 34px;
  text-align: center;

  & h2 {
    margin-bottom: 0;
    font-size: 38px;
  }
}

.c-btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;

  &.is-center {
    justify-content: center;
  }
}

.c-btn {
  display: inline-flex;
  min-height: 54px;
  padding: 0 30px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--color-surface);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;

  &:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-1px);
  }

  &:focus-visible {
    outline: 3px solid rgb(215 95 123 / 28%);
    outline-offset: 2px;
  }

  & img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  &.is-outline,
  &.is-ghost {
    color: var(--color-primary);
    background: var(--color-surface);
  }

  &.is-outline:hover,
  &.is-ghost:hover {
    color: var(--color-surface);
    background: var(--color-primary);
    border-color: var(--color-primary);
  }

  &.is-light {
    color: var(--color-primary);
    background: var(--color-surface);
    border-color: var(--color-surface);
  }

  &.is-outline-light {
    color: var(--color-surface);
    background: transparent;
    border-color: var(--color-surface);
  }

  &.is-small {
    min-height: 42px;
    padding: 0 20px;
    font-size: 14px;
  }

  &.is-search {
    min-width: 128px;
  }

  &.is-contact {
    width: 100%;
    min-height: 60px;
  }
}

.c-card,
.c-content-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.c-card {
  padding: 28px;
}

.c-content-panel {
  display: grid;
  gap: 24px;
  padding: 38px;

  & h2 {
    margin-bottom: 0;
    color: var(--color-primary);
    font-size: 28px;
  }

  ._text p:last-child {
    margin-bottom: 0;
  }
}

.c-page-title {
  text-align: center;

  & h1 {
    margin-bottom: 0;
    color: var(--color-text);
    font-size: clamp(28px, 3vw, 38px);
  }
}

.c-service-link {
  display: flex;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-text);
  text-align: center;
  text-decoration: none;
  background: var(--color-background-soft);
  border: 0;
  border-radius: 22px;
  box-shadow: none;
  transition: transform .2s ease;

  &:hover {
    transform: translateY(-2px);
  }

  ._icon {
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    mix-blend-mode: multiply;
  }

  ._icon img {
    width: 88px;
    height: 88px;
    object-fit: contain;
  }

  ._name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
  }
}

.c-service-card {
  display: flex;
  min-height: 250px;
  padding: 24px 26px 24px 28px;
  gap: 24px;
  align-items: flex-start;
  overflow: hidden;
  color: var(--color-text);
  text-align: left;
  text-decoration: none;
  background: var(--color-surface);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease;

  &:hover {
    transform: translateY(-2px);
  }

  ._icon {
    display: grid;
    width: 120px;
    height: 202px;
    flex: 0 0 120px;
    place-items: start center;
    overflow: hidden;
  }

  ._icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }

  ._body {
    display: grid;
    width: 230px;
    max-width: 100%;
    flex: 1 1 auto;
    gap: 12px;
    align-items: start;
  }

  ._title {
    display: block;
    min-height: 32px;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
  }

  ._text {
    display: -webkit-box;
    min-height: 92px;
    overflow: hidden;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  ._link {
    display: inline-flex;
    width: 140px;
    height: 39px;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
    color: var(--color-surface);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    background: var(--gradient-primary);
    border-radius: 999px;
  }
}

.c-business-card {
  &.is-card {
    min-width: 0;
  }

  & > a {
    display: grid;
    color: var(--color-text);
    text-decoration: none;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
  }

  & > a:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
  }

  ._image {
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--color-text-muted);
    background: var(--color-surface-muted);
  }

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

  ._body {
    display: grid;
    gap: 12px;
  }

  ._meta {
    margin-bottom: 0;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 800;
  }

  & h2 {
    margin-bottom: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
  }

  ._text {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 14px;
  }

  &.is-card > a {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 0;
    border-radius: 22px;
  }

  &.is-card ._image {
    margin: 20px 20px 0;
    aspect-ratio: 3 / 2;
    border-radius: 5px;
  }

  &.is-card ._body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 20px 0;
    gap: 10px;
  }

  &.is-card .c-btn {
    width: 140px;
    min-height: 39px;
    margin: auto auto 30px;
    padding: 10px 20px;
    font-size: 16px;
    background: var(--gradient-primary);
    border: 0;
    border-radius: 999px;
  }

  &.is-list > a {
    grid-template-columns: 300px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 24px;
  }

  &.is-list ._image {
    aspect-ratio: 3 / 2;
    border-radius: var(--radius-sm);
  }
}

.c-search-form {
  display: flex;
  padding: 25px;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-background);
  border-radius: 24px;
  box-shadow: var(--shadow-header);

  ._head {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
  }

  ._badge {
    display: inline-flex;
    min-height: 32px;
    padding: 6px 12px;
    align-items: center;
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    background: #fff;
    border-radius: 999px;
  }

  ._badge::before {
    content: "";
    width: 14px;
    height: 14px;
    margin-right: 7px;
    background: currentColor;
    flex-shrink: 0;
    -webkit-mask: url("../images/icon-search.svg") center / contain no-repeat;
    mask: url("../images/icon-search.svg") center / contain no-repeat;
  }

  ._head p {
    flex: 1 1 auto;
    margin: 0;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 800;
    line-height: 21.6px;
    white-space: nowrap;
  }

  ._controls {
    display: flex;
    width: 100%;
    gap: 16px;
    align-items: center;
  }

  ._field {
    display: flex;
    width: 322px;
    min-width: 0;
    padding: 10px;
    align-items: center;
    gap: 10px;
    background: var(--color-background);
    border-radius: 16px;
  }

  ._field span {
    flex: 0 0 auto;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    line-height: 12px;
    white-space: nowrap;
  }

  ._field.is-area-select span {
    color: var(--color-accent);
  }

  & select {
    min-width: 0;
    width: 100%;
    height: 39px;
    min-height: 39px;
    padding: 5px;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 29px;
    background: var(--color-surface);
    border: 0;
    border-radius: 0;
  }

  .c-btn.is-search {
    flex: 0 0 auto;
    min-width: 138px;
    min-height: 54px;
    padding: 15px 20px;
    gap: 10px;
    font-size: 16px;
    background: linear-gradient(158.629deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border: 0;
    border-radius: 999px;
  }

  .c-btn.is-search img {
    width: 24px;
    height: 24px;
  }

  .c-btn.is-ghost {
    min-height: 39px;
    padding: 0 16px;
    font-size: 13px;
  }
}

.c-search-form.is-icon-labels {
  ._field ._label {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    line-height: 12px;
    white-space: nowrap;
  }

  ._field.is-area-select ._label {
    color: var(--color-accent);
  }

  ._field ._icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    color: currentColor;
    line-height: 1;
  }

  ._field ._icon svg {
    width: 32px;
    height: 32px;
    max-width: 32px;
    flex: 0 0 auto;
  }
}

.c-business-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;

  & img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
  }
}

.p-business-detail-info {
  gap: 34px;
}

.p-business-detail-info__section {
  display: grid;
  gap: 20px;

  & h2 {
    margin-bottom: 0;
  }
}

.p-business-detail-info__gallery {
  padding: 4px 0 2px;
}

.c-info-table {
  display: grid;
  border-top: 1px solid var(--color-border);

  & > div {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
  }

  & span {
    color: var(--color-primary);
    font-weight: 800;
  }

  & p:last-child {
    margin-bottom: 0;
  }
}

.c-steps {
  margin: 0;
  padding-left: 1.4em;

  &.is-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding-left: 0;
    list-style-position: inside;
  }
}

.c-entry-content {
  max-width: 820px;
  margin: 30px auto 0;

  & h2 {
    font-size: 24px;
  }

  & > *:last-child {
    margin-bottom: 0;
  }

  .wp-block-table {
    margin: 0;
  }

  .wp-block-table table {
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-sm);
  }

  .wp-block-table th,
  .wp-block-table td {
    padding: 14px 16px;
    border-color: var(--color-border);
  }

  .wp-block-table th {
    width: 32%;
    color: var(--color-accent);
    font-weight: 800;
    background: var(--color-surface-accent);
  }
}

.c-pagination {
  margin-top: 44px;

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-links a,
  .nav-links span {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 800;
    text-decoration: none;
    background: var(--color-surface);
    border: 1px solid var(--color-border-muted);
    border-radius: 999px;
  }

  .nav-links .current {
    color: var(--color-surface);
    background: var(--color-primary);
    border-color: var(--color-primary);
  }
}

.p-home-hero {
  --hero-base: 1440;

  background: var(--color-background-tint);

  ._inner {
    display: grid;
    width: 100%;
    min-height: calc(600 / var(--hero-base) * 100vw);
    margin: 0 auto;
    padding: 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
  }

  ._content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: inherit;
    padding:
      calc(52 / var(--hero-base) * 100vw)
      calc(40 / var(--hero-base) * 100vw)
      calc(72 / var(--hero-base) * 100vw);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(20 / var(--hero-base) * 100vw);
    text-align: center;
    background: var(--portal-home-hero-pattern, url("../images/bg-home-hero-pattern.png")) center / cover no-repeat;
  }

  ._content::before {
    content: none;
  }

  .c-eyebrow {
    display: inline-flex;
    margin: 0;
    padding:
      calc(5 / var(--hero-base) * 100vw)
      calc(15 / var(--hero-base) * 100vw);
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: calc(15 / var(--hero-base) * 100vw);
    font-weight: 900;
    line-height: calc(25.5 / var(--hero-base) * 100vw);
    text-align: center;
    background: rgb(255 255 255 / 56%);
    border: 1px solid var(--color-accent);
    border-radius: 100px;
  }

  & h1 {
    display: grid;
    margin: 0;
    color: var(--color-text);
    font-size: calc(48 / var(--hero-base) * 100vw);
    font-weight: 700;
    line-height: 1.42;
    text-align: center;
  }

  & h1 span {
    display: block;
  }

  & h1 .is-accent {
    color: var(--color-primary);
  }

  .c-lead {
    max-width: calc(560 / var(--hero-base) * 100vw);
    margin: 0;
    font-size: calc(16 / var(--hero-base) * 100vw);
    font-weight: 400;
    line-height: calc(29 / var(--hero-base) * 100vw);
    text-align: center;
  }

  .c-btn-row {
    justify-content: center;
    gap: calc(24 / var(--hero-base) * 100vw);
  }

  .c-btn {
    position: relative;
    width: calc(220 / var(--hero-base) * 100vw);
    min-height: calc(50 / var(--hero-base) * 100vw);
    padding:
      0
      calc(42 / var(--hero-base) * 100vw)
      0
      calc(30 / var(--hero-base) * 100vw);
    gap: 0;
    font-size: calc(16 / var(--hero-base) * 100vw);
    font-weight: 800;
    background: var(--gradient-primary);
    border: 1px solid transparent;
    box-shadow: 0 2px 3px rgb(0 0 0 / 10%);
  }

  .c-btn::after {
    position: absolute;
    top: 50%;
    right: calc(22 / var(--hero-base) * 100vw);
    width: calc(7 / var(--hero-base) * 100vw);
    height: calc(7 / var(--hero-base) * 100vw);
    content: "";
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
  }

  .c-btn.is-outline {
    color: var(--color-primary);
    background: var(--color-surface);
    border-color: var(--color-primary);
  }

  ._image {
    position: relative;
    height: 600px;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
  }

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

  ._image ._slide {
    position: absolute;
    inset: 0;
    opacity: 1;
  }

  ._image.is-slider ._slide {
    opacity: 0;
    animation: portalHomeHeroSlide2 var(--hero-slide-duration, 10s) ease-in-out infinite;
    animation-delay: var(--hero-slide-delay, 0s);
  }

  ._image.is-slider[data-slide-count="3"] ._slide {
    animation-name: portalHomeHeroSlide3;
  }

  ._image.is-slider ._slide.is-current {
    opacity: 1;
  }
}

@keyframes portalHomeHeroSlide2 {
  0%,
  45%,
  100% {
    opacity: 1;
  }

  50%,
  95% {
    opacity: 0;
  }
}

@keyframes portalHomeHeroSlide3 {
  0%,
  28%,
  100% {
    opacity: 1;
  }

  33.333%,
  94.667% {
    opacity: 0;
  }
}

.p-home-search,
.p-archive-search {
  position: relative;
  z-index: 2;

  > ._inner {
    width: min(884px, calc(100% - 48px));
    margin: 0 auto;
  }
}

.p-home-search {
  margin-top: -82px;
}

.p-home-service {
  .c-section-title {
    margin-bottom: 20px;
  }

  .c-section-title .c-eyebrow {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 25.5px;
  }

  .c-section-title h2 {
    font-size: 36px;
    line-height: 45px;
  }
}

.p-home-service-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.p-home-area {
  background: var(--color-background);

  ._inner {
    display: flex;
    padding: 40px;
    gap: 80px;
    align-items: center;
    border-radius: 10px;
  }

  ._visual {
    display: flex;
    width: 411px;
    flex: 0 0 411px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  ._image {
    width: 100%;
    height: 311px;
  }

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

  & h2 {
    margin-bottom: 0;
    font-size: 36px;
    line-height: 45px;
  }

  .c-eyebrow {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 25.5px;
  }

  ._content {
    width: 628px;
    flex: 0 1 628px;
  }
}

.p-area-nav {
  display: grid;
  gap: 5px;

  ._group {
    display: flex;
    width: 100%;
    min-height: 67px;
    padding: 10px 30px;
    align-items: center;
    gap: 20px;
    background: var(--color-surface);
    border: 0;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
  }

  ._head {
    display: flex;
    width: 148px;
    flex: 0 0 148px;
    align-items: center;
    gap: 12px;
  }

  ._icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    color: var(--color-primary);
    background: var(--color-background-soft);
    border-radius: 14px;
  }

  ._icon::before {
    width: 14px;
    height: 14px;
    content: "";
    border: 4px solid currentColor;
    border-radius: 999px 999px 999px 0;
    transform: rotate(-45deg);
  }

  ._group h3 {
    min-width: 0;
    flex: 1;
    margin-bottom: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    line-height: 27.2px;
  }

  ._items {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }

  ._items a {
    display: inline-flex;
    min-height: 45px;
    padding: 0 12px;
    align-items: center;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 27.2px;
    text-decoration: none;
    background: var(--color-surface);
    border: 0;
    border-radius: 6px;
    box-shadow: var(--shadow-card);
  }
}

.p-home-new {
  .c-section-title {
    margin-bottom: 20px;
  }

  .c-section-title .c-eyebrow {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 25.5px;
  }

  .c-section-title h2 {
    font-size: 36px;
    line-height: 45px;
  }
}

.p-page-hero {
  color: var(--color-text);
  text-align: center;
  background: var(--color-background-tint) var(--portal-page-hero-bg, url("../images/bg-page-hero.png")) center / cover no-repeat;

  ._inner {
    width: min(980px, calc(100% - 48px));
    min-height: 360px;
    margin: 0 auto;
    padding: 94px 0;
    display: grid;
    place-items: center;
  }

  & h1 {
    margin-bottom: 18px;
    font-size: 48px;
  }

  & p:last-child {
    max-width: 680px;
    margin: 0 auto;
    font-weight: 700;
  }
}

.p-archive-search {
  margin-top: -54px;
}

.p-business-archive {
  background: var(--color-background);
}

.p-detail-hero {
  background: var(--color-background-tint) url("../images/bg-page-hero.png") center / cover no-repeat;

  ._inner {
    display: grid;
    width: min(var(--container-width), calc(100% - 48px));
    min-height: 520px;
    margin: 0 auto;
    padding: 70px 0;
    grid-template-columns: minmax(0, .9fr) minmax(420px, .85fr);
    gap: 54px;
    align-items: center;
  }

  & h1 {
    margin-bottom: 18px;
    font-size: 44px;
  }

  ._description {
    max-width: 620px;
  }

  ._description p:last-child {
    margin-bottom: 0;
  }

  ._image {
    display: grid;
    margin: 0;
    aspect-ratio: 3 / 2;
    place-items: center;
    overflow: hidden;
    color: var(--color-text-muted);
    background: var(--color-surface-muted);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
  }

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

.p-business-detail {
  background: var(--color-background);

  .l-side-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  ._main {
    display: grid;
    gap: 30px;
  }
}

.p-contact-card {
  gap: 20px;
  padding: 36px 36px 56px;
  align-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow-card);

  & h2 {
    width: 248px;
    margin-bottom: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
  }

  ._text {
    width: 248px;
    margin-bottom: 0;
    color: var(--color-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    text-align: center;
  }

  .c-btn.is-contact {
    position: relative;
    display: grid;
    width: 248px;
    min-height: 56px;
    padding: 0 24px;
    grid-template-columns: 30px minmax(0, 1fr) 20px;
    column-gap: 10px;
    align-items: center;
    color: var(--color-primary);
    font-size: 17px;
    font-weight: 800;
    line-height: 22px;
    background: var(--color-surface);
    border: 1.6px solid var(--color-primary);
    border-radius: 28px;
    box-shadow: none;
  }

  .c-btn.is-contact::after {
    display: block;
    width: 30px;
    height: 30px;
    content: "";
  }

  .c-btn.is-contact + .c-btn.is-contact {
    margin-top: -10px;
  }

  .c-btn.is-contact.is-mail {
    color: var(--color-surface);
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 8px 9px rgb(115 51 77 / 18%);
  }

  .c-btn.is-contact.is-mail img {
    filter: brightness(0) invert(1);
  }

  .c-btn.is-contact img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .c-btn.is-contact span {
    min-width: 0;
    text-align: center;
  }

  .c-btn.is-contact.is-line img {
    width: 30px;
    height: 30px;
  }
}

.p-related-businesses {
  padding-top: 0;
}

.p-form-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;

  & > div {
    display: grid;
    gap: 6px;
    min-width: 220px;
  }

  ._wide {
    grid-column: 1 / -1;
  }

  & em {
    min-height: 46px;
    padding: 8px 12px;
    color: var(--color-text-muted);
    font-style: normal;
    background: var(--color-surface);
    border: 1px solid var(--color-border-muted);
    border-radius: var(--radius-sm);
  }
}

.p-register-form-panel {
  padding: 46px;

  .wpcf7 {
    width: 100%;
  }
}

.p-register-form {
  display: grid;
  gap: 22px;
}

.p-register-form__field {
  margin: 0;
}

.p-register-form__field p,
.p-register-form__acceptance p,
.p-register-form__submit p {
  margin: 0;
}

.p-register-form__field label {
  display: grid;
  gap: 9px;
  margin: 0;
  color: var(--color-text);
  font-weight: 700;
}

.p-register-form__field label > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.p-register-form__field em {
  display: inline-flex;
  min-height: 20px;
  padding: 0 8px;
  align-items: center;
  color: var(--color-surface);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  background: var(--color-primary);
  border-radius: 999px;
}

.p-register-form .wpcf7-form-control-wrap {
  display: block;
}

.p-register-form input:not([type="submit"]):not([type="checkbox"]),
.p-register-form textarea,
.p-register-form select {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  background: var(--color-surface);
  border: 1px solid var(--color-border-muted);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.p-register-form textarea {
  min-height: 170px;
  resize: vertical;
}

.p-register-form select {
  appearance: auto;
}

.p-register-form input:not([type="submit"]):not([type="checkbox"]):focus,
.p-register-form textarea:focus,
.p-register-form select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgb(215 95 123 / 16%);
}

.p-register-form ::placeholder {
  color: var(--color-text-muted);
}

.p-register-form__acceptance {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}

.p-register-form__acceptance label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.p-register-form__acceptance input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.p-register-form__submit {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.p-register-form .wpcf7-submit {
  display: inline-flex;
  min-width: 220px;
  min-height: 58px;
  padding: 0 42px;
  align-items: center;
  justify-content: center;
  color: var(--color-surface);
  font-weight: 800;
  background: var(--gradient-primary);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 4px 8px rgb(115 51 77 / 12%);
  cursor: pointer;
  transition: transform .2s ease;
}

.p-register-form .wpcf7-submit:hover {
  transform: translateY(-1px);
}

.p-register-form .wpcf7-spinner {
  margin: 16px 0 0 12px;
}

.p-register-form .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 600;
}

.p-register-form-panel .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
}

.p-common-cta {
  position: relative;
  padding: 86px 0 83px;
  overflow: hidden;
  background: var(--color-surface-accent) var(--portal-common-cta-bg, url("../images/bg-common-cta.png")) center 92% / 100% auto no-repeat;

  ._inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) 330px;
    margin: 0 auto;
    padding: 50px 52px 38px;
    align-items: center;
    gap: 10px;
    background: var(--color-surface);
    border-radius: 22px;
    border: 1px solid rgb(249 229 211 / 88%);
    box-shadow:
      0 0 0 8px rgb(255 255 255 / 46%),
      0 24px 54px rgb(149 72 92 / 16%);
  }

  ._content {
    display: grid;
    position: relative;
    width: 100%;
    max-width: 100%;
    gap: 0;
  }

  & h2 {
    margin-bottom: 14px;
    color: var(--color-text);
    font-size: clamp(34px, 3.6vw, 48px);
    line-height: 1.35;
  }

  ._lead {
    max-width: 620px;
    margin-bottom: 14px;
    color: var(--color-primary);
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 700;
    line-height: 1.8;
  }

  ._text {
    max-width: 590px;
    margin-bottom: 0;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 2;
  }

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

  ._feature {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 72px;
    padding: 10px 14px;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid rgb(244 222 226 / 90%);
    border-radius: 20px;
    box-shadow: none;
  }

  ._feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--color-primary);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  ._feature-icon svg {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
    color: var(--color-primary);
    fill: currentColor;
  }

  ._feature-icon.is-yen svg {
    width: 28px;
    height: 38px;
    transform: translateY(3px);
  }

  ._feature-icon.is-clock svg {
    width: 38px;
    height: 38px;
    transform: translateY(2px);
  }

  ._feature-icon.is-heart svg {
    width: 40px;
    height: 36px;
    transform: translateY(3px);
  }

  ._feature p {
    display: grid;
    margin-bottom: 0;
    gap: 3px;
    align-content: center;
  }

  ._feature strong {
    display: block;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
  }

  ._feature span {
    display: block;
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
  }

  ._visual img {
    display: block;
    width: min(260px, 100%);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
  }

  ._visual {
    display: grid;
    width: 100%;
    gap: 18px;
    justify-items: center;
  }

  ._visual-sp,
  ._actions-sp {
    display: none;
  }

  ._actions {
    display: grid;
    justify-content: center;
    justify-items: center;
    width: 100%;
    transform: translateY(-10px);
  }

  ._button {
    display: inline-flex;
    width: min(100%, 520px);
    min-height: 72px;
    padding: 0 48px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--color-surface);
    text-align: center;
    text-decoration: none;
    font-size: clamp(20px, 2.25vw, 27px);
    font-weight: 700;
    line-height: 1.2;
    background:
      linear-gradient(135deg, rgb(255 255 255 / 32%) 0 20%, transparent 21%) padding-box,
      linear-gradient(180deg, rgb(255 255 255 / 34%), rgb(255 255 255 / 0%) 48%) padding-box,
      linear-gradient(155deg, var(--color-primary-light) 0%, var(--color-primary) 58%, var(--color-primary-dark) 100%) padding-box;
    border: 2px solid color-mix(in srgb, var(--color-button-frame) 46%, white);
    border-radius: 999px;
    box-shadow:
      0 0 0 3px color-mix(in srgb, var(--color-button-frame) 48%, transparent),
      inset 0 0 0 1px rgb(255 255 255 / 28%),
      inset 0 -5px 10px color-mix(in srgb, var(--color-primary-dark) 16%, transparent),
      0 8px 16px color-mix(in srgb, var(--color-primary-dark) 14%, transparent);
  }

  ._button svg {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
  }

  ._button span {
    color: var(--color-surface);
    font-weight: 700;
    white-space: nowrap;
  }
}

.c-palette-switcher {
  position: fixed;
  z-index: 1000;
  left: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, 30px);
  gap: 6px;
  padding: 8px;
  background: rgb(255 255 255 / 92%);
  border: 1px solid var(--color-border-muted);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgb(73 52 55 / 16%);
  backdrop-filter: blur(10px);
}

.c-palette-switcher__button {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  overflow: hidden;
  color: transparent;
  cursor: pointer;
  background: var(--_primary);
  border: 2px solid rgb(255 255 255 / 95%);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgb(73 52 55 / 12%);
  transition: transform .2s ease, box-shadow .2s ease;

  &:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 0 1px rgb(73 52 55 / 18%), 0 4px 10px rgb(73 52 55 / 18%);
  }

  &.is-active {
    box-shadow: 0 0 0 3px var(--color-surface), 0 0 0 5px var(--color-primary);
  }

  &:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
  }
}

.c-palette-switcher__fonts {
  display: grid;
  grid-column: 1 / -1;
  gap: 5px;
  padding-top: 6px;
  border-top: 1px solid var(--color-border-muted);
}

.c-palette-switcher__font-group {
  display: grid;
  grid-template-columns: 30px repeat(2, 1fr);
  gap: 4px;
  align-items: center;
}

.c-palette-switcher__font-label {
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.c-palette-switcher__font-button {
  display: grid;
  min-width: 0;
  height: 24px;
  padding: 0;
  place-items: center;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border-muted);
  border-radius: 999px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;

  &[data-font-id="mincho"] {
    font-family: var(--font-serif);
  }

  &[data-font-id="gothic"] {
    font-family: var(--font-base);
  }

  &.is-active {
    color: var(--color-surface);
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgb(73 52 55 / 14%);
  }

  &:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
  }
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .l-grid.is-service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .l-grid.is-business-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .p-home-service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .c-nav-menu {
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .l-site {
    padding-top: 74px;
  }

  .l-inner,
  .p-page-hero ._inner,
  .p-home-search > ._inner,
  .p-archive-search > ._inner,
  .p-detail-hero ._inner {
    width: min(calc(100% - 32px), var(--container-width));
  }

  .l-section {
    padding: 54px 0;
  }

  .l-header > ._inner,
  .l-footer > ._inner {
    width: calc(100% - 32px);
  }

  .l-header > ._inner {
    display: grid;
    min-height: 74px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .l-header.is-nav-open {
    .c-menu-toggle {
      border-color: var(--color-primary);
      background: var(--color-primary);
      box-shadow: 0 8px 18px rgb(73 52 55 / 16%);
    }

    .c-menu-toggle ._line {
      background: var(--color-surface);
    }

    .c-menu-toggle ._line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .c-menu-toggle ._line:nth-child(2) {
      opacity: 0;
    }

    .c-menu-toggle ._line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .c-header-nav.is-mobile {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
  }

  .l-footer > ._inner,
  .p-business-detail .l-side-layout,
  .l-side-layout,
  .p-home-area ._inner,
  .p-detail-hero ._inner,
  .c-business-card.is-list > a,
  .c-info-table > div,
  .p-form-preview,
  .c-steps.is-horizontal {
    grid-template-columns: 1fr;
  }

  .l-footer > ._inner {
    display: grid;
    padding: 22px 0;
    justify-items: center;
    text-align: center;
  }

  .l-sidebar {
    position: static;
  }

  .c-header-logo img {
    width: 190px;
    height: auto;
    max-height: 52px;
  }

  .c-header-logo ._name {
    font-size: 22px;
  }

  .c-header-logo ._lead {
    display: none;
  }

  .c-menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 1002;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
  }

  .c-menu-toggle ._line {
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
  }

  .c-header-nav {
    &.is-desktop {
      display: none;
    }

    &.is-mobile {
      position: fixed;
      z-index: 1000;
      inset: 0;
      display: grid;
      grid-column: auto;
      padding: 118px 28px 48px;
      align-content: start;
      justify-items: center;
      overflow-y: auto;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 20% 10%, rgb(255 240 244 / 94%) 0, rgb(255 240 244 / 0%) 32%),
        radial-gradient(circle at 88% 82%, rgb(255 249 246 / 96%) 0, rgb(255 249 246 / 0%) 30%),
        rgb(255 255 255 / 96%);
      backdrop-filter: blur(12px);
      transform: translateY(-8px);
      transition: opacity .24s ease, visibility .24s ease, transform .24s ease;

      &::before {
        content: "MENU";
        display: block;
        margin-bottom: 26px;
        color: var(--color-accent);
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .14em;
      }

      .c-nav-menu {
        display: grid;
        width: min(420px, 100%);
        gap: 12px;
        padding: 0;
      }

      .c-nav-menu a {
        display: flex;
        min-height: 58px;
        padding: 0 22px;
        justify-content: center;
        color: var(--color-text);
        font-size: 17px;
        font-weight: 800;
        background: var(--color-surface);
        border: 1px solid var(--color-border-muted);
        border-radius: 999px;
        box-shadow: 0 2px 6px rgb(73 52 55 / 8%);
      }
    }
  }

  .l-header.is-nav-open .c-header-nav.is-mobile {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .c-footer-nav .c-nav-menu {
    justify-content: center;
    gap: 14px 20px;
  }

  .c-section-head {
    display: grid;
    align-items: start;
  }

  .c-section-head h2,
  .c-section-title h2,
  .p-home-area h2 {
    font-size: 30px;
  }

  .c-search-form,
  .c-business-gallery,
  .l-grid.is-service-cards {
    grid-template-columns: 1fr;
  }

  .l-grid.is-business-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .c-business-card.is-card > a {
    border-radius: 18px;
  }

  .c-business-card.is-card ._image {
    margin: 14px 14px 0;
  }

  .c-business-card.is-card ._body {
    padding: 14px 14px 0;
    gap: 8px;
  }

  .c-business-card ._meta {
    font-size: 12px;
    line-height: 1.45;
  }

  .c-business-card.is-card h2 {
    font-size: 17px;
    line-height: 1.45;
  }

  .c-business-card.is-card ._text {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .c-business-card.is-card .c-btn {
    width: min(120px, calc(100% - 20px));
    min-height: 34px;
    margin: auto auto 22px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .c-search-form {
    align-items: stretch;
  }

  .c-search-form ._head,
  .c-search-form ._controls {
    display: grid;
    gap: 12px;
  }

  .c-search-form ._head p {
    white-space: normal;
  }

  .c-search-form ._field {
    width: 100%;
    min-width: 0;
  }

  .c-search-form.is-icon-labels ._field ._label {
    width: 96px;
    flex: 0 0 96px;
  }

  .c-search-form .c-btn.is-search {
    width: 100%;
  }

  .c-search-form.is-icon-labels ._badge {
    justify-self: center;
    text-align: center;
  }

  .p-home-area ._inner {
    display: grid;
    padding: 30px;
    gap: 30px;
  }

  .p-home-area ._visual,
  .p-home-area ._content {
    width: 100%;
    flex: none;
  }

  .p-home-area ._image {
    height: auto;
    aspect-ratio: 411 / 311;
  }

  .p-area-nav {
    gap: 12px;
  }

  .p-area-nav ._group {
    display: grid;
    overflow: hidden;
    min-height: 0;
    padding: 0;
    gap: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border-muted);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgb(73 52 55 / 8%);
  }

  .p-area-nav ._head {
    display: grid;
    width: 100%;
    min-height: 62px;
    padding: 10px 14px;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    background:
      linear-gradient(135deg, rgb(255 255 255 / 78%), rgb(255 255 255 / 20%)),
      linear-gradient(135deg, var(--color-background-tint), var(--color-surface-accent));
  }

  .p-area-nav ._icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    background: rgb(255 255 255 / 86%);
    border: 1px solid rgb(255 255 255 / 92%);
    border-radius: 18px;
  }

  .p-area-nav ._icon::before {
    width: 15px;
    height: 15px;
    border-width: 3px;
  }

  .p-area-nav ._group h3 {
    width: auto;
    flex: none;
    font-size: 19px;
    line-height: 1.2;
  }

  .p-area-nav ._items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
  }

  .p-area-nav ._items a {
    min-height: 48px;
    padding: 0 10px;
    justify-content: center;
    font-size: 17px;
    font-weight: 900;
    border: 1px solid var(--color-border-muted);
    border-radius: 15px;
    box-shadow: 0 6px 14px rgb(73 52 55 / 6%);
  }

  .p-area-nav ._items a:only-child {
    grid-column: 1 / -1;
  }

  .p-contact-card {
    justify-items: center;
  }

  .p-contact-card .c-btn.is-contact {
    width: min(248px, 100%);
  }

  .c-btn {
    width: 100%;
  }

  .c-btn-row .c-btn {
    width: auto;
  }

  .p-home-hero ._inner {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
    gap: 0;
  }

  .p-home-hero ._content {
    width: 100%;
    max-width: 100vw;
    min-height: 520px;
    padding: 48px 24px 52px;
    gap: 20px;
  }

  .p-home-hero h1,
  .p-page-hero h1,
  .p-detail-hero h1 {
    font-size: 34px;
  }

  .p-home-hero h1 {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .p-home-hero .c-eyebrow {
    padding: 5px 15px;
    font-size: 15px;
    line-height: 25.5px;
  }

  .p-home-hero .c-lead {
    max-width: 560px;
    font-size: 16px;
    line-height: 29px;
  }

  .p-home-hero .c-btn {
    width: 220px;
    min-height: 50px;
    padding: 0 42px 0 30px;
    font-size: 16px;
  }

  .p-home-hero .c-btn::after {
    right: 22px;
    width: 7px;
    height: 7px;
  }

  .p-home-hero ._image {
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 0;
  }

  .p-home-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p-page-hero ._inner {
    min-height: 280px;
    padding: 70px 0;
  }

  .p-detail-hero ._inner {
    min-height: 0;
    padding: 52px 0;
    gap: 30px;
  }

  .p-common-cta {
    padding: 56px 0;
    background-size: auto 120%;
  }

  .p-common-cta ._inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "lead"
      "text"
      "features"
      "button";
    padding: 28px 18px 26px;
    gap: 14px;
    align-items: center;
  }

  .p-common-cta ._content {
    display: contents;
  }

  .p-common-cta h2 {
    grid-area: title;
    margin-bottom: 0;
    font-size: clamp(28px, 7.2vw, 42px);
    text-align: center;
  }

  .p-common-cta ._lead {
    grid-area: lead;
    justify-self: center;
    max-width: 100%;
    margin-bottom: 0;
    font-size: clamp(14px, 3.9vw, 20px);
    line-height: 1.7;
    text-align: center;
  }

  .p-common-cta ._text {
    grid-area: text;
    justify-self: center;
    max-width: 100%;
    font-size: 13px;
    line-height: 1.9;
    text-align: center;
  }

  .p-common-cta ._visual {
    display: none;
  }

  .p-common-cta ._visual-sp {
    display: none;
  }

  .p-common-cta ._visual-sp picture {
    justify-self: center;
  }

  .p-common-cta ._visual-sp img {
    display: block;
    width: min(100%, 220px);
    height: auto;
    object-fit: contain;
  }

  .p-common-cta ._features {
    grid-area: features;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 4px 0;
    gap: 8px;
  }

  .p-common-cta ._feature {
    grid-template-columns: 1fr;
    min-height: 58px;
    padding: 8px 9px;
    gap: 6px;
    justify-items: center;
    text-align: center;
    border-radius: 12px;
  }

  .p-common-cta ._feature-icon {
    width: 32px;
    height: 32px;
  }

  .p-common-cta ._feature-icon svg {
    width: 25px;
    height: 25px;
  }

  .p-common-cta ._feature-icon.is-yen svg {
    width: 20px;
    height: 27px;
  }

  .p-common-cta ._feature-icon.is-clock svg {
    width: 26px;
    height: 26px;
  }

  .p-common-cta ._feature-icon.is-heart svg {
    width: 28px;
    height: 25px;
  }

  .p-common-cta ._feature strong {
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
  }

  .p-common-cta ._feature span {
    font-size: 9px;
    line-height: 1.4;
    text-align: center;
  }

  .p-common-cta ._actions-sp {
    display: grid;
    grid-area: button;
    width: 100%;
    margin-top: 6px;
    justify-items: center;
  }

  .p-common-cta ._button {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    padding-inline: 22px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .c-header-logo ._sub {
    font-size: 11px;
  }

  .c-header-logo ._name {
    font-size: 16px;
  }

  .c-header-logo img {
    width: 164px;
    max-height: 45px;
  }

  .c-section-head h2,
  .c-section-title h2,
  .p-home-area h2,
  .p-contact-card h2 {
    font-size: 26px;
  }

  .p-home-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .l-grid.is-business-cards {
    gap: 12px;
  }

  .c-business-card.is-card > a {
    border-radius: 16px;
  }

  .c-business-card.is-card ._image {
    margin: 10px 10px 0;
  }

  .c-business-card.is-card ._body {
    padding: 10px 10px 0;
  }

  .c-business-card ._meta {
    font-size: 11px;
  }

  .c-business-card.is-card h2 {
    font-size: 15px;
  }

  .c-business-card.is-card .c-btn {
    width: min(108px, calc(100% - 16px));
    min-height: 32px;
    font-size: 12px;
  }

  .c-service-card,
  .c-content-panel,
  .p-register-form-panel,
  .l-sidebar,
  .p-home-search > ._inner,
  .p-archive-search > ._inner {
    padding: 24px;
  }

  .c-btn-row {
    display: grid;
  }

  .c-btn-row .c-btn {
    width: 100%;
  }

  .l-inner.is-narrow {
    width: calc(100% - 32px);
  }

  .p-register-form .wpcf7-submit {
    width: 100%;
  }

  .p-home-hero h1,
  .p-page-hero h1,
  .p-detail-hero h1 {
    font-size: 28px;
  }

  .p-home-hero ._content {
    min-height: 470px;
    padding: 40px 16px 42px;
  }

  .p-home-hero .c-eyebrow {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.5;
    white-space: normal;
  }

  .p-home-hero .c-lead {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.8;
  }

  .p-home-hero .c-btn-row .c-btn {
    width: 100%;
  }

  .p-home-hero ._image {
    aspect-ratio: 4 / 3;
  }

  .p-common-cta {
    padding: 42px 0;
  }

  .p-common-cta h2 {
    line-height: 1.4;
  }

  .p-common-cta ._inner {
    border-radius: 18px;
  }

  .p-common-cta h2 {
    font-size: clamp(25px, 7vw, 34px);
  }

  .p-common-cta ._lead {
    font-size: clamp(13px, 3.8vw, 17px);
  }

  .p-common-cta ._visual-sp img {
    width: min(100%, 180px);
  }

  .p-common-cta ._button {
    min-height: 64px;
    gap: 12px;
    font-size: clamp(18px, 5.5vw, 22px);
  }
}

/* demo3 rich lower-page enhancements */
body:not(.home) {
  background:
    linear-gradient(180deg, #fff9fb 0%, #fff6f3 46%, #f8fbf7 100%);
}

.p-business-archive,
.p-business-detail,
.p-service-page {
  background:
    radial-gradient(circle at 12% 14%, rgb(255 218 229 / 54%) 0, rgb(255 218 229 / 0%) 28%),
    radial-gradient(circle at 88% 44%, rgb(220 238 229 / 62%) 0, rgb(220 238 229 / 0%) 24%),
    linear-gradient(180deg, #fff9fb 0%, #fff7f2 52%, #f8fbf7 100%);
}

body:not(.home) .p-page-hero:not(.is-service):not(.is-business) {
  position: relative;
  overflow: hidden;
  background-color: #fff0f4;
}

body:not(.home) .p-page-hero:not(.is-service):not(.is-business)::before,
.p-detail-hero::before {
  position: absolute;
  inset: 28px;
  content: "";
  border-radius: 28px;
  pointer-events: none;
}

body:not(.home) .p-page-hero:not(.is-service):not(.is-business)::after,
.p-detail-hero::after {
  position: absolute;
  right: max(24px, calc((100vw - var(--container-width)) / 2));
  bottom: -32px;
  width: 210px;
  height: 210px;
  content: "";
  background:
    linear-gradient(135deg, rgb(215 95 123 / 22%), rgb(99 149 128 / 20%)),
    repeating-linear-gradient(45deg, rgb(255 255 255 / 44%) 0 2px, transparent 2px 11px);
  border-radius: 50%;
  filter: blur(.1px);
  opacity: .85;
}

body:not(.home) .p-page-hero:not(.is-service):not(.is-business) ._inner,
.p-detail-hero ._inner {
  position: relative;
  z-index: 1;
}

body:not(.home) .p-page-hero:not(.is-service):not(.is-business) .c-eyebrow,
.p-detail-hero .c-eyebrow {
  display: inline-flex;
  min-height: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--color-accent);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body:not(.home) .p-page-hero:not(.is-service):not(.is-business) .c-eyebrow::before,
body:not(.home) .p-page-hero:not(.is-service):not(.is-business) .c-eyebrow::after,
.p-detail-hero .c-eyebrow::before,
.p-detail-hero .c-eyebrow::after {
  display: block;
  width: 58px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgb(199 154 85 / 0%), rgb(199 154 85 / 72%));
}

body:not(.home) .p-page-hero:not(.is-service):not(.is-business) .c-eyebrow::after,
.p-detail-hero .c-eyebrow::after {
  background: linear-gradient(90deg, rgb(199 154 85 / 72%), rgb(199 154 85 / 0%));
}

.p-business-archive .p-archive-search {
  margin-top: -54px;
}

.p-detail-snapshot__item,
.p-page-overview__item,
.p-service-route__item {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 8px;
  padding: 24px;
  background: rgb(255 255 255 / 88%);
  border: 1px solid rgb(255 255 255 / 74%);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgb(73 52 55 / 10%);
  backdrop-filter: blur(10px);
}

.p-detail-snapshot__item ._icon,
.p-page-overview__item ._icon,
.p-service-route__item ._icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-primary);
  background: #fff2f5;
  border-radius: 14px;
}

.p-detail-snapshot__item ._icon svg,
.p-page-overview__item ._icon svg,
.p-service-route__item ._icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.p-detail-snapshot__item ._label {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.p-detail-snapshot__item strong {
  min-width: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
}

.p-detail-snapshot__item ._note,
.p-page-overview__item span:last-child,
.p-service-route__item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.p-detail-snapshot__item.is-area {
  background:
    linear-gradient(135deg, rgb(255 255 255 / 94%), rgb(255 247 241 / 92%)),
    #fff;
  border-color: rgb(215 95 123 / 24%);
}

.p-detail-snapshot__item ._icon img,
.p-page-overview__item ._icon img,
.p-service-route__item ._icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.p-business-archive .l-section {
  padding-top: 48px;
}

.p-business-archive .c-business-card.is-list > a {
  position: relative;
  grid-template-columns: 280px minmax(0, 1fr) 136px;
  padding: 20px 22px;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 98%) 0%, rgb(255 250 247 / 94%) 100%);
  border-color: rgb(255 255 255 / 84%);
  box-shadow: 0 18px 36px rgb(73 52 55 / 9%);
}

.p-business-archive .c-business-card.is-list ._image {
  position: relative;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 50%);
}

.p-business-archive .c-business-card.is-list ._image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgb(73 52 55 / 18%) 100%);
  pointer-events: none;
}

.p-rich-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -2px;
}

.p-rich-card-tags span {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  color: #614d3d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  background: #fff2df;
  border: 1px solid rgb(199 154 85 / 22%);
  border-radius: 999px;
}

.p-business-archive .c-business-card.is-list h2 {
  font-size: 24px;
}

.p-business-archive .c-business-card.is-list .c-btn {
  width: 136px;
  justify-self: end;
  color: var(--color-primary);
  background: #fff;
  border-color: rgb(215 95 123 / 28%);
  box-shadow: 0 4px 10px rgb(215 95 123 / 10%);
}

.p-business-archive .c-business-card.is-list > a:hover .c-btn {
  color: var(--color-surface);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.p-detail-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgb(255 215 227 / 62%) 0, rgb(255 215 227 / 0%) 28%),
    radial-gradient(circle at 76% 18%, rgb(225 239 231 / 78%) 0, rgb(225 239 231 / 0%) 24%),
    var(--color-background-tint) url("../images/bg-page-hero.png") center / cover no-repeat;
}

.p-detail-hero ._content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.p-detail-hero .c-eyebrow {
  text-align: center;
}

.p-detail-hero h1,
.p-detail-hero .c-lead,
.p-detail-hero ._description {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-detail-hero ._image {
  position: relative;
  border: 8px solid rgb(255 255 255 / 72%);
  box-shadow: 0 22px 48px rgb(73 52 55 / 15%);
  transform: rotate(1deg);
}

.p-detail-snapshot {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.p-detail-snapshot__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.p-detail-snapshot__item {
  z-index: 1;
  overflow: hidden;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: 54px auto minmax(0, auto);
  grid-template-areas:
    "icon label"
    "value value"
    "note note";
  gap: 9px 12px;
  align-content: start;
  min-height: 168px;
  padding: 24px;
  background: rgb(255 255 255 / 86%);
  border-color: rgb(255 255 255 / 80%);
  border-radius: 24px;
  box-shadow: 0 14px 28px rgb(73 52 55 / 8%);
}

.p-detail-snapshot__grid .p-detail-snapshot__item {
  background: rgb(255 255 255 / 86%);
  border-color: rgb(255 255 255 / 80%);
}

.p-detail-snapshot__item::before {
  position: absolute;
  right: -18px;
  bottom: -26px;
  width: 132px;
  height: 132px;
  content: "";
  background: var(--snapshot-icon) center / contain no-repeat;
  opacity: .075;
  pointer-events: none;
  transform: rotate(-8deg);
}

.p-detail-snapshot__item.is-area {
  --snapshot-icon: url("../images/icon-ui-map.svg");
}

.p-detail-snapshot__item.is-service {
  --snapshot-icon: url("../images/icon-ui-grid.svg");
}

.p-detail-snapshot__item.is-reservation {
  --snapshot-icon: url("../images/icon-ui-mail.svg");
}

.p-detail-snapshot__item.is-hours {
  --snapshot-icon: url("../images/icon-ui-clock.svg");
}

.p-detail-snapshot__item ._icon {
  position: relative;
  z-index: 1;
  display: grid;
  grid-area: icon;
  width: 54px;
  height: 54px;
  align-self: center;
  place-items: center;
  border-radius: 18px;
}

.p-detail-snapshot__item ._icon img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
  object-position: center;
}

.p-detail-snapshot__item ._label {
  position: relative;
  z-index: 1;
  grid-area: label;
  align-self: center;
}

.p-detail-snapshot__item strong {
  position: relative;
  z-index: 1;
  grid-area: value;
  padding-top: 4px;
  font-size: 18px;
  line-height: 1.45;
}

.p-detail-snapshot__item ._note {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  padding: 4px 10px;
  grid-area: note;
  align-items: center;
  color: var(--color-primary-dark);
  background: #fff2f5;
  border-radius: 999px;
}

.p-business-detail .l-section {
  padding-top: 54px;
}

.p-business-detail-info {
  position: relative;
  overflow: hidden;
  border-color: rgb(255 255 255 / 78%);
  box-shadow: 0 20px 42px rgb(73 52 55 / 10%);
}

.p-business-detail-info::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  content: "";
  background: linear-gradient(180deg, var(--color-primary), #74a48f 52%, var(--color-accent));
}

.p-business-detail-info__section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-business-detail-info__section h2::before {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  content: "";
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgb(199 154 85 / 16%);
}

.p-business-detail .c-info-table {
  overflow: hidden;
  background: #fffaf7;
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.p-business-detail .c-info-table > div {
  padding: 17px 18px;
}

.p-business-detail .c-info-table > div:nth-child(even) {
  background: rgb(255 255 255 / 70%);
}

.p-contact-card {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 96%), rgb(255 248 251 / 94%)),
    #fff;
  border: 1px solid rgb(255 255 255 / 78%);
  box-shadow: 0 20px 42px rgb(73 52 55 / 11%);
}

.p-contact-card::before {
  width: 72px;
  height: 72px;
  margin: 0 auto 2px;
  content: "";
  background:
    linear-gradient(135deg, var(--color-primary), #74a48f);
  mask: url("../images/icon-cta-business.svg") center / 48px 48px no-repeat;
}

.p-service-page .l-section {
  padding-top: 48px;
}

.p-service-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.p-service-route__item h3,
.p-page-overview__item strong {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.p-service-page .c-service-card {
  position: relative;
  min-height: 0;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 98%), rgb(255 250 247 / 95%));
  border: 1px solid rgb(255 255 255 / 76%);
  box-shadow: 0 18px 36px rgb(73 52 55 / 9%);
}

.p-service-page .c-service-card ._icon {
  align-self: center;
  place-items: center;
}

.p-service-page .c-service-card::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--color-primary), #74a48f, var(--color-accent));
}

body.page:not(.home) .c-page-title {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 58px 28px 34px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 18% 0%, rgb(255 222 230 / 62%) 0, rgb(255 222 230 / 0%) 38%),
    linear-gradient(135deg, rgb(255 255 255 / 90%), rgb(255 248 244 / 78%));
  border: 1px solid rgb(255 255 255 / 76%);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgb(73 52 55 / 9%);
}

body.page:not(.home) .c-page-title::before {
  display: inline-flex;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  align-items: center;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  content: "Information";
  background: #fff8ec;
  border-radius: 999px;
}

.p-page-overview {
  display: grid;
  width: min(1000px, 100%);
  margin: 24px auto 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.p-page-overview__item {
  padding: 22px;
}

body.page:not(.home) .c-entry-content.c-content-panel {
  max-width: 1000px;
  margin-top: 0;
  border-color: rgb(255 255 255 / 76%);
  box-shadow: 0 18px 40px rgb(73 52 55 / 9%);
}

body.page:not(.home) .c-entry-content h2 {
  position: relative;
  padding-left: 18px;
  color: var(--color-text);
}

body.page:not(.home) .c-entry-content h2::before {
  position: absolute;
  left: 0;
  top: .42em;
  width: 6px;
  height: 1.1em;
  content: "";
  background: linear-gradient(180deg, var(--color-primary), #74a48f);
  border-radius: 999px;
}

body.page-template-default:not(.home) {
  background: var(--color-background);
}

body.page-template-default:not(.home) .c-page-title {
  position: static;
  width: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.page-template-default:not(.home) .c-page-title::before {
  display: none;
  content: none;
}

/* Column pages */
.p-column-simple {
  background: #fff9f7;
}

.p-column-simple .column-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 20px 42px;
  background:
    radial-gradient(circle at 16% 22%, rgb(255 255 255 / 18%), transparent 24%),
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
}

.p-column-simple .column-hero::after {
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 360px;
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.p-column-simple .column-hero ._eyebrow {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  color: rgb(255 255 255 / 86%);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.p-column-simple .column-hero h1 {
  position: relative;
  margin: 14px 0 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.3;
}

.p-column-simple .column-hero p {
  position: relative;
  max-width: 680px;
  margin: 18px auto 0;
  color: rgb(255 255 255 / 90%);
  font-weight: 700;
  line-height: 2;
}

.p-column-simple.is-column-detail .column-hero {
  display: grid;
  min-height: 40px;
  padding: 0 20px;
  place-items: center;
}

.p-column-simple .column-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 44px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 52px 20px 36px;
}

.p-column-simple .column-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.p-column-simple .column-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 26px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #f0d5dd;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgb(90 64 54 / 6%);
}

.p-column-simple .column-card ._thumb {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #fbedf1;
  border-radius: 14px;
}

.p-column-simple .column-card ._thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-column-simple .column-card ._meta,
.p-column-simple .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: #a58d94;
  font-size: 14px;
  font-weight: 700;
}

.p-column-simple .column-card h2 {
  margin: 12px 0 0;
  color: #493238;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.5;
}

.p-column-simple .column-card p {
  margin: 12px 0 0;
  color: #76656a;
  font-weight: 700;
  line-height: 1.9;
}

.p-column-simple .column-card ._link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--color-primary);
  font-weight: 800;
}

.p-column-simple .column-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.p-column-simple .column-box,
.p-column-simple .column-empty {
  padding: 24px;
  background: #fff;
  border: 1px solid #f0d5dd;
  border-radius: 18px;
}

.p-column-simple .column-box h2 {
  margin: 0 0 16px;
  color: #493238;
  font-size: 20px;
}

.p-column-simple .column-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-column-simple .column-tags span,
.p-column-simple .column-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  color: #6f584f;
  font-weight: 800;
  text-decoration: none;
  background: #fff7e9;
  border: 1px solid #efd6ad;
  border-radius: 999px;
}

.p-column-simple .column-pagination {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 76px;
}

.p-column-simple .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.p-column-simple .page-numbers {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 6px 14px;
  color: #6f584f;
  font-weight: 800;
  text-decoration: none;
  background: #fff;
  border: 1px solid #f0d5dd;
  border-radius: 999px;
}

.p-column-simple .page-numbers.current {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.p-column-simple .article-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 52px 20px 76px;
}

.p-column-simple .article {
  padding: clamp(28px, 5vw, 56px);
  background: #fff;
  border: 1px solid #f0d5dd;
  border-radius: 22px;
}

.p-column-simple .article h1 {
  margin: 18px 0 0;
  color: #493238;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.42;
}

.p-column-simple .article ._lead {
  margin: 22px 0 0;
  color: #5b4249;
  font-size: 18px;
  font-weight: 800;
  line-height: 2;
}

.p-column-simple .article figure {
  overflow: hidden;
  margin: 36px 0;
  background: #fff9f7;
  border-radius: 18px;
}

.p-column-simple .article figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.p-column-simple .article figcaption {
  padding: 12px 16px 14px;
  color: #8c7c7f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.p-column-simple .article h2 {
  margin: 38px 0 0;
  color: #493238;
  font-family: var(--font-heading);
  font-size: 26px;
}

.p-column-simple .article p,
.p-column-simple .article li {
  color: #6f5f64;
  font-weight: 700;
  line-height: 2.05;
}

.p-column-simple .article p {
  margin: 18px 0 0;
}

.p-column-simple .article ul,
.p-column-simple .article ol {
  margin: 18px 0 0;
  padding-left: 1.4em;
}

.p-column-simple .article-content > *:first-child {
  margin-top: 28px;
}

.p-column-simple .back-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--color-primary);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 820px) {
  .p-column-simple .column-hero {
    padding: 44px 18px 30px;
  }

  .p-column-simple .column-hero h1 {
    font-size: 32px;
  }

  .p-column-simple .column-layout {
    display: block;
    padding: 36px 18px 34px;
  }

  .p-column-simple .column-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .p-column-simple .column-card h2 {
    font-size: 22px;
  }

  .p-column-simple .column-sidebar {
    position: static;
    margin-top: 26px;
  }

  .p-column-simple .article h1 {
    font-size: 30px;
  }

  .p-column-simple .article h2 {
    font-size: 24px;
  }
}

body:not(.home) .p-register-page .p-page-hero:not(.is-service):not(.is-business) {
  position: static;
  min-height: 0;
  padding: 72px 0;
  overflow: visible;
  color: var(--color-text);
  text-align: center;
  background: var(--color-background-tint) var(--portal-page-hero-bg, url("../images/bg-page-hero.png")) center / cover no-repeat;
}

body:not(.home) .p-register-page .p-page-hero:not(.is-service):not(.is-business)::before,
body:not(.home) .p-register-page .p-page-hero:not(.is-service):not(.is-business)::after {
  display: none;
  content: none;
}

body:not(.home) .p-register-page .p-page-hero:not(.is-service):not(.is-business) .c-eyebrow {
  display: inline-flex;
  min-height: 0;
  margin-bottom: 14px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body:not(.home) .p-register-page .p-page-hero:not(.is-service):not(.is-business) .c-eyebrow::before,
body:not(.home) .p-register-page .p-page-hero:not(.is-service):not(.is-business) .c-eyebrow::after {
  display: block;
  width: 58px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgb(199 154 85 / 0%), rgb(199 154 85 / 72%));
}

body:not(.home) .p-register-page .p-page-hero:not(.is-service):not(.is-business) .c-eyebrow::after {
  background: linear-gradient(90deg, rgb(199 154 85 / 72%), rgb(199 154 85 / 0%));
}

.p-register-page {
  background: var(--color-background);
}

.p-register-page .p-page-hero {
  position: static;
  min-height: 0;
  padding: 72px 0;
  overflow: visible;
  color: var(--color-text);
  text-align: center;
  background: var(--color-background-tint) var(--portal-page-hero-bg, url("../images/bg-page-hero.png")) center / cover no-repeat;
}

.p-register-page .p-page-hero::before,
.p-register-page .p-page-hero::after {
  display: none;
  content: none;
}

.p-register-page .p-page-hero > div:first-child {
  position: static;
  z-index: auto;
  display: block;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.p-register-page .p-page-hero .c-eyebrow {
  display: inline-flex;
  min-height: 0;
  margin-bottom: 14px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.p-register-page .p-page-hero .c-eyebrow::before,
.p-register-page .p-page-hero .c-eyebrow::after {
  display: block;
  width: 58px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgb(199 154 85 / 0%), rgb(199 154 85 / 72%));
}

.p-register-page .p-page-hero .c-eyebrow::after {
  background: linear-gradient(90deg, rgb(199 154 85 / 72%), rgb(199 154 85 / 0%));
}

.p-register-page .p-page-hero h1 {
  margin-bottom: 18px;
  font-size: 48px;
}

.p-register-page .p-page-hero .c-placeholder {
  display: block;
  min-height: 0;
  margin-top: 0;
  padding: 0;
  color: var(--color-text);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.p-register-page .p-register-form {
  padding-top: 0;
}

.p-register-page .p-register-form__field {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.p-register-page .p-register-form .wpcf7-submit {
  position: static;
  isolation: auto;
  overflow: visible;
  min-width: 220px;
  min-height: 58px;
  padding: 0 42px;
  color: var(--color-surface);
  background: var(--gradient-primary);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 4px 8px rgb(115 51 77 / 12%);
  text-shadow: none;
}

.p-register-page .p-register-form .wpcf7-submit::before {
  content: none;
}

.p-register-page .p-register-form .wpcf7-submit:hover {
  color: var(--color-surface);
  background: var(--gradient-primary);
  border: 0;
  transform: translateY(-1px);
}

body.page-template-default:not(.home) .p-register-form {
  padding-top: 0;
}

body.page-template-default:not(.home) .p-register-form__field {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

body.page-template-default:not(.home) .p-register-form .wpcf7-submit {
  position: static;
  isolation: auto;
  overflow: visible;
  color: var(--color-surface);
  background: var(--gradient-primary);
  border: 0;
  box-shadow: 0 4px 8px rgb(115 51 77 / 12%);
  text-shadow: none;
}

body.page-template-default:not(.home) .p-register-form .wpcf7-submit::before {
  content: none;
}

body.page-template-default:not(.home) .p-register-form .wpcf7-submit:hover {
  color: var(--color-surface);
  background: var(--gradient-primary);
  border: 0;
}

@media (max-width: 860px) {
  .p-register-page .p-page-hero {
    padding: 58px 16px;
  }
}

@media (max-width: 560px) {
  .p-register-page .p-page-hero h1 {
    font-size: 28px;
  }
}

body.page-template-default:not(.home) .c-entry-content.c-content-panel {
  max-width: 820px;
  margin: 30px auto 0;
  border-color: var(--color-border);
  box-shadow: var(--shadow-card);
}

body.page-template-default:not(.home) .c-entry-content h2 {
  position: static;
  padding-left: 0;
  color: var(--color-primary);
}

body.page-template-default:not(.home) .c-entry-content h2::before {
  display: none;
  content: none;
}

.p-register-form {
  padding-top: 8px;
}

.p-register-form__field {
  padding: 16px;
  background: #fffaf7;
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

@media (max-width: 1120px) {
  .p-detail-snapshot__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .c-section-title .c-eyebrow,
  .p-home-area .c-eyebrow,
  .p-page-hero .c-eyebrow,
  .p-archive-result-head .c-eyebrow,
  .p-common-cta .c-eyebrow {
    gap: 12px;

    &::before,
    &::after {
      width: 38px;
    }
  }

  .p-service-route,
  .p-page-overview {
    grid-template-columns: 1fr;
  }

  .p-business-archive .c-business-card.is-list > a {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .p-detail-hero ._image {
    transform: none;
  }

  .p-detail-snapshot {
    margin-top: -28px;
  }

  body:not(.home) .p-page-hero:not(.is-service):not(.is-business)::before,
  .p-detail-hero::before {
    inset: 16px;
    border-radius: 20px;
  }

  body:not(.home) .p-page-hero:not(.is-service):not(.is-business)::after,
  .p-detail-hero::after {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 560px) {
  .c-entry-content .wp-block-table {
    font-size: 14px;
  }

  .c-entry-content .wp-block-table th {
    padding: 14px 4px;
  }

  .p-detail-snapshot__item,
  .p-page-overview__item,
  .p-service-route__item {
    padding: 20px;
    border-radius: 16px;
  }

  .p-detail-snapshot__item strong {
    font-size: 18px;
  }

  body.page:not(.home) .c-page-title {
    padding: 40px 20px 28px;
    border-radius: 18px;
  }

  .p-business-archive .c-business-card.is-list h2 {
    font-size: 20px;
  }
}

.c-btn:not(.is-search):not(.is-contact)::before,
.c-service-card ._link::before,
.p-register-form .wpcf7-submit::before {
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  content: "";
  background: currentColor;
  mask: url("../images/icon-ui-arrow-right.svg") center / contain no-repeat;
  -webkit-mask: url("../images/icon-ui-arrow-right.svg") center / contain no-repeat;
}

.c-btn.is-small {
  padding-inline: 18px;
}

.c-btn.is-small::before {
  width: 15px;
  height: 15px;
}

.p-business-archive .c-business-card.is-list .c-btn {
  width: 148px;
  padding-inline: 18px;
}

.c-business-card.is-card .c-btn {
  width: auto;
  min-width: 132px;
}

.c-service-card ._link {
  gap: 8px;
}

.c-service-card ._link::before {
  width: 16px;
  height: 16px;
}

.p-register-form .wpcf7-submit {
  gap: 10px;
}

.c-business-card.is-card ._meta {
  display: none;
}

.c-business-card.is-card .p-rich-card-tags {
  gap: 6px;
  margin: 0 0 4px;
}

.c-business-card.is-card .p-rich-card-tags span {
  min-height: 24px;
  padding: 0 9px;
  font-size: 11px;
}

.p-rich-archive-results {
  padding-top: 52px;
}

.p-archive-result-head {
  display: grid;
  margin-bottom: 22px;
  align-items: start;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.p-archive-result-head h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 38px);
}

.p-archive-result-head p:not(.c-eyebrow) {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 700;
}

.p-archive-result-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.p-archive-result-chips span {
  display: inline-flex;
  min-height: 32px;
  padding: 0 13px;
  align-items: center;
  color: #614d3d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  background: #fff2df;
  border: 1px solid rgb(199 154 85 / 24%);
  border-radius: 999px;
}

.p-archive-result-chips span:first-child {
  color: var(--color-primary);
  background: var(--color-background-soft);
  border-color: rgb(215 95 123 / 20%);
}

.p-archive-result-chips span.is-accent {
  color: #356b58;
  background: #eaf7f0;
  border-color: rgb(99 149 128 / 25%);
}

.p-archive-result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: start;
}

.p-archive-result-list {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.p-business-archive .p-archive-result-list .l-stack {
  gap: 22px;
}

.p-business-archive .c-business-card.is-list > a {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  padding: 18px;
  background: linear-gradient(105deg, rgb(255 255 255 / 99%) 0%, rgb(255 251 248 / 96%) 100%);
  border: 1px solid rgb(255 255 255 / 86%);
  border-radius: 28px;
  box-shadow: 0 18px 38px rgb(73 52 55 / 9%);
}

.p-business-archive .c-business-card.is-list ._image {
  position: relative;
  min-height: 238px;
  margin: 0;
  aspect-ratio: auto;
  border-radius: 20px;
}

.p-business-archive .c-business-card.is-list ._image img {
  height: 100%;
}

.p-business-card-service-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  min-height: 30px;
  padding: 0 12px;
  align-items: center;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  background: rgb(255 255 255 / 88%);
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgb(73 52 55 / 10%);
  backdrop-filter: blur(10px);
}

.p-business-archive .c-business-card.is-list ._body {
  align-content: center;
  gap: 12px;
  padding: 6px 4px 6px 0;
}

.p-business-archive .c-business-card.is-list ._meta {
  display: none;
}

.p-business-archive .c-business-card.is-list h2 {
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.35;
}

.p-business-archive .c-business-card.is-list ._text {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.p-business-card-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.p-business-card-points ._point {
  display: grid;
  min-height: 70px;
  padding: 11px 12px;
  align-content: center;
  background: var(--color-background);
  border: 1px solid rgb(247 231 235 / 76%);
  border-radius: 14px;
}

.p-business-card-points span {
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.p-business-card-points strong {
  margin-top: 4px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.p-business-card-bottom {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.p-business-card-note {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.p-business-archive .c-business-card.is-list .p-business-card-bottom .c-btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 142px;
  justify-self: auto;
  color: var(--color-surface);
  background: var(--gradient-primary);
  border: 0;
  box-shadow: 0 4px 10px rgb(215 95 123 / 12%);
}

.p-archive-side {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 16px;
}

.p-side-card {
  padding: 22px;
  background: rgb(255 255 255 / 94%);
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgb(73 52 55 / 8%);
}

.p-side-card h3 {
  margin-bottom: 12px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 900;
}

.p-side-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.p-side-card__links {
  display: grid;
  gap: 8px;
}

.p-side-card__links a {
  display: flex;
  min-height: 40px;
  padding: 8px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 900;
  background: var(--color-background);
  border: 1px solid rgb(247 231 235 / 72%);
  border-radius: 999px;
}

.p-side-card__links span {
  color: var(--color-primary);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .p-archive-result-layout {
    grid-template-columns: 1fr;
  }

  .p-archive-side {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .p-rich-archive-results {
    padding-top: 44px;
  }

  .p-archive-result-head,
  .p-business-card-bottom {
    display: grid;
    justify-items: start;
  }

  .p-archive-result-chips {
    justify-content: flex-start;
  }

  .p-business-archive .c-business-card.is-list > a {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
  }

  .p-business-archive .c-business-card.is-list ._image {
    min-height: 190px;
  }

  .p-business-archive .c-business-card.is-list ._body {
    padding: 18px 4px 4px;
  }

  .p-business-card-points,
  .p-archive-side {
    grid-template-columns: 1fr;
  }

  .p-business-archive .c-business-card.is-list .p-business-card-bottom .c-btn {
    width: 100%;
  }
}

.c-btn:not(.is-outline):not(.is-ghost):not(.is-light):not(.is-outline-light):not(.is-contact),
.c-btn.is-contact.is-mail,
.p-contact-card .c-btn.is-contact.is-mail,
.c-service-card ._link,
.p-register-form .wpcf7-submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-surface);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 25%) 0 18%, transparent 19%) padding-box,
    linear-gradient(180deg, rgb(255 255 255 / 34%), rgb(255 255 255 / 0%) 46%) padding-box,
    linear-gradient(155deg, var(--color-primary-light) 0%, var(--color-primary) 44%, var(--color-primary-dark) 100%) padding-box;
  border: 2px solid color-mix(in srgb, var(--color-button-frame) 46%, white);
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--color-button-frame) 52%, transparent),
    inset 0 0 0 1px rgb(255 255 255 / 24%),
    inset 0 -4px 9px color-mix(in srgb, var(--color-primary-dark) 16%, transparent),
    0 5px 10px color-mix(in srgb, var(--color-primary-dark) 12%, transparent);
  text-shadow: 0 1px 0 color-mix(in srgb, var(--color-primary-dark) 28%, transparent);
}

.c-btn:not(.is-outline):not(.is-ghost):not(.is-light):not(.is-outline-light):not(.is-contact):hover,
.c-btn.is-contact.is-mail:hover,
.p-contact-card .c-btn.is-contact.is-mail:hover,
.c-service-card:hover ._link,
.p-register-form .wpcf7-submit:hover {
  color: var(--color-surface);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 25%) 0 18%, transparent 19%) padding-box,
    linear-gradient(180deg, rgb(255 255 255 / 32%), rgb(255 255 255 / 0%) 44%) padding-box,
    linear-gradient(155deg, var(--color-primary-light) 0%, var(--color-primary-dark) 100%) padding-box;
  border-color: color-mix(in srgb, var(--color-button-frame) 52%, white);
}

.c-search-form .c-btn.is-search {
  border: 2px solid color-mix(in srgb, var(--color-button-frame) 48%, white);
}

.c-search-form.is-icon-labels {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--gradient-search-box);
  border: 1px solid rgb(255 255 255 / 82%);
  outline: 1px solid color-mix(in srgb, var(--color-search-panel-border) 80%, transparent);
  outline-offset: -9px;
}

.c-search-form ._field {
  background: var(--color-surface);
  border: 1px solid color-mix(in srgb, var(--color-search-field-border) 88%, transparent);
}

.c-btn.is-small,
.c-business-card.is-card .c-btn,
.p-business-archive .c-business-card.is-list .p-business-card-bottom .c-btn,
.c-service-card ._link {
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--color-button-frame) 50%, transparent),
    inset 0 0 0 1px rgb(255 255 255 / 24%),
    inset 0 -3px 7px color-mix(in srgb, var(--color-primary-dark) 14%, transparent),
    0 4px 8px color-mix(in srgb, var(--color-primary-dark) 10%, transparent);
}

.c-business-card.is-card .c-btn,
.p-business-archive .c-business-card.is-list .p-business-card-bottom .c-btn {
  border-width: 2px;
}

.c-btn.is-contact.is-mail img,
.p-contact-card .c-btn.is-contact.is-mail img {
  filter: brightness(0) invert(1);
}

@media (min-width: 861px) {
  .p-home-hero ._image {
    align-self: stretch;
    height: 100%;
    min-height: inherit;
  }

  .p-home-hero ._image img {
    object-position: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-home-hero ._image ._slide {
    animation: none;
    opacity: 0;
  }

  .p-home-hero ._image ._slide.is-current {
    opacity: 1;
  }
}

body.page-template-default:not(.home) .c-page-title {
  position: static;
  width: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.page-template-default:not(.home) .c-page-title::before {
  display: none;
  content: none;
}
