html, body, div, span, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, address, code, em, img, ins,
small, strong, sub, sup, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, output, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

html {
  font-family: "Inter", sans-serif;
  font-size: 62.5%;
}

/* ============================
   Loader
   ============================ */
.archet-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0D0E10;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
}
.archet-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.archet-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.archet-loader-inner svg path {
  fill: #FCF7EF;
}

.archet-bar-wrap {
  width: 208px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.archet-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #FCF7EF;
  animation: archetBarLoad 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes archetBarLoad {
  0% {
    left: 0%;
    width: 0%;
    opacity: 1;
  }
  65% {
    left: 0%;
    width: 100%;
    opacity: 1;
  }
  80%, 100% {
    left: 100%;
    width: 0%;
    opacity: 0;
  }
}
/* ============================
   Body
   ============================ */
body.home {
  overflow-x: hidden;
}

body.home .header,
body.home .mobile-menu,
body.home .footer {
  display: none;
}

.portfolio-shell {
  box-sizing: border-box;
  --grid-cols: 12;
  --grid-gutter: 24px;
  --grid-baseline: 8px;
  width: 100%;
  min-height: 100vh;
  padding: 24px;
  display: grid;
  grid-template-columns: 246px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  background: #e6e6e6;
  color: #241C17;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

.portfolio-shell * {
  box-sizing: border-box;
}

.portfolio-sidebar,
.portfolio-section {
  min-height: 0;
  border-radius: 24px;
  background: #ffffff;
}

.portfolio-sidebar {
  position: sticky;
  top: 24px;
  height: calc(100vh - 48px);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
}

.portfolio-brand {
  display: flex;
  align-items: center;
  padding: 0 0 22px;
  border-bottom: 1px solid #D9CEC2;
}

.portfolio-brand img {
  width: 100%;
  max-width: 174px;
  height: auto;
}

.portfolio-menu {
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding: 28px 12px 26px;
  border-bottom: 1px solid #D9CEC2;
}

.portfolio-menu a {
  width: fit-content;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}

.portfolio-menu .portfolio-nav-button {
  --c-frame-btn-min-width: 100%;
  --c-frame-btn-min-height: 44px;
  --c-frame-btn-padding: 11px 18px;
  --c-frame-btn-font-size: 12px;
  width: 100%;
  margin-top: 2px;
}

.portfolio-menu a:not(.c-frame-btn):hover,
.portfolio-social a:hover {
  opacity: 0.55;
}

.portfolio-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 12px 0;
}

.portfolio-social a {
  width: fit-content;
  color: #6B6259;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}

.portfolio-help {
  width: 20px;
  height: 20px;
  margin: auto 0 84px 14px;
  display: grid;
  place-items: center;
  border: 1px solid #D9CEC2;
  border-radius: 50%;
  color: #999999;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.portfolio-content {
  display: grid;
  gap: 24px;
  min-width: 0;
  scroll-behavior: smooth;
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  padding: 48px 48px 72px;
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), minmax(0, 1fr));
  column-gap: var(--grid-gutter);
  row-gap: 24px;
  scroll-margin-top: 32px;
}

.portfolio-section > .portfolio-label,
.portfolio-section > .portfolio-title,
.portfolio-section-head,
.works-grid,
.about-profile,
.service-slider,
.service-list,
.flow-steps,
.faq-list,
.contact-lead,
.contact-form-area {
  grid-column: 1/-1;
}

.portfolio-section--works {
  min-height: calc(100vh - 48px);
}

.portfolio-section-head {
  display: grid;
  grid-template-columns: subgrid;
  align-items: start;
  margin-bottom: 0;
}

.portfolio-section-head > div:not(.service-slider-controls) {
  grid-column: 1/7;
}

.portfolio-section-head .portfolio-more {
  grid-column: 10/13;
  justify-self: end;
}

.service-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.portfolio-section-head .service-slider-controls {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  padding-bottom: 8px;
}

