:root {
  --color-bg: #f6f3ec;
  --color-bg-soft: #faf8f2;
  --color-bg-accent: #fff3ec;
  --color-ink: #1a1a1a;
  --color-accent: #c1542c;
  --color-line: #06c755;
  --color-muted: #555555;
  --color-muted-2: #666666;
  --color-border-soft: #999999;
  --font-family-base: 'Klee One', sans-serif;
  --font-family-mono: ui-monospace, Menlo, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
}

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

input,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 4.65rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-family-base);
  font-size: 1rem;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.l-container {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media screen and (min-width: 768px) {
  .l-container {
    padding-inline: 1.875rem;
  }
}

.l-section {
  padding-block: clamp(3.4375rem, 3rem + 2vw, 6rem);
}
.l-section:nth-of-type(odd) {
  background-color: var(--color-bg);
}
.l-section.p-hero {
  background-color: transparent;
}
.l-section--accent {
  background-color: var(--color-bg-accent);
}
.l-section--flush {
  border-top: none;
}

.p-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg-soft);
  border-bottom: 0.125rem solid var(--color-ink);
}
.p-header__inner {
  padding-block: 0.625rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.p-header__brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  text-decoration: none;
}
.p-header__mark {
  width: 3.125rem;
}
.p-header__name {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  font-weight: 600;
  min-width: 0;
}
.p-header__main-name {
  font-size: 1.125rem;
  white-space: nowrap;
}
.p-header__sub-name {
  font-size: 1rem;
}
.p-header__cta {
  display: flex;
  gap: 1.5rem;
}
.p-header__cta .p-header__tel {
  display: none;
}
@media screen and (min-width: 1150px) {
  .p-header__cta .p-header__tel {
    display: flex;
  }
}
.p-header__actions {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.p-header__actions .c-button {
  display: none;
}
@media screen and (min-width: 576px) {
  .p-header__actions .c-button {
    display: block;
  }
}
.p-header__actions .c-button--line {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__actions .c-button--line {
    display: flex;
  }
}
.p-header__tel {
  display: flex;
  flex-direction: column;
  gap: 0.0625rem;
  text-decoration: none;
}
.p-header__tel-number {
  font-weight: 600;
  font-size: 1.125rem;
}
.p-header__tel-hint {
  font-size: 0.5625rem;
  font-family: var(--font-family-mono);
  color: #888888;
}
.p-header__menu-btn {
  position: relative;
  z-index: 9999;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1875rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 0.125rem solid var(--color-ink);
  border-radius: 0.375rem 0.5rem 0.375rem 0.5rem;
}
@media screen and (min-width: 1024px) {
  .p-header__menu-btn {
    display: none;
  }
}
.p-header__menu-btn[aria-expanded=true] .p-header__menu-bar:nth-child(1) {
  transform: translateY(0.3125rem) rotate(45deg);
}
.p-header__menu-btn[aria-expanded=true] .p-header__menu-bar:nth-child(2) {
  opacity: 0;
}
.p-header__menu-btn[aria-expanded=true] .p-header__menu-bar:nth-child(3) {
  transform: translateY(-0.3125rem) rotate(-45deg);
}
.p-header__menu-bar {
  width: 1.25rem;
  height: 0.125rem;
  background-color: var(--color-ink);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.p-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: 80%;
  max-width: 20rem;
  height: 100%;
  overflow-y: auto;
  padding-top: 1rem;
  background-color: #fff;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  padding: 2rem;
}
.p-header__nav.is-open {
  transform: translateX(0);
  visibility: visible;
}
@media screen and (min-width: 1024px) {
  .p-header__nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    overflow-y: visible;
    background-color: transparent;
    transform: none;
    visibility: visible;
    transition: none;
    padding: 0;
  }
}
.p-header__nav .c-button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-header__nav .c-button {
    height: 3.125rem;
    width: 9.375rem;
  }
}
.p-header__nav-list {
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  overflow: hidden;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-header__nav-list {
    flex-direction: row;
  }
}
.p-header__nav-link {
  position: relative;
}
.p-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.625rem;
  width: 100%;
  height: 1px;
  background-color: var(--color-ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease-in-out;
}
.p-header__nav-link:hover::after, .p-header__nav-link:focus-visible::after {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .p-header__nav-link::after {
    transition: none;
  }
}
.p-header__nav-link {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 1rem;
  color: #444444;
  text-decoration: none;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  border-bottom: 1px solid var(--color-ink);
}
@media screen and (min-width: 1024px) {
  .p-header__nav-link {
    border-bottom: none;
    border-bottom: none;
    padding-bottom: 0;
    padding-left: 0;
  }
}

