@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&display=swap") screen and (min-width: 901px);

:root {
  --bg: #f4eee8;
  --paper: #fffdf9;
  --ink: #2b2b2b;
  --muted: #6d665f;
  --lilac: #686093;
  --lilac-dark: #4b456f;
  --lilac-soft: #d8cfea;
  --green: #789579;
  --line: #e4d0bd;
  --web: #5f7eaa;
  --design: #b17999;
  --system: #6d8d7a;
  --shadow: 0 18px 45px rgba(70, 58, 48, 0.12);
  --radius: 8px;
  --round-font: "Hiragino Maru Gothic ProN", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
}

@media (min-width: 901px) {
  :root {
    --round-font: "Noto Sans JP", "Hiragino Maru Gothic ProN", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.nav-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.site-splash {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  background: var(--bg);
  pointer-events: none;
}

body:not(.is-loading) .site-splash {
  display: none;
}

body.splash-ready .site-splash {
  animation: splashFadeOut 0.52s ease 0.88s forwards;
}

.site-splash img {
  width: clamp(132px, 18vw, 220px);
  height: auto;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  will-change: opacity, transform;
}

body.splash-ready .site-splash img {
  animation: splashLogoReveal 1.36s ease forwards;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .site-header,
body.is-loading main,
body.is-loading .site-footer {
  opacity: 0;
}

body.splash-ready.is-loading .site-header,
body.splash-ready.is-loading main,
body.splash-ready.is-loading .site-footer {
  animation: pageCrossFadeIn 0.62s ease 0.82s forwards;
}

@keyframes splashLogoReveal {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  32% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  62% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-4px) scale(0.99);
  }
}

@keyframes splashFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes pageCrossFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.68s cubic-bezier(0.2, 0.72, 0.22, 1),
    transform 0.68s cubic-bezier(0.2, 0.72, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal[data-reveal="left"] {
  transform: translate3d(-28px, 12px, 0);
}

.reveal[data-reveal="right"] {
  transform: translate3d(28px, 12px, 0);
}

.reveal[data-reveal="scale"] {
  transform: translate3d(0, 14px, 0) scale(0.97);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.sp-br {
  display: none;
}

.pc-br {
  display: inline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, 1120px);
  margin: 0 auto;
  border-radius: 0;
  padding: 30px 24px 18px;
  background: var(--bg);
  backdrop-filter: blur(12px);
  transition:
    top 0.46s cubic-bezier(0.2, 0.78, 0.22, 1),
    width 0.46s cubic-bezier(0.2, 0.78, 0.22, 1),
    padding 0.46s cubic-bezier(0.2, 0.78, 0.22, 1),
    border-radius 0.46s cubic-bezier(0.2, 0.78, 0.22, 1),
    background-color 0.36s ease,
    box-shadow 0.36s ease,
    backdrop-filter 0.36s ease;
}

.site-header.is-compact {
  top: 12px;
  width: min(calc(100% - 32px), 1180px);
  border-radius: 999px;
  padding: 15px 34px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(70, 58, 48, 0.12);
  backdrop-filter: none;
}

.brand {
  position: relative;
  display: block;
  width: 156px;
  height: 85px;
  flex: 0 0 auto;
  transition:
    width 0.46s cubic-bezier(0.2, 0.78, 0.22, 1),
    height 0.46s cubic-bezier(0.2, 0.78, 0.22, 1);
}

.site-header.is-compact .brand {
  width: 150px;
  height: 56px;
}

.brand-logo {
  position: absolute;
  left: 0;
  top: 50%;
  height: auto;
  transition:
    opacity 0.32s ease,
    transform 0.46s cubic-bezier(0.2, 0.78, 0.22, 1),
    width 0.46s cubic-bezier(0.2, 0.78, 0.22, 1);
}

.brand-logo-main {
  width: 156px;
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.site-header.is-compact .brand-logo-main {
  width: 150px;
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.nav-meta,
.nav-leaves,
.menu-close {
  display: none;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition:
    color 0.26s ease,
    transform 0.28s cubic-bezier(0.2, 0.78, 0.22, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.site-nav a:hover {
  color: var(--lilac-dark);
  transform: translateY(-2px);
}

.site-nav a:last-of-type {
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  margin-left: 4px;
  border: 1px solid rgba(176, 147, 195, 0.34);
  border-radius: 999px;
  padding: 9px 18px;
  background: #b093c3;
  color: #fff;
  box-shadow: 0 10px 20px rgba(104, 96, 147, 0.14);
  isolation: isolate;
}

.site-nav a:last-of-type:hover {
  border-color: rgba(176, 147, 195, 0.58);
  color: #fff;
  transform: none;
  box-shadow: 0 10px 20px rgba(104, 96, 147, 0.14);
}

@media (hover: hover) and (min-width: 901px) {
  .site-nav a:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--lilac);
    opacity: 0;
    transform: scaleX(0.18);
    transform-origin: center;
    transition:
      opacity 0.24s ease,
      transform 0.32s cubic-bezier(0.2, 0.78, 0.22, 1);
  }

  .site-nav a:not(:last-of-type):hover::after {
    opacity: 0.72;
    transform: scaleX(1);
  }

  .site-nav a:last-of-type::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: #8f73a7;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.42s cubic-bezier(0.2, 0.78, 0.22, 1);
  }

  .site-nav a:last-of-type:hover::before {
    transform: scaleX(1);
  }
}

.menu-button {
  display: none !important;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 31;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-pad {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 82px 24px;
}

main section[id] {
  scroll-margin-top: 118px;
}

.works {
  max-width: 100%;
  background: transparent;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  .works {
    overflow-x: clip;
  }
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.contact-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.45;
}

.section-heading p,
.contact-intro p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.hero {
  padding-top: 28px;
}

.hero-media {
  position: relative;
  width: min(820px, 88vw);
  margin: 0 auto;
  overflow: visible;
}

.hero-media > img:first-child {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.96) brightness(1.04);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  background: var(--bg);
}

.hero-media::before {
  width: 31%;
  height: 34%;
  left: 4%;
  top: 8%;
}

.hero-media::after {
  width: 26%;
  height: 32%;
  right: 6%;
  bottom: 10%;
}

.hero-leaves {
  position: absolute;
  right: -56px;
  bottom: -12px;
  width: 150px;
  opacity: 0.82;
  transform: rotate(9deg);
  pointer-events: none;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  gap: 24px;
  max-width: 940px;
  margin: 42px auto 0;
}

.hero-copy > div {
  min-width: 0;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3.2vw, 33px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.lead {
  margin: 0 0 24px;
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 700;
}

.intro {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.hero-illust {
  width: 190px;
  opacity: 0.92;
}

.worries {
  text-align: center;
}

.bubble-field {
  position: relative;
  min-height: 510px;
  margin: 6px auto 24px;
}

.bubble {
  position: absolute;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 280px;
  min-height: 134px;
  padding: 30px 34px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
}

.bubble::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -34px -42px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.bubble span {
  display: block;
  line-height: 1.28;
}

.bubble strong {
  display: block;
  color: var(--ink);
  font-family: var(--round-font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.28;
  white-space: nowrap;
}

.bubble-a {
  left: 9%;
  top: 45px;
}

.bubble-a > * {
  transform: translate(-10px, -4px);
}

.bubble-a::before {
  background-image: url("assets/bubble-a.png");
}

.bubble-b {
  left: calc(50% - 140px);
  top: 140px;
  width: 280px;
  min-height: 148px;
}

.bubble-b > * {
  transform: translate(0, 12px);
}

.bubble-b::before {
  background-image: url("assets/bubble-b.png");
}

.bubble-c {
  right: 9%;
  top: 45px;
}

.bubble-c > * {
  transform: translate(-4px, 0);
}

.bubble-c::before {
  background-image: url("assets/bubble-c.png");
}

.bubble-d {
  left: 21%;
  bottom: 0;
  width: 290px;
}

.bubble-d > * {
  transform: translate(-8px, 18px);
}

.bubble-d::before {
  background-image: url("assets/bubble-d.png");
}

.bubble-e {
  right: 21%;
  bottom: 0;
  width: 290px;
}

.bubble-e > * {
  transform: translate(2px, 6px);
}

.bubble-e::before {
  background-image: url("assets/bubble-e.png");
}

.center-note {
  width: min(620px, 92vw);
  margin: 18px auto -12px;
  font-weight: 800;
}

.center-note svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.center-note text {
  fill: var(--ink);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.people-illust {
  width: 200px;
  margin: 0 auto;
}

.feature-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.work-card,
.service-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 100%;
  padding: 30px 28px;
  text-align: center;
}

.feature-card .feature-illust {
  width: 132px;
  height: 102px;
  margin: 16px auto 8px;
  object-fit: contain;
}

.feature-card .feature-title-img {
  width: min(100%, 210px);
  height: auto;
  margin: 0 auto 12px;
  object-fit: contain;
}

.feature-card .feature-title-window {
  padding-right: 28px;
  padding-left: 28px;
}

.feature-card h3,
.service-grid h3,
.work-card h3,
.timeline h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
}

.feature-card .sub {
  margin: 0 0 16px;
  color: #2b2b2b;
  font-weight: 800;
}

.feature-card p,
.work-card p,
.service-grid p,
.timeline p,
.faq p {
  margin: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work-card {
  overflow: hidden;
}

.work-image {
  position: relative;
  overflow: hidden;
}

.work-image picture {
  display: block;
}

.work-image img {
  display: block;
  width: 100%;
  height: auto;
}

.work-badges {
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 7px;
  max-width: calc(100% - 24px);
}

.work-badges span {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 5px 13px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(35, 32, 29, 0.16);
}

.badge-web {
  background: var(--web);
}

.badge-design {
  background: var(--design);
}

.badge-system {
  background: var(--system);
}

.work-card h3,
.work-card p {
  padding: 0 18px;
}

.work-card h3 {
  padding-top: 18px;
}

.work-card p {
  padding-bottom: 22px;
  color: var(--ink);
  font-size: 14px;
}

.annotation,
.phone {
  margin: 26px 0 0;
  color: var(--ink);
  text-align: center;
  font-size: 14px;
}

.phone-number,
.phone-hours {
  display: inline;
}

.voices {
  width: min(100%, 980px);
}

.voice-list {
  display: grid;
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 26px 30px;
  border-radius: var(--radius);
  background: var(--paper);
}

blockquote p {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--round-font);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

blockquote cite {
  color: var(--ink);
  font-style: normal;
}

.voices-illust {
  width: 210px;
  margin: 34px auto 0;
}

.service-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-grid article {
  padding: 28px;
}

.service-grid h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e4d0bd;
}

.service-grid h3 img {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.tags {
  color: var(--ink);
  font-weight: 800;
}

.flow-tabs {
  display: none;
  justify-content: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 26px;
  padding: 0 4px;
}

.flow-tabs button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.flow-tabs button:hover {
  transform: translateY(-3px);
}

.flow-tabs button.is-active {
  border-color: #b093c3;
  background: #b093c3;
  color: white;
}

.timeline {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 0 18px;
  align-items: center;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.flow-panels li {
  display: grid;
}

.flow-panels li.is-active {
  display: grid;
  animation: flowFade 0.24s ease;
}

@keyframes flowFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navCircleBloom {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.035);
  }

  42% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@keyframes navCircleClose {
  0% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }

  58% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) scale(0.035);
  }
}

@keyframes navItemFloatIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes navLeavesFloatIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.9;
  }
}

@keyframes navItemFadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes navLeavesFadeOut {
  0% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

.timeline li > img {
  grid-row: span 2;
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.timeline p {
  color: var(--ink);
}

.faq-illust {
  width: 120px;
  margin: -18px auto 26px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

details:hover,
details[open] {
  border-color: rgba(176, 147, 195, 0.42);
  box-shadow: 0 12px 28px rgba(70, 58, 48, 0.08);
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  min-height: 66px;
  padding: 18px 74px 18px 24px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
  outline: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  content: "";
}

summary::before,
summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--lilac);
  transform-origin: center;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.82, 0.24, 1),
    opacity 0.22s ease,
    background-color 0.22s ease;
}

summary::before {
  transform: translateY(-50%);
}

summary::after {
  transform: translateY(-50%) rotate(90deg);
}

details[open] > summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg) scaleX(0.32);
}