.service-slider-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #241C17;
  color: #241C17;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.service-slider-button:not(:disabled):hover {
  background: #241C17;
  color: #FCF7EF;
}

.service-slider-button:disabled {
  cursor: default;
  opacity: 0.28;
}

@supports not (grid-template-columns: subgrid) {
  .portfolio-section-head {
    grid-template-columns: repeat(var(--grid-cols), minmax(0, 1fr));
    column-gap: var(--grid-gutter);
  }
}
.portfolio-label {
  display: block;
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
}

.portfolio-title {
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.portfolio-more {
  --c-frame-btn-min-width: 162px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), minmax(0, 1fr));
  gap: 40px var(--grid-gutter);
}

.work-card {
  grid-column: span 4;
}

.work-card.is-hidden {
  display: none;
}

.work-card-link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.work-card-link:focus-visible {
  outline: 2px solid #FF6200;
  outline-offset: 4px;
}

.work-thumb {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background: #e0e0e0;
  overflow: hidden;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card-link:hover .work-thumb img {
  transform: scale(1.06);
}

.work-thumb-icon {
  position: relative;
  width: 58px;
  height: 44px;
  opacity: 0.35;
}

.work-thumb-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 0;
  width: 32px;
  height: 24px;
  background: #FCF7EF;
  clip-path: polygon(0 100%, 45% 24%, 100% 100%);
}

.work-thumb-icon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 30px;
  background: #FCF7EF;
  clip-path: polygon(0 100%, 50% 18%, 100% 100%);
}

.work-thumb {
  position: relative;
}

.work-thumb::after {
  content: "";
  position: absolute;
  top: calc(50% - 42px);
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transform: translateX(-230%);
}

.work-card-meta {
  margin-top: 13px;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
}

.work-title {
  min-width: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.work-card-link:hover .work-title {
  color: #FF6200;
}

.work-view-site {
  flex: 0 0 auto;
  color: #777777;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.work-tags li {
  padding: 3px 9px;
  background: #e5e5e5;
  color: #555555;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.works-more-wrap {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.works-more-wrap .portfolio-more.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.work-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.work-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.work-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 28, 23, 0.52);
}

.work-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(760px, 100dvh - 48px);
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
  gap: 32px;
  padding: 32px;
  overflow-y: auto;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(36, 28, 23, 0.22);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.28s ease;
}

.work-modal.is-open .work-modal-panel {
  transform: translateY(0) scale(1);
}

.work-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #D9CEC2;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

.work-modal-close span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: #241C17;
}

.work-modal-close span:first-child {
  transform: rotate(45deg);
}

.work-modal-close span:last-child {
  transform: rotate(-45deg);
}

.work-modal-gallery {
  display: grid;
  gap: 12px;
  align-self: start;
}

.work-modal-image {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e0e0e0;
}

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

.work-modal-image-placeholder {
  color: #777777;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-modal-body {
  padding: 20px 44px 12px 0;
}

.work-modal-title-row {
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.work-modal-title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}