.p-footer {
  background-color: var(--color-ink);
  color: #eeeeee;
}
.p-footer__inner {
  padding-block: 3rem;
}
.p-footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-footer__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
  }
}
.p-footer__name {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.p-footer__address {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #bbbbbb;
  margin-bottom: 0.5rem;
}
.p-footer__sns {
  display: flex;
  gap: 0.625rem;
  margin-top: 1rem;
  align-items: center;
}
.p-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 0.3125rem;
}
.p-footer__sns-link--line {
  background-color: var(--color-line);
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.25rem;
}
.p-footer__sns-icon {
  width: 100%;
  height: 100%;
}
.p-footer__nav {
  margin-bottom: 2rem;
}
.p-footer__nav-list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.p-footer__nav-link {
  position: relative;
}
.p-footer__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease-in-out;
}
.p-footer__nav-link:hover::after, .p-footer__nav-link:focus-visible::after {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .p-footer__nav-link::after {
    transition: none;
  }
}
.p-footer__nav-link {
  display: block;
  width: fit-content;
  font-size: 0.8125rem;
  color: #cccccc;
  text-decoration: none;
}
.p-footer__nav-link:hover, .p-footer__nav-link:focus-visible {
  color: #fff;
}
.p-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.p-footer__tel {
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
  text-decoration: none;
}
.p-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.15);
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.p-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.6875rem;
  color: #999999;
}
.p-footer__legal-link {
  color: inherit;
  text-decoration: none;
}
.p-footer__legal-link:hover, .p-footer__legal-link:focus-visible {
  color: #fff;
}
.p-footer__copyright {
  font-size: 0.6875rem;
  color: #777777;
}

.c-skip-link {
  position: absolute;
  top: -3rem;
  left: 0.5rem;
  z-index: 250;
  padding: 0.5rem 1rem;
  background-color: var(--color-ink);
  color: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
  transition: top 0.15s ease-in-out;
}
.c-skip-link:focus {
  top: 0;
}

.c-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem 0.625rem 0.5625rem 0.4375rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  color: #fff;
  background-color: var(--color-accent);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.c-button:hover, .c-button:focus-visible {
  transform: translateY(-0.1875rem);
}
@media (prefers-reduced-motion: reduce) {
  .c-button {
    transition: none;
  }
  .c-button:hover, .c-button:focus-visible {
    transform: none;
  }
}
.c-button__icon {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
}
.c-button--line {
  background-color: var(--color-line);
}
.c-button--ghost {
  background: none;
  border: 0.09375rem solid var(--color-ink);
  color: var(--color-ink);
}

.c-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.c-badge {
  border: 0.09375rem solid var(--color-ink);
  background-color: var(--color-bg);
  border-radius: 62.4375rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
}

.c-pill {
  display: inline-block;
  background-color: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.4375rem 0.875rem;
  border-radius: 62.4375rem;
  transform: rotate(-0.5deg);
}

.c-bubble {
  border: 0.125rem solid var(--color-ink);
  border-radius: 1rem 0.375rem 1rem 0.375rem;
  padding: 0.625rem 0.75rem;
  background-color: #fff;
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
}
.c-bubble--alt {
  border-radius: 0.375rem 1rem 0.375rem 1rem;
}

.c-step__number {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  border: 0.125rem solid var(--color-ink);
  border-radius: 50%;
  font-weight: 600;
}