details[open] > summary::before {
  background: var(--green);
}

summary:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(216, 207, 234, 0.72);
}

details p {
  padding: 0 74px 24px 24px;
  color: var(--ink);
  animation: faqAnswerIn 0.28s ease;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact {
  width: min(100%, 980px);
}

.contact-intro {
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.label-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.required-badge,
.optional-badge {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.4;
}

.required-badge {
  background: var(--lilac);
  color: #fff;
}

.optional-badge {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9c5b3;
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fffaf4;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.6;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lilac-soft);
  box-shadow: 0 0 0 4px rgba(216, 207, 234, 0.38);
}

select:hover {
  border-color: var(--lilac-soft);
  background: #fbf8ff;
}

select option:checked {
  background: var(--lilac-soft);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.contact-form .is-invalid {
  border-color: #c85f70;
  background: #fff7f8;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.6em;
  margin: 0;
  color: var(--lilac-dark);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.form-status.is-error {
  color: #a34858;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.full,
.submit-button {
  grid-column: 1 / -1;
}

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

.privacy input {
  width: 18px;
  height: 18px;
}

.submit-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  justify-self: center;
  min-width: 220px;
  border: 1px solid rgba(176, 147, 195, 0.34);
  border-radius: 999px;
  padding: 15px 28px;
  background: #b093c3;
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(104, 96, 147, 0.14);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.2s ease;
}

.submit-button:hover {
  border-color: rgba(176, 147, 195, 0.58);
  box-shadow: 0 10px 20px rgba(104, 96, 147, 0.14);
}

.submit-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: #8f73a7;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.2, 0.78, 0.22, 1);
}

.submit-button:hover::before {
  transform: scaleX(1);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.submit-button:disabled::before {
  transform: scaleX(0);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  width: min(100%, 1120px);
  margin: 20px auto 0;
  padding: 86px 24px 84px;
  color: var(--ink);
  font-size: 14px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-row picture {
  display: block;
}

.footer-logo-text {
  display: block;
  width: 245px;
  max-width: 54vw;
  height: auto;
  margin: 0 0 8px;
}

@media (max-width: 450px) {
  .footer-logo-text {
    width: 100px;
  }
}

.footer-brand p:last-child {
  margin: 0 0 18px;
}

.footer-flowers {
  width: 150px;
  height: auto;
}

.footer-leaves {
  position: absolute;
  right: 10px;
  bottom: 16px;
  width: 116px;
  opacity: 0.8;
}

.page-top {
  position: absolute;
  right: 26px;
  top: -58px;
  display: block;
  width: 84px;
  transition: transform 0.2s ease;
}

.page-top:hover {
  transform: translateY(-6px);
}

.page-top img {
  width: 100%;
}

address {
  font-style: normal;
}

.footer-address-note {
  display: inline-block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

dt {
  color: var(--ink);
  font-weight: 800;
}

dd {
  margin: 0;
}

.copyright {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    z-index: 40;
    width: 100%;
    max-width: none;
  }

  .site-header.is-compact {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 20px;
  }

  body.nav-open .site-header {
    position: fixed;
    top: var(--fixed-layer-top, 0px);
    left: 0;
    z-index: 60;
    pointer-events: none;
  }

  body.nav-open .site-header.is-compact {
    top: calc(var(--fixed-layer-top, 0px) + 10px);
    left: 10px;
  }

  .brand {
    position: relative;
    z-index: 31;
  }

  body.nav-open .brand {
    pointer-events: auto;
  }

  .menu-button {
    --menu-line-gap: clamp(6px, 1.3vw, 8px);
    position: absolute;
    top: 50%;
    right: 24px !important;
    left: auto !important;
    z-index: 9999;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(28px, 5vw, 34px);
    height: clamp(28px, 5vw, 34px);
    background: transparent;
    transform: translateY(-50%);
    transition:
      right 0.46s cubic-bezier(0.2, 0.78, 0.22, 1),
      width 0.36s ease,
      height 0.36s ease;
  }

  .menu-button span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: clamp(24px, 4.7vw, 32px);
    height: 2px;
    margin: 0;
    background: #6d665f;
    border-radius: 999px;
    opacity: 1;
    transform-origin: center;
    transition:
      transform 0.42s cubic-bezier(0.2, 0.85, 0.24, 1),
      opacity 0.24s ease,
      width 0.28s ease,
      background-color 0.2s ease;
  }

  .menu-button span:first-child {
    transform: translate(-50%, calc(-50% - var(--menu-line-gap)));
  }

  .menu-button span:nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .menu-button span:last-child {
    transform: translate(-50%, calc(-50% + var(--menu-line-gap)));
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    min-height: 100svh;
    padding: 76px 38px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    overflow: hidden;
    z-index: 30;
  }

  body.nav-open .site-nav {
    top: var(--fixed-layer-top, 0px);
    pointer-events: auto;
  }

  .site-nav.is-open,
  .site-nav.is-closing {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    gap: 0;
    background: var(--bg);
  }

  .site-nav::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 50%;
    top: -300px;
    width: 860px;
    height: 860px;
    border-radius: 50%;
    background: #fffdf9;
    opacity: 0;
    transform: translateX(-50%) scale(0.035);
    transform-origin: calc(50% + 50vw - 30px) 354px;
  }

  .site-nav.is-open::after,
  .site-nav.is-closing::after {
    content: "";
    position: fixed;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    top: 530px;
    background: var(--bg);
    pointer-events: none;
  }

  .site-nav a,
  .site-nav .nav-meta,
  .site-nav .nav-leaves,
  .site-nav .menu-close {
    position: relative;
    z-index: 3;
  }

  .site-nav.is-open::before {
    display: block;
    animation: navCircleBloom 0.72s cubic-bezier(0.18, 0.9, 0.26, 1) forwards;
  }

  .site-nav.is-closing::before {
    display: block;
    animation: navCircleClose 0.62s cubic-bezier(0.44, 0, 0.82, 0.22) 0.16s both;
  }

  .site-nav.is-open .menu-close,
  .site-nav.is-closing .menu-close {
    display: none !important;
  }

  .site-nav.is-open .menu-close span,
  .site-nav.is-closing .menu-close span {
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    display: block;
    width: clamp(26px, 5.4vw, 40px);
    height: 2px;
    background: #6d665f;
    transform-origin: center;
  }

  .site-nav.is-open .menu-close span:first-child,
  .site-nav.is-closing .menu-close span:first-child {
    transform: rotate(45deg);
  }

  .site-nav.is-open .menu-close span:last-child,
  .site-nav.is-closing .menu-close span:last-child {
    transform: rotate(-45deg);
  }

  .site-nav a {
    width: min(270px, 78vw);
    padding: 0;
    border-bottom: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
    margin-top: 22px;
    opacity: 0;
  }

  .site-nav.is-open a {
    opacity: 1;
    animation: navItemFloatIn 0.88s cubic-bezier(0.2, 0, 0.18, 1) backwards;
  }

  .site-nav.is-open a:nth-of-type(1) {
    animation-delay: 0.28s;
  }

  .site-nav.is-open a:nth-of-type(2) {
    animation-delay: 0.33s;
  }

  .site-nav.is-open a:nth-of-type(3) {
    animation-delay: 0.38s;
  }

  .site-nav.is-open a:nth-of-type(4) {
    animation-delay: 0.43s;
  }

  .site-nav.is-open a:nth-of-type(5) {
    animation-delay: 0.48s;
  }

  .site-nav.is-open a:nth-of-type(6) {
    animation-delay: 0.53s;
  }

  .site-nav.is-closing a {
    opacity: 0;
    animation: navItemFadeOut 0.42s ease-in both;
  }

  .site-nav.is-closing a:nth-of-type(6) {
    animation-delay: 0s;
  }

  .site-nav.is-closing a:nth-of-type(5) {
    animation-delay: 0.04s;
  }

  .site-nav.is-closing a:nth-of-type(4) {
    animation-delay: 0.08s;
  }

  .site-nav.is-closing a:nth-of-type(3) {
    animation-delay: 0.12s;
  }

  .site-nav.is-closing a:nth-of-type(2) {
    animation-delay: 0.16s;
  }

  .site-nav.is-closing a:nth-of-type(1) {
    animation-delay: 0.2s;
  }

  .site-nav a + a {
    margin-top: 22px;
  }

  .site-nav a:hover {
    transform: translateY(-3px);
  }

  .site-nav a:last-of-type {
    display: grid;
    place-items: center;
    width: min(236px, calc(100vw - 116px));
    min-height: 52px;
    margin-top: 30px;
    border-radius: 999px;
    background: #b093c3;
    color: white;
    font-size: 18px;
  }

  .nav-meta {
    display: grid;
    gap: 2px;
    margin-top: 12px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.5;
    opacity: 0;
  }

  .site-nav.is-open .nav-meta {
    opacity: 1;
    animation: navItemFloatIn 0.88s cubic-bezier(0.2, 0, 0.18, 1) 0.6s backwards;
  }

  .site-nav.is-closing .nav-meta {
    opacity: 0;
    animation: navItemFadeOut 0.42s ease-in both;
  }

  .nav-meta p {
    margin: 0;
  }

  .nav-meta span {
    margin-right: 10px;
  }

  .nav-leaves {
    position: fixed !important;
    z-index: 3;
    right: -34px;
    left: auto;
    top: 414px;
    display: block !important;
    width: 134px;
    max-width: none;
    opacity: 0.9;
    transform: rotate(-5deg);
    pointer-events: none;
  }

  .site-nav.is-open .nav-leaves {
    animation: navLeavesFloatIn 0.88s cubic-bezier(0.2, 0, 0.18, 1) 0.66s both;
  }

  .site-nav.is-closing .nav-leaves {
    animation: navLeavesFadeOut 0.42s ease-in forwards;
  }

  .menu-button.is-active,
  .menu-button[aria-expanded="true"] {
    display: flex !important;
    pointer-events: auto;
  }

  .menu-button.is-active span,
  .menu-button[aria-expanded="true"] span {
    margin: 0;
  }

  .menu-button.is-active span:first-child,
  .menu-button[aria-expanded="true"] span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-button.is-active span:nth-child(2),
  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.28);
  }

  .menu-button.is-active span:last-child,
  .menu-button[aria-expanded="true"] span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav {
    align-items: center;
  }

  .site-nav:not(.is-open):not(.is-closing) {
    display: none;
  }

  .site-nav.is-open,
  .site-nav.is-closing {
    flex-direction: column;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    text-align: center;
    width: 100%;
    padding: 0 18px;
    overflow: hidden;
  }

  .hero-illust {
    width: 170px;
    margin: 0 auto;
  }

  .bubble-field {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
    min-height: 0;
    padding: 18px 0 0;
  }

  .bubble {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0 auto;
    min-height: clamp(112px, 28vw, 138px);
    padding: 26px 14px;
    font-size: clamp(11px, 3.1vw, 14px);
  }

  .bubble-b {
    grid-column: 2;
  }

  .bubble-c {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(54vw, 220px);
    margin-top: 0;
  }

  .bubble-d,
  .bubble-e {
    margin-top: -18px;
  }

  .bubble > * {
    transform: none;
  }

  .bubble strong {
    font-size: clamp(12px, 3.35vw, 16px);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .bubble::before {
    inset: -15px -14px;
    background-size: contain;
  }

  .work-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    width: calc(100% + 36px);
    max-width: none;
    margin-right: -18px;
    margin-left: -18px;
    padding: 4px 18px 18px;
    background: transparent;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: pan-x;
    contain: layout paint;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .work-grid::-webkit-scrollbar {
    display: none;
  }

  .work-card {
    flex: 0 0 min(72vw, 300px);
    scroll-snap-align: start;
  }

  .feature-grid,
  .work-grid,
  .service-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 82px 1fr;
  }

  .flow-tabs {
    display: flex;
  }

  .flow-panels li {
    display: none;
  }

  .flow-panels li.is-active {
    display: grid;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding: 58px 18px;
  }

  .page-top {
    right: 18px;
    top: -48px;
    width: 68px;
  }

  .hero.section-pad {
    padding-top: 20px;
  }

  .flow-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 214px;
    overflow: visible;
    margin-right: auto;
    margin-left: auto;
    padding: 0 0 8px;
    scroll-snap-type: none;
  }

  .flow-tabs button {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .site-header.is-compact {
    top: 8px;
    width: calc(100% - 18px);
    padding: 10px 18px;
  }

  .brand {
    width: 116px;
    height: 74px;
  }

  .site-header.is-compact .brand {
    width: 116px;
    height: 44px;
  }

  .brand-logo-main {
    width: 116px;
  }

  body.nav-open .site-header.is-compact {
    top: calc(var(--fixed-layer-top, 0px) + 8px);
    left: 9px;
  }

  .menu-button {
    --menu-line-gap: clamp(5px, 1.7vw, 7px);
    top: 50%;
    right: 20px !important;
    left: auto !important;
    width: clamp(26px, 8.2vw, 30px);
    height: clamp(26px, 8.2vw, 30px);
  }

  .menu-button span {
    width: clamp(22px, 7.5vw, 28px);
  }

  .site-nav.is-open .menu-close,
  .site-nav.is-closing .menu-close {
    top: 30px;
    right: 14px !important;
    left: auto !important;
    width: clamp(28px, 9vw, 34px);
    height: clamp(28px, 9vw, 34px);
  }

  .site-nav.is-open .menu-close span,
  .site-nav.is-closing .menu-close span {
    width: clamp(24px, 8.2vw, 32px);
  }

  .nav-leaves {
    right: -28px;
    top: 410px;
    width: 118px;
  }

  .hero-media {
    width: 100%;
  }

  h1 {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
    line-height: 1.45;
    line-break: anywhere;
  }

  .hero-leaves {
    right: -2px;
    width: 96px;
  }

  .people-illust {
    width: 160px;
  }

  .center-note {
    width: min(420px, 96vw);
    margin-bottom: -8px;
  }

  .center-note text {
    font-size: 22px;
  }

  .contact-form,
  .timeline li {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .timeline li > img {
    grid-row: auto;
  }

  .timeline li > img {
    margin: 0 auto;
    padding-bottom: 15px;
  }

  .contact-form {
    gap: 14px;
  }

  .service-grid h3 {
    align-items: flex-start;
  }

  .service-grid h3 img {
    width: 44px;
    height: 44px;
  }

  .site-footer {
    padding-top: 70px;
  }

  .footer-flowers {
    width: 90px;
  }

  .footer-leaves {
    width: 92px;
  }
}

@media (max-width: 500px) {
  .sp-br {
    display: inline;
  }

  .pc-br {
    display: none;
  }

  .phone-number {
    display: inline-block;
    font-size: 16px;
    font-weight: 800;
  }

  .phone-hours {
    display: inline-block;
    margin-top: 2px;
  }
}

@media (max-width: 415px) {
  .site-nav {
    padding: 70px 24px 0;
  }

  .site-nav::before {
    top: -286px;
    width: 790px;
    height: 790px;
    transform-origin: calc(50% + 50vw - 30px) 340px;
  }

  .site-nav.is-open::after {
    top: 492px;
  }

  .site-nav a {
    width: min(230px, calc(100vw - 72px));
    font-size: 16px;
    margin-top: 18px;
    line-height: 1.45;
  }

  .site-nav a + a {
    margin-top: 18px;
  }

  .site-nav a:last-of-type {
    width: min(198px, calc(100vw - 92px));
    min-height: 48px;
    margin-top: 24px;
    font-size: 16px;
  }

  .nav-meta {
    margin-top: 9px;
    font-size: 13px;
  }

  .nav-leaves {
    top: 382px;
    width: 104px;
  }

  .flow-tabs {
    display: flex;
    max-width: 224px;
    gap: 10px;
    margin-bottom: 24px;
  }

  .flow-tabs button {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }
}

@media (orientation: landscape) and (hover: none) and (pointer: coarse) and (max-height: 540px) {
  .site-header {
    position: static;
    top: auto;
  }

  .work-card {
    flex-basis: min(38vw, 260px);
  }

  .menu-button {
    display: none !important;
  }

  .site-nav,
  .site-nav.is-open,
  .site-nav.is-closing {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-splash {
    display: none;
  }

  body.is-loading {
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.is-loading .site-header,
  body.is-loading main,
  body.is-loading .site-footer {
    opacity: 1;
    animation: none;
  }

  .site-nav.is-open::before,
  .site-nav.is-open a,
  .site-nav.is-open .nav-meta,
  .site-nav.is-open .nav-leaves,
  .site-nav.is-closing::before,
  .site-nav.is-closing a,
  .site-nav.is-closing .nav-meta,
  .site-nav.is-closing .nav-leaves {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