.work-modal-details {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.work-modal-details p {
  color: #6B6259;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

.work-modal-data {
  margin-top: 28px;
  border-top: 1px solid #D9CEC2;
}

.work-modal-data div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #D9CEC2;
}

.work-modal-data div:last-child {
  border-bottom: none;
}

.work-modal-data dt {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.7;
}

.work-modal-data dd {
  color: #6B6259;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.work-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.work-modal-tags li {
  padding: 5px 10px;
  background: #e5e5e5;
  color: #555555;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.work-modal-site {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #777777;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: none;
}
.work-modal-site img {
  width: 12px;
  height: 12px;
  display: block;
}

.work-modal-site.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.about-profile {
  margin-top: 8px;
  display: grid;
  grid-template-columns: subgrid;
  align-items: start;
}

@supports not (grid-template-columns: subgrid) {
  .about-profile {
    grid-template-columns: repeat(var(--grid-cols), minmax(0, 1fr));
    column-gap: var(--grid-gutter);
  }
}
.about-visual {
  grid-column: 1/6;
}

.about-body {
  grid-column: 6/13;
  padding-left: 20px;
}

.about-visual {
  align-self: start;
}

.about-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.about-body {
  padding-top: 0;
}

.about-catch {
  margin-bottom: 24px;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.about-name-en {
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.about-name-ja {
  margin-bottom: 36px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}

.about-data {
  display: grid;
  border-top: 1px solid #999999;
}

.about-data div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #999999;
}

.about-data dt {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.8;
}

.about-data dd {
  color: #6B6259;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.service-slider {
  overflow: hidden;
  grid-column: 1/-1;
}

.service-list {
  --service-card-gap: 24px;
  --service-card-width: calc((100% - var(--service-card-gap)) / 2.15);
  display: flex;
  gap: var(--service-card-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  align-items: flex-start;
  grid-column: 1/-1;
}

.service-list::-webkit-scrollbar {
  display: none;
}

.service-detail {
  display: flex;
  flex-direction: column;
  flex: 0 0 var(--service-card-width);
  row-gap: 0;
}

.service-visual {
  aspect-ratio: 3/2;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 14px;
  color: #241C17;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.service-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-title {
  margin-top: 28px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}

.service-text {
  color: #6B6259;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

.service-block {
  margin-top: 0;
  padding: 22px 0;
  border-bottom: 1px solid #999999;
}

.service-block-title {
  position: relative;
  display: block;
  margin-bottom: 0;
  padding-right: 30px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  list-style: none;
  transition: margin-bottom 0.3s ease;
}

.service-block-title::-webkit-details-marker {
  display: none;
}

.service-block-title::before,
.service-block-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 14px;
  height: 2px;
  background: #241C17;
  transform: translateY(-50%);
  transition: transform 0.24s ease;
}

.service-block-title::after {
  transform: translateY(-50%) rotate(90deg);
}

.service-block[open] .service-block-title {
  margin-bottom: 12px;
}

.service-block[open] .service-block-title::after {
  transform: translateY(-50%) rotate(0deg);
}

.service-tags-panel {
  overflow: hidden;
}

.service-block.is-enhanced:not([open]) .service-tags-panel {
  height: 0;
}

.service-block.is-enhanced .service-tags-panel {
  transition: height 0.3s ease;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 6px;
}

.service-tags li {
  padding: 4px 9px;
  background: #241C17;
  color: #FCF7EF;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 26px;
  margin-top: 26px;
  padding: 22px 0;
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
}

.service-price span {
  font-size: 12px;
  font-weight: 900;
}

.service-price strong {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
}

.service-button {
  --c-frame-btn-min-width: 100%;
  --c-frame-btn-min-height: 62px;
  --c-frame-btn-font-size: 15px;
  margin-top: auto;
  width: 100%;
  align-self: end;
  border-radius: 0;
  cursor: pointer;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.service-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 28, 23, 0.52);
}

.service-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(720px, 100dvh - 48px);
  padding: 40px;
  overflow-y: auto;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(36, 28, 23, 0.22);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.28s ease;
}

.service-modal.is-open .service-modal-panel {
  transform: translateY(0) scale(1);
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #D9CEC2;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

.service-modal-close span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: #241C17;
}

.service-modal-close span:first-child {
  transform: rotate(45deg);
}

.service-modal-close span:last-child {
  transform: rotate(-45deg);
}

.service-modal-head {
  display: grid;
  grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
  gap: 40px;
  align-items: start;
  padding-right: 40px;
}

.service-modal-visual {
  aspect-ratio: 3/2;
  display: grid;
  place-items: center;
  color: #241C17;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
}

.service-modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-modal-visual img:not([hidden]) + span {
  display: none;
}

.service-modal-title-group {
  min-width: 0;
}

.service-modal-title {
  margin-top: 4px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}

.service-modal-lead {
  margin-top: 12px;
  color: #6B6259;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.service-modal-lead-details {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.service-modal-lead-details p {
  color: #6B6259;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.service-modal-content {
  margin-top: 24px;
  display: block;
}

.service-modal-scope,
.service-modal-deliverables,
.service-modal-duration,
.service-modal-price,
.service-modal-contact {
  width: 100%;
}

.service-modal-scope {
  min-height: 0;
}

.service-modal-label {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #D9CEC2;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.6;
}

.service-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 6px;
}