.c-testimonial {
  border: 0.125rem solid var(--color-ink);
  border-radius: 0.625rem 0.375rem 0.625rem 0.375rem;
  padding: 0.75rem;
  background-color: #fff;
}
.c-testimonial__quote {
  font-size: 0.8125rem;
}
.c-testimonial__name {
  margin-top: 0.375rem;
  font-size: 0.6875rem;
  color: var(--color-muted-2);
}

.c-note {
  border: 0.09375rem dashed var(--color-border-soft);
  border-radius: 0.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--color-muted);
  background-color: #fff;
}

.c-faq-item {
  border: 0.09375rem solid var(--color-ink);
  border-radius: 0.5rem;
  padding: 0 0.75rem;
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
  overflow: hidden;
}
.c-faq-item + .c-faq-item {
  margin-top: 0.5rem;
}
.c-faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding-block: 0.625rem;
  cursor: pointer;
  list-style: none;
}
.c-faq-item__summary::-webkit-details-marker {
  display: none;
}
.c-faq-item__icon {
  flex: none;
  width: 1rem;
  height: auto;
  color: var(--color-ink);
  transition: transform 0.3s ease-in-out;
}
.c-faq-item[open] .c-faq-item__icon {
  transform: rotate(180deg);
}
.c-faq-item__answer {
  padding: 0 0 0.75rem;
  line-height: 1.7;
  color: var(--color-muted);
}
.c-faq-item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.c-section-title {
  font-size: 1.375rem;
  line-height: 1.6;
  font-weight: 600;
}