.service-modal-tags li,
.service-modal-list li {
  padding: 5px 10px;
  background: #e5e5e5;
  color: #555555;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.service-modal-deliverables {
  margin-top: 22px;
}

.service-modal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 6px;
}

.service-modal-duration {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 26px;
  margin-top: 24px;
  padding: 16px 0;
  border-top: 1px solid #D9CEC2;
  border-bottom: 1px solid #D9CEC2;
}

.service-modal-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 26px;
  margin-top: -1px;
  padding: 16px 0;
  border-bottom: 1px solid #D9CEC2;
}

.service-modal-duration span,
.service-modal-price span {
  font-size: 12px;
  font-weight: 900;
}

.service-modal-duration strong,
.service-modal-price strong {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
}

.service-modal-contact {
  --c-frame-btn-min-width: 100%;
  --c-frame-btn-min-height: 62px;
  --c-frame-btn-font-size: 15px;
  margin-top: 24px;
  width: 100%;
}

.faq-item p {
  color: #6B6259;
  font-size: 13px;
  line-height: 1.8;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.flow-step {
  padding: 36px 36px 44px;
}

.flow-step:not(:last-child) {
  border-right: 1px dashed #D9CEC2;
}

.flow-step-top {
  margin-bottom: 22px;
  text-align: center;
}

.flow-step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #241C17;
}

.flow-step-num {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #241C17;
}

.flow-step-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
}
.flow-step-illustration svg {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  overflow: visible;
}

#flow-step1 #ll1 {
  animation: s1-lineL 4s ease-in-out infinite 0s;
}

#flow-step1 #ll2 {
  animation: s1-lineL 4s ease-in-out infinite 0.15s;
}

#flow-step1 #ll3 {
  animation: s1-lineL 4s ease-in-out infinite 0.3s;
}

#flow-step1 #rl1 {
  animation: s1-lineR 4s ease-in-out infinite 0.8s;
}

#flow-step1 #rl2 {
  animation: s1-lineR 4s ease-in-out infinite 0.95s;
}

#flow-step1 #rl3 {
  animation: s1-lineR 4s ease-in-out infinite 1.1s;
}

@keyframes s1-lineL {
  0%, 100% {
    transform: translateX(-8px);
    opacity: 0;
  }
  10% {
    transform: translateX(0);
    opacity: 1;
  }
  75% {
    transform: translateX(0);
    opacity: 1;
  }
  88% {
    transform: translateX(-8px);
    opacity: 0;
  }
}
@keyframes s1-lineR {
  0%, 100% {
    transform: translateX(8px);
    opacity: 0;
  }
  10% {
    transform: translateX(0);
    opacity: 1;
  }
  75% {
    transform: translateX(0);
    opacity: 1;
  }
  88% {
    transform: translateX(8px);
    opacity: 0;
  }
}
#flow-step2 #s2-cursor {
  animation: s2-move 3s ease-in-out infinite;
}

@keyframes s2-move {
  0%, 100% {
    transform: translate(123px, 94px);
  }
  30% {
    transform: translate(123px, 94px);
  }
  50% {
    transform: translate(100px, 56px);
  }
  65% {
    transform: translate(100px, 56px);
  }
  82% {
    transform: translate(67px, 85px);
  }
}
#flow-step3 .cl {
  opacity: 0;
}

#flow-step4 svg {
  overflow: hidden;
}

.flow-step-heading {
  margin-bottom: 20px;
  padding: 11px 36px 11px 18px;
  background: #241C17;
  color: #FCF7EF;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

.flow-step-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
  color: #6B6259;
}

.faq-list {
  margin-top: 46px;
  display: flex;
  gap: 48px;
}

.faq-col {
  flex: 1;
  min-width: 0;
}

.faq-item {
  border-top: 1px solid #D9CEC2;
  border-bottom: 1px solid #D9CEC2;
  margin-top: -1px;
}

.faq-item:first-child {
  border-top: none;
  margin-top: 0;
}

.faq-item summary {
  position: relative;
  min-height: 60px;
  padding: 20px 48px 20px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 16px;
  height: 2px;
  background: #241C17;
  transform: translateY(-50%);
  transition: transform 0.32s cubic-bezier(0.45, 0, 0.2, 1);
}

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

.faq-item.is-open summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item p {
  color: #6B6259;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

.faq-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.42s cubic-bezier(0.45, 0, 0.2, 1);
}

.faq-panel p {
  padding: 0 48px 24px 12px;
}

.contact-lead {
  max-width: 680px;
  margin-top: 28px;
  color: #6B6259;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

.contact-form-area {
  margin-top: 40px;
  max-width: none;
}

.contact-form-area .wpcf7 {
  padding: 42px 42px 52px;
  border-radius: 16px;
  background: #f5f5f5;
}

.contact-form-area .wrap-form-contact {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), minmax(0, 1fr));
  gap: 16px var(--grid-gutter);
}

.contact-form-area .item-form-contact {
  display: grid;
  gap: 8px;
  grid-column: span 6;
}

.contact-form-area .detail-form-contact {
  margin-top: 0;
}

.contact-form-area .item-form-contact:first-child,
.contact-form-area .item-form-contact:nth-child(6),
.contact-form-area .item-form-contact:nth-child(7) {
  grid-column: 1/-1;
}

.contact-form-area .heading-form-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #241C17;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.contact-form-area .contact-label {
  margin-left: 0;
  padding: 0;
  background: transparent;
  color: #A94D38;
  font-size: 12px;
  font-weight: 900;
}

.contact-form-area .detail-form-contact input[type=text],
.contact-form-area .detail-form-contact input[type=email],
.contact-form-area .detail-form-contact input[type=tel],
.contact-form-area .detail-form-contact input[type=url],
.contact-form-area .detail-form-contact input[type=number],
.contact-form-area .detail-form-contact select,
.contact-form-area .detail-form-contact textarea {
  width: 100%;
  min-height: 60px;
  padding: 13px 16px;
  border: none;
  border-radius: 8px;
  background-color: #ffffff;
  color: #241C17;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  box-shadow: none;
}

.contact-form-area .detail-form-contact input[type=text]::placeholder,
.contact-form-area .detail-form-contact input[type=email]::placeholder,
.contact-form-area .detail-form-contact input[type=tel]::placeholder,
.contact-form-area .detail-form-contact input[type=url]::placeholder,
.contact-form-area .detail-form-contact input[type=number]::placeholder,
.contact-form-area .detail-form-contact textarea::placeholder {
  color: #B7ACA1;
}

.contact-form-area .detail-form-contact input[type=text]:focus,
.contact-form-area .detail-form-contact input[type=email]:focus,
.contact-form-area .detail-form-contact input[type=tel]:focus,
.contact-form-area .detail-form-contact input[type=url]:focus,
.contact-form-area .detail-form-contact input[type=number]:focus,
.contact-form-area .detail-form-contact select:focus,
.contact-form-area .detail-form-contact textarea:focus {
  outline: none;
  box-shadow: none;
}

.contact-form-area .detail-form-contact select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='%23999999' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.4' d='m4 6 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 14px;
  padding-right: 42px;
}