.p-hero {
  position: relative;
  display: flex;
  align-items: center;
  background-image: url(../img/fv.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 45%;
  min-height: 35rem;
  padding-block: 4.0625rem 3rem;
}
@media screen and (min-width: 768px) {
  .p-hero {
    min-height: 40rem;
    padding-block: 5rem 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-hero {
    min-height: 42.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-hero {
    min-height: 47.5rem;
  }
}
.p-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 17, 14, 0.2) 0%, rgba(20, 17, 14, 0.1) 32%, rgba(20, 17, 14, 0.05) 45%, rgba(20, 17, 14, 0) 50%);
  pointer-events: none;
}
.p-hero__body {
  position: relative;
}
.p-hero__title {
  font-size: clamp(1.78125rem, 4vw, 3.375rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.35);
  margin-bottom: 1rem;
}
.p-hero__lead {
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.35);
  margin-bottom: 1.75rem;
}
.p-hero__profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  margin-top: 1.75rem;
  margin-bottom: 1.5rem;
  padding: 0.625rem 1rem;
  background: rgba(43, 41, 38, 0.78);
  backdrop-filter: blur(0.375rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 62.4375rem;
}
.p-hero__profile-img-wrap {
  flex: none;
  width: 5.3125rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.p-hero__profile-name {
  font-weight: 600;
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
  color: #fff;
}
.p-hero__profile-role {
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
}
.p-hero__cta {
  margin-top: 1.75rem;
}
.p-hero .c-button {
  width: 100%;
  max-width: 25rem;
  margin-top: 2rem;
  font-size: 1rem;
}
.p-hero__stats-bar {
  display: flex;
  padding: 10px 4px;
  background: rgba(43, 41, 38, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  width: 95%;
}
@media screen and (min-width: 768px) {
  .p-hero__stats-bar {
    width: 37.5rem;
  }
}
.p-hero__stats-item {
  position: relative;
  flex: 1;
  text-align: center;
}
.p-hero__stats-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 2px;
  height: 80%;
  background: rgba(255, 255, 255, 0.22);
}
.p-hero__stats-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4375rem;
  font-weight: 700;
  color: #c69a4e;
}
.p-hero__stats-unit {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.p-hero__stats-label {
  margin-top: 3px;
  font-size: 0.8125rem;
  color: #fff;
}

.p-empathy__heading {
  margin-bottom: 2rem;
}
.p-empathy__bubbles {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.p-empathy__note {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.p-stats__summary {
  text-align: center;
  padding: 0.375rem;
}
.p-stats__main-text {
  padding-bottom: 1rem;
}
.p-stats__text {
  font-weight: 600;
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
}
@media screen and (min-width: 768px) {
  .p-stats__text {
    font-size: 1.125rem;
  }
}
.p-stats__figure {
  font-weight: 600;
  font-size: 3.125rem;
  line-height: 1.1;
  color: var(--color-accent);
  margin: 0.5rem 0;
  display: block;
}
.p-stats__desc {
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
}
.p-stats__source {
  font-size: 0.625rem;
  font-family: var(--font-family-mono);
  color: #888888;
  margin-top: 0.75rem;
  border-top: 0.0625rem dashed #cccccc;
  padding-top: 0.5rem;
}

.p-value__heading {
  margin-bottom: 0.875rem;
}
.p-value__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
  margin-bottom: 2.25rem;
}
.p-value__checklist-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.p-value__checklist-item::before {
  content: "";
  flex: none;
  width: 0.9375rem;
  height: 0.9375rem;
  margin-top: 0.375rem;
  border: 0.125rem solid var(--color-ink);
  border-radius: 0.25rem;
}
@media screen and (min-width: 576px) {
  .p-value__checklist-item::before {
    margin-top: 0.4375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-value__checklist-item::before {
    margin-top: 0.5rem;
  }
}
.p-value__checklist-text {
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
  line-height: 1.6;
  color: #222222;
}
.p-value__example {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-value__example {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.p-value__example-desc {
  padding-top: 0.5rem;
}
.p-value__example-heading {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.p-value__example-text {
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
  line-height: 1.7;
  color: #444444;
  margin-bottom: 0.75rem;
}
.p-value__example-tagline {
  font-weight: 600;
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
}
.p-value__img-wrap {
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.p-floorplan__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-floorplan__inner {
    flex-direction: row;
    gap: 1.875rem;
  }
}
.p-floorplan__heading {
  padding-top: 0.5rem;
  margin-bottom: 0.875rem;
}
.p-floorplan__text {
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
  line-height: 1.7;
  color: #222222;
  margin-bottom: 0.5rem;
}
.p-floorplan__text--strong {
  font-weight: 600;
}
.p-floorplan__note {
  margin-top: 0.875rem;
  font-size: 0.9375rem;
}
.p-floorplan__img-wrap {
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 0.09375rem solid var(--color-border-soft);
  margin-bottom: 0.75rem;
}

.p-checklist__heading {
  margin-bottom: 0.875rem;
}
.p-checklist__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.p-checklist__list-text {
  font-size: 0.8125rem;
}
.p-checklist__item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
}
.p-checklist__item::before {
  content: "";
  flex: none;
  width: 0.9375rem;
  height: 0.9375rem;
  margin-top: 0.375rem;
  border: 0.125rem solid var(--color-ink);
  border-radius: 0.25rem;
}
@media screen and (min-width: 576px) {
  .p-checklist__item::before {
    margin-top: 0.4375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-checklist__item::before {
    margin-top: 0.5rem;
  }
}
.p-checklist__note {
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
  line-height: 1.8;
  color: #333333;
  margin-bottom: 2.625rem;
}
.p-checklist__button {
  margin-inline: auto;
  width: 100%;
  max-width: 25rem;
  padding-block: 1rem;
  font-size: 1rem;
}

.p-case__heading {
  margin-bottom: 1.5rem;
}
.p-case__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-case__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-case__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-case__item--featured {
  grid-column: 1/-1;
}
@media screen and (min-width: 768px) {
  .p-case__item--featured .p-case__figure {
    flex-direction: row;
  }
}
.p-case__item--featured .p-case__img-wrap {
  aspect-ratio: 5/3;
}
@media screen and (min-width: 768px) {
  .p-case__item--featured .p-case__img-wrap {
    flex: 0 0 45%;
    aspect-ratio: auto;
  }
}
.p-case__item--featured .p-case__title {
  font-size: 1.375rem;
}
.p-case__figure {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(26, 26, 26, 0.08);
}
.p-case__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.2s ease-in-out;
}
.p-case__link:hover, .p-case__link:focus-visible {
  box-shadow: 0 0.5rem 1.5rem rgba(26, 26, 26, 0.08);
}
.p-case__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.p-case__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(26, 26, 26, 0.6);
}
.p-case__play::before {
  content: "";
  margin-left: 0.25rem;
  border-style: solid;
  border-width: 0.625rem 0 0.625rem 1rem;
  border-color: transparent transparent transparent #fff;
}
.p-case__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.25rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-case__body {
    justify-content: center;
  }
}
.p-case__video-label {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--color-accent);
}
.p-case__title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}
.p-case__caption {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.p-price__heading {
  margin-bottom: 1.75rem;
}
.p-price__card {
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(26, 26, 26, 0.08);
  margin-bottom: 2rem;
}
.p-price__label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-muted);
}
.p-price__amount {
  display: block;
  font-weight: 600;
  font-size: clamp(1.75rem, 1.5rem + 2vw, 2.5rem);
  color: var(--color-accent);
  margin-top: 0.5rem;
}
.p-price__pill {
  display: inline-block;
  margin-top: 1.25rem;
}
.p-price__reasons {
  margin-bottom: 2rem;
}
.p-price__reasons-heading {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.p-price__reasons-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.p-price__reasons-item {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);
  line-height: 1.6;
  color: #333333;
}
.p-price__reasons-item::before {
  content: "";
  flex: none;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-accent);
}
.p-price__reasons-note {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-muted);
}
.p-price__cta {
  max-width: 25rem;
  margin-inline: auto;
}