.contact-form-area .detail-form-contact textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form-area .wpcf7 .center {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #6B6259;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.contact-form-area .wpcf7 .center .wpcf7-acceptance {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}

.contact-form-area .wpcf7 .center .wpcf7-list-item {
  margin: 0;
}

.contact-form-area .wpcf7 .center .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  line-height: 1.5;
}

.contact-form-area .center .btn {
  color: #241C17;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-area .center .wpcf7-acceptance input[type=checkbox] {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #241C17;
}

.contact-form-area .btn-wrap {
  position: relative;
  margin-top: 24px;
  display: block;
  width: 100%;
  height: 72px;
  border: 2px solid #FF6200;
  border-radius: 0;
  overflow: hidden;
  background: #ffffff;
  box-sizing: border-box;
}

.contact-form-area .btn-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background: linear-gradient(135deg, #FF6200 0%, #FF9500 100%);
  border-radius: 28px;
  transition: border-radius 0.36s cubic-bezier(0.45, 0, 0.2, 1);
  will-change: border-radius;
  pointer-events: none;
}

.contact-form-area .btn-wrap:hover::before,
.contact-form-area .btn-wrap:focus-within::before {
  border-radius: 0;
}

.contact-form-area .btn-wrap input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 15px 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #FCF7EF;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  box-sizing: border-box;
}

.contact-form-area .btn-wrap input[type=submit]:hover,
.contact-form-area .btn-wrap input[type=submit]:focus-visible {
  background: transparent;
  color: #FCF7EF;
}

.contact-form-area .btn-wrap .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 18px;
  z-index: 2;
  margin: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact-form-area .reCAPTCHA {
  margin: 24px 0 0;
  color: #6B6259;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.contact-form-area .reCAPTCHA a {
  color: #241C17;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.thanks-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.thanks-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 28, 23, 0.58);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.thanks-modal-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 46px 48px 44px;
  border: 1px solid rgba(217, 206, 194, 0.86);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 98, 0, 0.08) 0%, rgba(255, 255, 255, 0) 34%), #fffaf4;
  box-shadow: 0 30px 90px rgba(36, 28, 23, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.28s ease;
  overflow: hidden;
}

.thanks-modal-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #FF6200 0%, #FF9500 100%);
}

.thanks-modal.is-open .thanks-modal-panel {
  transform: translateY(0) scale(1);
}

.thanks-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 206, 194, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.thanks-modal-close:hover,
.thanks-modal-close:focus-visible {
  border-color: #FF6200;
  background: #ffffff;
  transform: rotate(90deg);
}

.thanks-modal-close span {
  position: absolute;
  width: 15px;
  height: 2px;
  background: #241C17;
}

.thanks-modal-close span:first-child {
  transform: rotate(45deg);
}

.thanks-modal-close span:last-child {
  transform: rotate(-45deg);
}

.thanks-modal-title {
  max-width: 430px;
  margin-top: 10px;
  padding-right: 36px;
  color: #241C17;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}

.thanks-modal-lead {
  max-width: 430px;
  margin-top: 22px;
  color: #6B6259;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.thanks-modal-button {
  width: fit-content;
  min-width: 168px;
  min-height: 50px;
  margin-top: 30px;
  padding: 14px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FF6200;
  border-radius: 999px;
  background: #FF6200;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.thanks-modal-button:hover,
.thanks-modal-button:focus-visible {
  border-color: #241C17;
  background: #241C17;
  transform: translateY(-1px);
}

.thanks-modal-button span {
  position: relative;
  z-index: 1;
}

.thanks-modal-button::before {
  display: none;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.privacy-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 28, 23, 0.52);
}

.privacy-modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(720px, 100dvh - 48px);
  padding: 40px;
  overflow-y: auto;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(36, 28, 23, 0.22);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.28s ease;
}

.privacy-modal.is-open .privacy-modal-panel {
  transform: translateY(0) scale(1);
}

.privacy-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #D9CEC2;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

.privacy-modal-close span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: #241C17;
}

.privacy-modal-close span:first-child {
  transform: rotate(45deg);
}

.privacy-modal-close span:last-child {
  transform: rotate(-45deg);
}

.privacy-modal-title {
  margin-top: 4px;
  padding-right: 44px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.25;
}

.privacy-modal-content {
  margin-top: 28px;
  display: grid;
  gap: 20px;
}

.privacy-modal-lead {
  color: #6B6259;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
}

.privacy-modal-content section {
  padding-top: 18px;
  border-top: 1px solid #D9CEC2;
}

.privacy-modal-content h3 {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.6;
}

.privacy-modal-content p {
  margin-top: 8px;
  color: #6B6259;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
}

.privacy-modal-content ul {
  margin-top: 10px;
  display: grid;
  gap: 6px;
  padding-left: 0;
  color: #6B6259;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
  list-style: none;
}

.privacy-modal-content li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.2em;
}
.privacy-modal-content li::before {
  content: "・";
}

.privacy-modal-list-nested {
  margin-left: 1em;
}

#about,
#service,
#flow {
  background: #ffffff;
}

#faq::after {
  content: "";
  position: absolute;
  top: -80px;
  right: 40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .work-card {
    grid-column: span 6;
  }
  .flow-step {
    padding: 24px 0;
  }
}
.portfolio-mobile-bar {
  display: none;
}

.portfolio-overlay {
  display: none;
}

.portfolio-hamburger {
  display: none;
}