.p-founder__heading {
  margin-bottom: 2.25rem;
}
.p-founder__profile {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(26, 26, 26, 0.08);
}
@media screen and (min-width: 768px) {
  .p-founder__profile {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem;
  }
}
.p-founder__media {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .p-founder__media {
    flex: none;
    width: 20rem;
  }
}
.p-founder__img-wrap {
  flex: 1 1 60%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1rem;
}
.p-founder__pets-img-wrap {
  flex: 1 1 40%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 1rem;
}
.p-founder__content {
  min-width: 0;
}
.p-founder__name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.625rem;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.p-founder__role {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--color-muted-2);
}
.p-founder__text {
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
  line-height: 1.7;
  color: #333333;
  margin-bottom: 1.5rem;
}
.p-founder__cta {
  display: inline-flex;
  width: auto;
}

.p-voice__heading {
  margin-bottom: 0.75rem;
}
.p-voice__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-flow__heading {
  margin-bottom: 0.75rem;
}
.p-flow__list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-bottom: 1rem;
}
.p-flow__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.p-flow__desc {
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
}

.p-faq__heading {
  margin-bottom: 1.5rem;
}

.p-contact__heading {
  margin-bottom: 0.75rem;
}
.p-contact__form {
  border: 0.09375rem dashed var(--color-border-soft);
  border-radius: 0.5rem;
  padding: 0.75rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.p-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.p-contact__label {
  font-size: 0.75rem;
  color: var(--color-muted-2);
}
.p-contact__input, .p-contact__textarea {
  width: 100%;
  min-height: 2.75rem;
  border: none;
  border-bottom: 0.09375rem solid var(--color-border-soft);
  padding: 0.25rem 0;
  background: none;
}
.p-contact__input:focus, .p-contact__textarea:focus {
  border-bottom-color: var(--color-ink);
}
.p-contact__textarea {
  resize: vertical;
  min-height: 3.5rem;
}
.p-contact__submit {
  align-self: flex-start;
  margin-top: 0.25rem;
}
.p-contact__actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}
.p-contact__actions .c-button {
  flex: 1;
}
.p-contact__note {
  font-size: clamp(1rem, 0.9375rem + 0.3vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 2.25rem;
}

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .u-hidden-lg {
    display: none !important;
  }
}
.u-hidden-sp {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .u-hidden-sp {
    display: block !important;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}/*# sourceMappingURL=style.css.map */