@media (max-width: 960px) {
  body.home {
    overflow: auto;
  }
  .portfolio-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 200;
    height: 52px;
    padding: 0 18px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
  .portfolio-brand-mobile img {
    display: block;
    height: 20px;
    width: auto;
  }
  .portfolio-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .portfolio-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #241C17;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.45, 0, 0.2, 1), opacity 0.3s ease;
  }
  .portfolio-hamburger.is-open {
    opacity: 0;
    pointer-events: none;
  }
  .portfolio-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 250;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .portfolio-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .portfolio-shell {
    min-height: 100vh;
    height: auto;
    padding: 12px;
    padding-top: 74px;
    gap: 12px;
    grid-template-columns: 1fr;
  }
  .portfolio-sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .portfolio-sidebar-close span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    border-radius: 2px;
  }
  .portfolio-sidebar-close span:nth-child(1) {
    transform: rotate(45deg);
  }
  .portfolio-sidebar-close span:nth-child(2) {
    transform: rotate(-45deg);
  }
  .portfolio-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100dvh;
    z-index: 300;
    padding: 24px 20px;
    border-radius: 0 20px 20px 0;
    overflow-y: auto;
    flex-direction: column;
    transition: left 0.32s cubic-bezier(0.45, 0, 0.2, 1);
  }
  .portfolio-sidebar.is-open {
    left: 0;
  }
  .portfolio-brand {
    padding: 0 0 22px;
  }
  .portfolio-brand img {
    max-width: 150px;
  }
  .portfolio-menu {
    padding: 22px 12px 22px;
    border-bottom: 1px solid #D9CEC2;
    flex-direction: column;
    gap: 24px;
  }
  .portfolio-menu a {
    font-size: 14px;
  }
  .portfolio-menu .portfolio-nav-button {
    --c-frame-btn-min-height: 44px;
    --c-frame-btn-font-size: 12px;
    width: 100%;
  }
  .portfolio-social {
    display: flex;
    padding: 18px 12px 0;
  }
  .portfolio-help {
    display: grid;
  }
  .portfolio-content {
    height: auto;
    border-radius: 16px;
    gap: 12px;
  }
  .portfolio-section--works {
    min-height: auto;
  }
  .portfolio-section {
    padding: 36px 28px 52px;
    border-radius: 16px;
  }
  .portfolio-section-head {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .portfolio-section-head > div:not(.service-slider-controls),
  .portfolio-section-head .portfolio-more {
    grid-column: 1/-1;
    justify-self: start;
  }
  .portfolio-section-head .service-slider-controls {
    padding-bottom: 0;
  }
  .about-profile {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-visual,
  .about-body {
    grid-column: 1/-1;
  }
  .service-list {
    --service-card-gap: 16px;
    --service-card-width: calc((100% - var(--service-card-gap)) / 1.35);
  }
  .service-title {
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 18px;
  }
  .service-block {
    padding: 16px 0;
  }
  .service-price {
    margin-top: 18px;
    padding: 16px 0;
  }
  .flow-steps {
    grid-template-columns: 1fr;
  }
  .flow-step:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #D9CEC2;
  }
  .portfolio-more {
    --c-frame-btn-min-width: 150px;
  }
  .work-modal-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .work-modal-body {
    padding: 0;
  }
  .service-modal-panel {
    width: min(760px, 100%);
    padding: 32px 28px;
  }
  .service-modal-head {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-right: 44px;
  }
}
@media (max-width: 640px) {
  .portfolio-shell {
    padding: 10px;
    padding-top: 72px;
    gap: 10px;
  }
  .portfolio-section {
    padding: 28px 18px 44px;
  }
  .work-card {
    grid-column: span 12;
  }
  .work-modal {
    padding: 14px;
  }
  .work-modal-panel {
    max-height: calc(100dvh - 28px);
    padding: 18px;
    border-radius: 16px;
  }
  .work-modal-image {
    aspect-ratio: 1/1;
  }
  .work-modal-data div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .service-modal {
    padding: 14px;
  }
  .service-modal-panel {
    max-height: calc(100dvh - 28px);
    padding: 24px 18px;
    border-radius: 16px;
  }
  .service-modal-head {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-right: 42px;
  }
  .service-modal-content {
    margin-top: 24px;
  }
  .privacy-modal {
    padding: 14px;
  }
  .privacy-modal-panel {
    max-height: calc(100dvh - 28px);
    padding: 24px 18px;
    border-radius: 16px;
  }
  .thanks-modal {
    padding: 14px;
  }
  .thanks-modal-panel {
    padding: 34px 22px 26px;
    border-radius: 14px;
  }
  .thanks-modal-close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }
  .thanks-modal-title {
    padding-right: 34px;
    font-size: 28px;
    line-height: 1.25;
  }
  .thanks-modal-lead {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.9;
  }
  .thanks-modal-button {
    width: 100%;
    margin-top: 24px;
  }
  .about-data div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .service-list {
    --service-card-width: min(86vw, 320px);
  }
  .service-detail {
    display: flex;
  }
  .service-body {
    display: flex;
  }
  .service-visual {
    aspect-ratio: 3/2;
  }
  .service-title {
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 17px;
  }
  .service-block {
    padding: 14px 0;
  }
  .service-price {
    gap: 14px;
    margin-top: 14px;
    padding: 14px 0;
  }
  .service-button {
    --c-frame-btn-min-height: 52px;
  }
  .flow-steps {
    grid-template-columns: 1fr;
  }
  .flow-step:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #D9CEC2;
  }
  .flow-step:not(:last-child) {
    border-bottom: 1px solid #D9CEC2;
  }
  .flow-step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }
  .faq-list {
    flex-direction: column;
    gap: 0;
  }
  .faq-col:not(:first-child) .faq-item:first-child {
    border-top: 1px solid #D9CEC2;
    margin-top: -1px;
  }
  .contact-form-area .wpcf7 {
    padding: 20px;
    border-radius: 12px;
  }
  .contact-form-area .item-form-contact {
    grid-column: 1/-1;
  }
  .contact-form-area .btn-wrap input[type=submit] {
    min-height: 52px;
  }
}
.portfolio-menu a:not(.portfolio-nav-button).is-active {
  color: #FF6200;
}

.portfolio-label.js-reveal {
  transform: translateY(12px);
}

.portfolio-title.js-reveal {
  transform: translateY(16px);
}
