:root {
  --ink: #151713;
  --green: #194d29;
  --green-dark: #123a1f;
  --sage: #aeb99b;
  --sage-light: #dfe4d5;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #c9cbc5;
  --muted: #6e726b;
  --shadow: 0 12px 28px rgba(20, 36, 25, 0.12);
  --sans: "Helvetica Neue", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--green);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 4px;
}

.section-shell,
.site-header {
  width: min(1460px, calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.global-nav a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 3.5vw, 62px);
  align-items: center;
  padding-block: clamp(64px, 7vw, 112px) 34px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 64px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.055em;
}

.hero-lead {
  margin: 24px 0 30px;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.9;
  word-break: auto-phrase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 0 28px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.button-primary {
  min-width: 230px;
  color: var(--white);
  background: var(--green);
  transition: background 160ms ease, transform 160ms ease;
}

.button-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.button-secondary {
  min-width: 210px;
  border: 1px solid var(--green);
  color: var(--green);
  background: var(--white);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-2px);
}

.browser-card {
  overflow: hidden;
  border: 1px solid #9fa49d;
  background: var(--white);
  box-shadow: var(--shadow);
}

.browser-topbar {
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  font-size: 8px;
}

.browser-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.browser-nav {
  display: flex;
  gap: 24px;
}

.browser-contact,
.browser-small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  font-weight: 700;
}

.browser-contact {
  min-width: 105px;
  min-height: 27px;
}

.browser-hero {
  min-height: 246px;
  display: grid;
  grid-template-columns: 36% 64%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.browser-copy {
  position: relative;
  z-index: 1;
  padding: 42px 22px 28px 38px;
  background: var(--white);
}

.browser-copy::after {
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: 20px;
  width: 42px;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.browser-heading {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 700;
  line-height: 1.55;
}

.browser-copy > p:not(.browser-heading) {
  margin: 0 0 17px;
  font-size: 8px;
  line-height: 1.85;
}

.browser-small-button {
  min-width: 138px;
  min-height: 32px;
  font-size: 8px;
}

.type-visual {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: #f7f8f4;
}

.type-word {
  position: absolute;
  right: -15%;
  bottom: -26%;
  color: var(--green-dark);
  font-size: clamp(112px, 12vw, 218px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
}

.type-label {
  position: absolute;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.type-label-web {
  top: 38px;
  right: 15%;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--ink);
}

.type-label-graphic {
  right: 28%;
  bottom: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
}

.type-block {
  position: absolute;
  bottom: -2px;
  left: 2%;
  width: 28%;
  height: 44px;
  background: var(--green);
}

.type-dot {
  position: absolute;
  top: 52px;
  left: 32%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-dark);
}

.type-circle {
  position: absolute;
  top: -58px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--sage-light);
}

.browser-services {
  padding: 15px 38px 20px;
}

.browser-service-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 8px;
}

.browser-service-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.browser-service-items > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 14px;
  border-right: 1px solid var(--line);
}

.browser-service-items > div:first-child {
  padding-left: 0;
}

.browser-service-items > div:last-child {
  border-right: 0;
}

.browser-service-items p {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  font-size: 9px;
  line-height: 1.4;
}

.browser-service-items small {
  color: #4c4f49;
  font-size: 7px;
}

.mini-icon {
  position: relative;
  flex: 0 0 27px;
  width: 27px;
  height: 25px;
  display: block;
}

.mini-icon-screen {
  border: 1.5px solid var(--ink);
}

.mini-icon-screen::before {
  position: absolute;
  right: 6px;
  bottom: -5px;
  left: 6px;
  height: 4px;
  border-top: 1.5px solid var(--ink);
  border-right: 1.5px solid transparent;
  border-left: 1.5px solid transparent;
  content: "";
}

.mini-icon-screen::after {
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  height: 3px;
  background: var(--sage);
  content: "";
}

.mini-icon-page {
  border: 1.5px solid var(--ink);
}

.mini-icon-page::before,
.mini-icon-page::after {
  position: absolute;
  content: "";
}

.mini-icon-page::before {
  top: 5px;
  left: 4px;
  width: 5px;
  height: 12px;
  background: var(--sage);
}

.mini-icon-page::after {
  top: 5px;
  right: 4px;
  width: 9px;
  height: 1px;
  background: var(--ink);
  box-shadow: 0 5px 0 var(--ink), 0 10px 0 var(--ink);
}

.mini-icon-ticket {
  width: 24px;
  height: 13px;
  margin-left: 2px;
  border: 1.5px solid var(--ink);
  transform: rotate(-42deg);
}

.mini-icon-ticket::after {
  position: absolute;
  top: 4px;
  right: 3px;
  left: 3px;
  border-top: 1px dashed var(--sage);
  content: "";
}

.service-overview {
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: start;
  padding-block: clamp(62px, 7vw, 104px) clamp(58px, 6vw, 88px);
}

.service-overview-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 3.25vw, 52px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.025em;
  word-break: auto-phrase;
}

.service-overview-copy > p:last-child {
  max-width: 570px;
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.9;
  word-break: auto-phrase;
}

.service-area-list {
  border-top: 1px solid var(--green);
}

.service-area-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 160ms ease;
}

.service-area-item:hover,
.service-area-item:focus-visible {
  background: #f3f2e9;
}

.service-area-number {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.service-area-content {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.service-area-label {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-area-content strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.55;
  word-break: auto-phrase;
}

.service-area-content > span:last-child {
  font-size: 17px;
  line-height: 1.8;
  word-break: auto-phrase;
}

.service-area-arrow {
  color: var(--green);
  font-size: 22px;
  transition: transform 160ms ease;
}

.service-area-item:hover .service-area-arrow,
.service-area-item:focus-visible .service-area-arrow {
  transform: translateX(5px);
}

.works {
  max-width: 1200px;
  padding-block: clamp(66px, 7vw, 104px) clamp(72px, 8vw, 116px);
  border-top: 1px solid var(--line);
}

.works-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: end;
}

.works-heading h1,
.works-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: 0.025em;
  word-break: auto-phrase;
}

.works-standalone {
  border-top: 0;
  padding-top: clamp(70px, 8vw, 122px);
}

.works-heading > p {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.9;
  word-break: auto-phrase;
}

.work-feature {
  display: block;
  margin-top: clamp(34px, 4vw, 54px);
  border-top: 4px solid var(--green);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.work-detail-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(30px, 4vw, 48px) clamp(30px, 4vw, 52px) 30px;
}

.work-detail-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.45;
  word-break: keep-all;
}

.work-site-gate {
  width: calc(100% - clamp(32px, 5vw, 64px));
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background: var(--green);
  transition: background 160ms ease, transform 160ms ease;
}

.work-site-gate > span:first-child {
  display: grid;
  gap: 8px;
}

.work-site-gate small {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.work-site-gate strong {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.45;
}

.work-site-gate-action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 700;
}

.work-site-gate:hover,
.work-site-gate:focus-visible {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.work-detail .work-content {
  padding-top: 10px;
}

.work-detail .work-proof-list {
  margin-top: 0;
}

.work-media {
  position: relative;
  min-width: 0;
  display: block;
  align-self: stretch;
  overflow: hidden;
  padding: 30px;
  background: #eef1eb;
}

.work-media picture {
  display: block;
}

.work-media img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(21, 23, 19, 0.2);
  background: #5d9ca6;
  box-shadow: 0 12px 30px rgba(20, 36, 25, 0.16);
  object-fit: contain;
  transition: transform 240ms ease;
}

.work-media > span {
  position: absolute;
  right: 42px;
  bottom: 42px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--green);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.work-media:hover img,
.work-media:focus-visible img {
  transform: scale(1.012);
}

.work-content {
  min-width: 0;
  padding: 34px clamp(30px, 4vw, 52px) 42px;
}

.work-status {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.work-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.5;
  word-break: keep-all;
}

.work-proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.work-proof-list > div {
  padding: 20px 20px 0;
  border-left: 1px solid var(--line);
}

.work-proof-list > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.work-proof-list dt {
  margin: 0 0 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.work-proof-list dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  word-break: auto-phrase;
}

.works-about-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
}

.works-about-link a {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}

.works-about-link a span {
  transition: transform 160ms ease;
}

.works-about-link a:hover span,
.works-about-link a:focus-visible span {
  transform: translateX(5px);
}

.services {
  padding-block: 0 30px;
}

.section-heading-row,
.mini-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-heading-row {
  margin-bottom: 22px;
}

.section-heading-row h2,
.mini-heading h2 {
  margin: 0;
  white-space: nowrap;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.section-heading-row > span,
.mini-heading > span {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.services {
  max-width: 1200px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.service-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 130px 96px minmax(0, 1fr) 220px;
  grid-template-areas:
    "header visual title footer"
    "header visual description footer";
  gap: 10px 28px;
  align-items: center;
  padding: 34px 8px;
  border-top: 1px solid var(--line);
  background: var(--white);
  transition: background 160ms ease;
}

.service-card:hover {
  background: #f3f2e9;
}

.service-card:last-child:nth-child(odd) {
  grid-column: auto;
}

.service-card-header {
  grid-area: header;
}

.service-visual {
  grid-area: visual;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
}

.service-visual svg {
  width: 100%;
  height: 100%;
  display: block;
  color: var(--green);
}

.service-visual .icon-line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-visual .icon-surface {
  fill: var(--white);
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-visual .icon-soft {
  fill: var(--sage-light);
}

.service-visual .icon-accent {
  fill: var(--green);
}

.service-number {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.4vw, 50px);
  line-height: 1;
}

.service-en {
  margin: 8px 0 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-card h3 {
  grid-area: title;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.45;
  word-break: auto-phrase;
}

.nowrap {
  white-space: nowrap;
}

.service-description {
  grid-area: description;
  max-width: 680px;
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  word-break: auto-phrase;
}

.service-card-footer {
  grid-area: footer;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0 0 0 26px;
  border-top: 0;
  border-left: 1px solid var(--line);
}

.service-card-price {
  margin: 0;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

.service-card-footer a {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}

.service-card-footer a span {
  transition: transform 160ms ease;
}

.service-card-footer a:hover span,
.service-card-footer a:focus-visible span {
  transform: translateX(5px);
}

.service-price {
  margin: 16px 0 0;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.service-choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.service-choice-list a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--green);
}

.service-choice-list a:hover {
  color: var(--green-dark);
}

.service-choice-list span {
  min-width: 0;
  display: grid;
}

.service-choice-list strong {
  font-size: 16px;
  line-height: 1.5;
}

.service-choice-list small {
  font-size: 14px;
  line-height: 1.5;
}

.service-choice-list b {
  flex: 0 0 auto;
  font-weight: 400;
  transition: transform 160ms ease;
}

.service-choice-list a:hover b,
.service-choice-list a:focus-visible b {
  transform: translateX(5px);
}

.service-single-link {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  margin-top: 30px;
  padding: 14px 4px 10px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}

.service-single-link:hover {
  color: var(--green-dark);
}

.device-visual,
.lp-visual,
.print-visual {
  position: relative;
  min-width: 0;
  min-height: 100%;
}

.laptop {
  position: absolute;
  right: 18px;
  bottom: 42px;
  width: 90%;
  max-width: 248px;
}

.laptop-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: 11px;
  border: 8px solid #171816;
  border-radius: 8px 8px 2px 2px;
  background: var(--paper);
  box-shadow: 0 9px 14px rgba(0, 0, 0, 0.12);
}

.screen-logo {
  display: block;
  margin-bottom: 13px;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.screen-heading {
  display: block;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
}

.screen-line {
  display: block;
  height: 2px;
  margin-top: 6px;
  background: var(--line);
}

.line-long {
  width: 42%;
}

.line-short {
  width: 27%;
}

.screen-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 47%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  font-size: 18px;
  font-weight: 700;
  writing-mode: vertical-rl;
  letter-spacing: 0.08em;
}

.laptop-base {
  width: 116%;
  height: 10px;
  margin-left: -8%;
  border-radius: 0 0 40px 40px;
  background: linear-gradient(#a5a6a2, #e5e5e3 45%, #8d8e8a);
}

.phone {
  position: absolute;
  right: 3px;
  bottom: 35px;
  width: 60px;
  height: 128px;
  padding: 17px 7px 8px;
  border: 5px solid #121311;
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 7px 13px rgba(0, 0, 0, 0.2);
}

.phone-speaker {
  position: absolute;
  top: 5px;
  left: 19px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #6e6f6b;
}

.phone-logo {
  display: block;
  font-size: 5px;
  font-weight: 700;
}

.phone-heading {
  display: block;
  margin-top: 13px;
  font-family: var(--serif);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.5;
}

.phone-circle {
  display: block;
  width: 25px;
  height: 25px;
  margin: 20px auto 0;
  border-radius: 50%;
  background: var(--sage);
}

.lp-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
}

.lp-sheet {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 0.76;
  overflow: hidden;
  padding: 19px 16px;
  border: 1px solid #9fa19c;
  background: #fbfbf8;
  box-shadow: 0 9px 15px rgba(0, 0, 0, 0.08);
}

.lp-tag,
.lp-copy,
.lp-button {
  position: relative;
  z-index: 2;
  display: block;
}

.lp-tag {
  margin-bottom: 18px;
  font-size: 6px;
  font-weight: 700;
}

.lp-sheet strong {
  position: relative;
  z-index: 2;
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
}

.lp-copy {
  margin-top: 11px;
  font-size: 7px;
  line-height: 1.7;
}

.lp-button {
  width: 66px;
  margin-top: 11px;
  padding: 4px 7px;
  color: var(--white);
  background: var(--green);
  font-size: 6px;
  font-weight: 700;
  text-align: center;
}

.lp-arch {
  position: absolute;
  z-index: 1;
  top: 36px;
  right: 14px;
  width: 70px;
  height: 110px;
  border-radius: 35px 35px 0 0;
  background: #afbd9e;
}

.lp-vase {
  position: absolute;
  z-index: 2;
  top: 94px;
  right: 34px;
  width: 26px;
  height: 42px;
  border-radius: 40% 40% 34% 34%;
  background: var(--paper);
}

.lp-vase::before {
  position: absolute;
  bottom: 34px;
  left: 12px;
  width: 1px;
  height: 43px;
  background: var(--green-dark);
  box-shadow: 10px 8px 0 -0.2px var(--green-dark), -7px 12px 0 -0.2px var(--green-dark);
  content: "";
}

.lp-points {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.lp-points > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: var(--green);
  font-size: 14px;
}

.lp-points > span:last-child {
  border-right: 0;
}

.lp-points small {
  margin-top: 2px;
  color: var(--ink);
  font-size: 5px;
}

.print-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.poster {
  position: relative;
  overflow: hidden;
  width: 140px;
  height: 200px;
  padding: 17px 15px;
  border: 1px solid #a8aaa5;
  background: var(--paper);
  box-shadow: 0 10px 17px rgba(0, 0, 0, 0.1);
}

.poster-tag {
  display: block;
  margin-bottom: 13px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.poster strong {
  position: relative;
  z-index: 2;
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.55;
}

.poster small {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 15px;
  font-size: 6px;
}

.poster-shape {
  position: absolute;
  border-radius: 50%;
}

.poster-shape-a {
  top: -24px;
  right: -24px;
  width: 80px;
  height: 80px;
  background: #cdd5a8;
}

.poster-shape-b {
  right: -28px;
  bottom: -28px;
  width: 95px;
  height: 95px;
  background: var(--sage);
}

.ticket {
  position: absolute;
  right: 4px;
  bottom: 44px;
  width: 175px;
  height: 76px;
  padding: 13px 15px;
  border: 1px solid #8f918c;
  background: var(--white);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.11);
  transform: rotate(-8deg);
}

.ticket::after {
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  border-left: 1px dashed var(--line);
  content: "";
}

.ticket span,
.ticket strong,
.ticket small {
  display: block;
}

.ticket span {
  font-size: 6px;
  letter-spacing: 0.12em;
}

.ticket strong {
  font-size: 11px;
}

.ticket small {
  margin-top: 4px;
  font-size: 5px;
}

.about-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-block,
.contact-block {
  min-width: 0;
  display: grid;
  align-items: center;
  gap: 30px;
  padding-block: 28px;
}

.about-block {
  grid-template-columns: 90px 1fr;
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.contact-block {
  grid-template-columns: 1fr auto;
  padding-left: 44px;
}

.monogram {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
}

.mini-heading {
  margin-bottom: 10px;
}

.about-contact p {
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  word-break: auto-phrase;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-block: 26px 36px;
}

.footer-brand {
  display: grid;
  gap: 5px;
}

.footer-brand > a {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.footer-brand small {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: var(--green);
  text-decoration-color: currentColor;
}

.policy-shell {
  width: min(920px, calc(100% - 80px));
  padding-block: clamp(72px, 9vw, 128px);
}

.policy-shell h1 {
  max-width: 820px;
  margin: 14px 0 32px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.policy-lead,
.policy-notice {
  margin: 0 0 54px;
  padding: 26px 30px;
  border-left: 5px solid var(--green);
  background: var(--soft);
  font-size: 18px;
  line-height: 1.9;
}

.policy-notice {
  border-left-color: #c49b18;
  background: #fff8d8;
}

.policy-shell section {
  padding-block: 34px;
  border-top: 1px solid var(--line);
}

.policy-shell h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.45;
}

.policy-shell p,
.policy-shell li,
.legal-list dt,
.legal-list dd {
  font-size: 18px;
  line-height: 1.9;
}

.policy-shell ul {
  display: grid;
  gap: 8px;
  padding-left: 1.4em;
}

.policy-shell a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-list > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 30px;
  padding-block: 25px;
  border-bottom: 1px solid var(--line);
}

.legal-list dt {
  font-weight: 700;
}

.legal-list dd {
  margin: 0;
}

.policy-updated {
  margin-top: 40px;
  color: var(--muted);
}

.contact-dialog {
  width: min(520px, calc(100% - 32px));
  padding: 42px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.contact-dialog::backdrop {
  background: rgba(13, 22, 15, 0.55);
}

.contact-dialog h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 25px;
}

.contact-dialog p:not(.eyebrow) {
  margin: 0 0 28px;
  font-size: 16px;
  word-break: auto-phrase;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 15px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
}

.dialog-confirm {
  min-width: 140px;
}

.reference-visual {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  contain: paint;
}

.browser-card.reference-visual {
  width: 100%;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.reference-asset {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.contact-block .mini-heading h2 {
  white-space: nowrap;
}

.reference-asset-hero {
  max-width: 820px;
  margin-inline: auto;
  filter: drop-shadow(0 12px 17px rgba(20, 36, 25, 0.12));
}

.device-visual.reference-visual,
.lp-visual.reference-visual,
.print-visual.reference-visual {
  min-width: 0;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
}

.reference-asset-device {
  max-width: 440px;
}

.reference-asset-lp {
  max-width: 330px;
}

.reference-asset-print {
  max-width: 390px;
}

@media (min-width: 901px) and (max-width: 1350px) {
  .service-card h3 {
    font-size: clamp(28px, 3.1vw, 36px);
  }

  .about-contact {
    grid-template-columns: 1fr;
  }

  .about-block {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-block {
    padding-left: 0;
  }

  .contact-block {
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 16px;
    padding-left: 24px;
  }

  .contact-block .button {
    min-width: 180px;
    gap: 20px;
    padding-inline: 20px;
    white-space: nowrap;
  }

  .contact-block .mini-heading h2 {
    white-space: nowrap;
  }
}

@media (max-width: 1100px) {
  .service-card {
    grid-template-columns: 130px 82px minmax(0, 1fr) 180px;
    gap: 8px 20px;
  }

  .service-visual {
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 900px) {
  .section-shell,
  .site-header {
    width: min(100% - 48px, 1100px);
  }

  .service-overview {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .service-overview-copy {
    max-width: 720px;
  }

  .works-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .works-heading > p {
    max-width: 720px;
  }

  .work-feature {
    display: block;
  }

  .work-media img {
    aspect-ratio: 16 / 10;
  }

  .work-proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-proof-list > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 62px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(42px, 7vw, 62px);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 130px 78px minmax(0, 1fr) 166px;
    gap: 8px 18px;
  }

  .service-visual {
    width: 78px;
    height: 78px;
  }

  .service-description {
    max-width: none;
  }

  .laptop {
    right: 21%;
    width: 66%;
    max-width: 330px;
  }

  .phone {
    right: 16%;
  }

  .ticket {
    right: 18%;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .section-shell,
  .site-header {
    width: min(100% - 32px, 680px);
  }

  .site-header {
    position: relative;
    min-height: 66px;
  }

  .brand {
    font-size: 23px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 24px;
    height: 1px;
    display: block;
    background: var(--ink);
  }

  .global-nav {
    position: absolute;
    z-index: 20;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-top: 0;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .global-nav a::after {
    display: none;
  }

  .hero {
    gap: 38px;
    padding-top: 44px;
  }

  .service-overview {
    gap: 30px;
    padding-block: 58px 64px;
  }

  .service-overview-copy h2 {
    font-size: clamp(30px, 8.2vw, 34px);
    line-height: 1.55;
  }

  .service-overview-copy > p:last-child {
    margin-top: 18px;
    font-size: 16px;
  }

  .service-area-item {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 24px 18px;
  }

  .service-area-number {
    font-size: 28px;
  }

  .service-area-label {
    font-size: 12px;
  }

  .service-area-content strong {
    font-size: clamp(24px, 6.8vw, 28px);
  }

  .service-area-content > span:last-child {
    font-size: 16px;
  }

  .service-area-arrow {
    font-size: 18px;
  }

  .eyebrow {
    margin-bottom: 11px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.47;
  }

  .hero-lead {
    font-size: 16px;
  }

  .desktop-only {
    display: none;
  }

  .button-primary {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .button-secondary {
    width: 100%;
  }

  .works {
    padding-block: 60px 72px;
  }

  .works-heading h1,
  .works-heading h2 {
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.55;
  }

  .works-heading > p {
    font-size: 16px;
  }

  .work-feature {
    margin-top: 30px;
  }

  .work-detail-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .work-detail-heading h2 {
    font-size: clamp(27px, 7.4vw, 32px);
  }

  .work-site-gate {
    width: calc(100% - 28px);
    min-height: 170px;
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    padding: 28px 24px;
  }

  .work-site-gate strong {
    font-size: clamp(26px, 7.2vw, 31px);
  }

  .work-media {
    padding: 14px;
  }

  .work-media img {
    aspect-ratio: 375 / 812;
    object-fit: contain;
  }

  .work-media > span {
    right: 24px;
    bottom: 24px;
    font-size: 14px;
  }

  .work-content {
    padding: 30px 22px 34px;
  }

  .work-status,
  .work-proof-list dt {
    font-size: 13px;
  }

  .work-content h3 {
    font-size: clamp(27px, 7.4vw, 32px);
  }

  .work-proof-list {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .work-proof-list > div,
  .work-proof-list > div:nth-child(odd) {
    padding: 17px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .work-proof-list > div:first-child {
    border-top: 0;
  }

  .work-proof-list dd {
    font-size: 16px;
  }

  .works-about-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
  }

  .browser-topbar {
    min-height: 45px;
    grid-template-columns: 1fr auto;
    padding: 0 14px;
  }

  .browser-nav {
    display: none;
  }

  .browser-contact {
    min-width: 88px;
  }

  .browser-hero {
    min-height: 330px;
    grid-template-columns: 1fr;
  }

  .browser-copy {
    min-height: 180px;
    padding: 26px 20px;
  }

  .browser-copy::after {
    display: none;
  }

  .browser-heading {
    font-size: 22px;
  }

  .type-visual {
    min-height: 150px;
    border-top: 1px solid var(--line);
  }

  .type-word {
    right: -7%;
    bottom: -38%;
    font-size: clamp(88px, 28vw, 144px);
  }

  .type-label-web {
    top: 16px;
    right: 12%;
  }

  .type-label-graphic {
    right: 20%;
    bottom: 8px;
    font-size: 8px;
  }

  .type-block {
    height: 28px;
  }

  .type-circle {
    width: 100px;
    height: 100px;
  }

  .type-dot {
    top: 30px;
    left: 28%;
  }

  .browser-services {
    padding: 14px;
  }

  .browser-service-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .browser-service-items {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .browser-service-items > div,
  .browser-service-items > div:first-child {
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .browser-service-items > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .section-heading-row {
    margin-top: 14px;
  }

  .section-heading-row h2,
  .mini-heading h2 {
    font-size: 16px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "visual"
      "title"
      "description"
      "footer";
    gap: 0;
    padding: 32px 4px;
  }

  .service-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .service-card-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
  }

  .service-number {
    font-size: 42px;
  }

  .service-visual {
    width: 78px;
    height: 78px;
    align-self: start;
    margin-top: 24px;
  }

  .service-card h3 {
    margin-top: 14px;
    font-size: clamp(28px, 8vw, 34px);
  }

  .service-en {
    font-size: 13px;
  }

  .service-description {
    font-size: 16px;
  }

  .service-card-footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 22px;
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-card-price {
    font-size: 16px;
  }

  .service-choice-list {
    margin-top: 22px;
  }

  .laptop {
    right: 16%;
    bottom: 45px;
    width: 72%;
  }

  .phone {
    right: 8%;
    bottom: 36px;
  }

  .lp-sheet {
    width: 200px;
  }

  .ticket {
    right: 4%;
    bottom: 36px;
  }

  .about-contact {
    grid-template-columns: 1fr;
  }

  .about-block,
  .contact-block {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .about-block {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-block {
    padding-left: 0;
  }

  .monogram {
    width: 72px;
    height: 72px;
    font-size: 53px;
  }

  .about-contact p {
    font-size: 16px;
  }

  .contact-dialog {
    padding: 36px 24px 28px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .policy-shell {
    width: calc(100% - clamp(36px, 10.6vw, 44px));
    padding-block: 64px 88px;
  }

  .policy-shell h1 {
    margin-bottom: 26px;
    font-size: clamp(36px, 11vw, 50px);
  }

  .policy-lead,
  .policy-notice {
    padding: 22px;
    font-size: 16px;
  }

  .policy-shell p,
  .policy-shell li,
  .legal-list dt,
  .legal-list dd {
    font-size: 16px;
  }

  .legal-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.service-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}

.service-link {
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--green);
}

.service-link:hover,
.text-link:hover {
  color: var(--green-dark);
}

.contact-actions {
  min-width: 210px;
  display: grid;
  gap: 12px;
}

.text-link {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--green);
}

.consultation-page {
  background: var(--white);
}

.consult-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
  padding-block: clamp(72px, 8vw, 124px);
}

.consult-hero-copy {
  min-width: 0;
}

.consult-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.6vw, 70px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0.035em;
  word-break: auto-phrase;
}

.consult-lead {
  max-width: 760px;
  margin: 28px 0 24px;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.9;
  word-break: auto-phrase;
}

.consult-price {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: clamp(32px, 2.6vw, 40px);
  color: var(--green);
}

.consult-price span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.consult-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.booking-note {
  max-width: 480px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  word-break: auto-phrase;
}

.consult-summary {
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid #aeb3aa;
  border-top: 8px solid var(--green);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.consult-summary-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.consult-summary h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 28px);
  line-height: 1.5;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.check-list li::before {
  position: absolute;
  top: 18px;
  left: 3px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}

.consult-summary-note {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  word-break: auto-phrase;
}

.consult-section {
  padding-block: clamp(72px, 7vw, 108px);
}

.consult-section + .consult-section:not(.consult-section-tint) {
  border-top: 1px solid var(--line);
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.question-grid article {
  min-width: 0;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.question-grid article > span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1;
}

.question-grid h3 {
  margin: 26px 0 12px;
  font-size: 22px;
}

.question-grid p {
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  word-break: auto-phrase;
}

.consult-section-tint {
  background: var(--paper);
}

.consult-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: start;
}

.consult-split h2,
.next-card h2,
.consult-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.55;
  word-break: auto-phrase;
}

.use-options {
  border-top: 1px solid var(--ink);
}

.use-options details {
  border-bottom: 1px solid var(--line);
}

.use-options summary {
  position: relative;
  padding: 18px 42px 18px 6px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 600;
  list-style: none;
}

.use-options summary::-webkit-details-marker {
  display: none;
}

.use-options summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--green);
  content: "＋";
  transform: translateY(-50%);
}

.use-options details[open] summary::after {
  content: "−";
}

.use-options details > p {
  margin: -2px 42px 20px 6px;
  font-size: 18px;
  line-height: 1.8;
  word-break: auto-phrase;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.flow-list li {
  min-width: 0;
  padding: 26px;
  border-top: 3px solid var(--green);
  background: var(--paper);
}

.flow-list li > span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.flow-list h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.flow-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  word-break: auto-phrase;
}

.next-card {
  padding: clamp(38px, 6vw, 78px);
  color: var(--white);
  background: var(--green);
}

.next-card .eyebrow {
  color: var(--sage-light);
}

.next-card p:not(.eyebrow) {
  max-width: 980px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.9;
  word-break: auto-phrase;
}

.next-card-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 26px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 17px;
  font-weight: 700;
}

.next-card-link:hover {
  color: var(--sage-light);
}

.marunage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: start;
}

.production-page .marunage-layout {
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
}

.marunage-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 600;
  line-height: 1.5;
  word-break: auto-phrase;
}

.marunage-intro > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.9;
  word-break: auto-phrase;
}

.marunage-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 24px;
  margin-top: 32px;
  color: var(--green);
}

.marunage-price span {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.marunage-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.production-page .consult-hero-copy .marunage-price {
  margin-bottom: clamp(32px, 2.6vw, 40px);
}

.marunage-details {
  border-top: 1px solid var(--ink);
}

.production-page .marunage-details {
  border-top: 0;
}

.marunage-details h3 {
  margin: 0;
  padding: 22px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
}

.production-page .marunage-details h3 {
  margin-bottom: 16px;
  padding: 0;
  border-bottom: 0;
  color: var(--green);
  font-size: 18px;
  letter-spacing: 0.06em;
}

.plan-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.production-page .plan-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plan-list li {
  position: relative;
  padding: 16px 8px 16px 38px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  line-height: 1.65;
  word-break: auto-phrase;
}

.production-page .plan-list li {
  min-height: 104px;
  display: flex;
  align-items: center;
  padding: 22px 20px 22px 66px;
  border: 1px solid var(--line);
  background: var(--white);
  line-height: 1.7;
}

.plan-list li::before {
  position: absolute;
  top: 18px;
  left: 8px;
  color: var(--green);
  content: "✓";
  font-weight: 700;
}

.production-page .plan-list li::before {
  top: 50%;
  left: 20px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--white);
  transform: translateY(-50%);
}

.plan-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.plan-note-grid article {
  min-width: 0;
  padding: 26px 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.plan-note-grid h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.plan-note-grid p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  word-break: auto-phrase;
}

.plan-credit {
  margin: 24px 0 0;
  padding: 16px 20px;
  border-left: 4px solid var(--green);
  background: var(--white);
  font-size: 17px;
  line-height: 1.8;
  word-break: auto-phrase;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 4px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--green);
  content: "＋";
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 1000px;
  margin: -4px 54px 22px 4px;
  font-size: 16px;
  line-height: 1.85;
  word-break: auto-phrase;
}

.consult-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-bottom: 40px;
  padding-block: clamp(44px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.consult-cta p:not(.eyebrow) {
  margin: 14px 0 0;
  font-size: 18px;
}

.consultation-page .site-footer a {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

@media (max-width: 1100px) {
  .consult-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 42px;
  }

  .question-grid,
  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-choice-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .contact-actions {
    min-width: 190px;
  }

  .consult-hero {
    grid-template-columns: 1fr;
  }

  .consult-summary {
    max-width: 720px;
  }

  .consult-split {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .marunage-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .production-page .marunage-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .service-link,
  .text-link {
    font-size: 15px;
  }

  .service-price {
    font-size: 15px;
  }

  .service-choice-list strong {
    font-size: 15px;
  }

  .service-choice-list small {
    font-size: 13px;
  }

  .service-choice-list a {
    min-height: 58px;
  }

  .contact-actions {
    width: 100%;
  }

  .consult-hero {
    gap: 42px;
    padding-block: 48px 72px;
  }

  .consult-hero h1 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.5;
  }

  .consult-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .consult-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .consult-price strong {
    font-size: 32px;
  }

  .consult-summary {
    padding: 28px 22px;
  }

  .check-list li,
  .question-grid p,
  .next-card p:not(.eyebrow),
  .consult-cta p:not(.eyebrow),
  .booking-note {
    font-size: 16px;
  }

  .next-card-link {
    font-size: 16px;
  }

  .consult-section {
    padding-block: clamp(64px, 17vw, 78px);
  }

  .question-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .question-grid article {
    min-height: 0;
    padding: 24px 22px;
  }

  .question-grid h3 {
    margin-top: 18px;
  }

  .consult-split h2,
  .next-card h2,
  .consult-cta h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .marunage-intro h2 {
    font-size: clamp(30px, 8.5vw, 36px);
  }

  .marunage-intro > p:not(.eyebrow),
  .plan-list li,
  .plan-note-grid p,
  .plan-credit {
    font-size: 16px;
  }

  .production-page .plan-list {
    grid-template-columns: 1fr;
  }

  .production-page .plan-list li {
    min-height: 86px;
    padding: 18px 16px 18px 58px;
  }

  .production-page .plan-list li::before {
    left: 16px;
  }

  .marunage-price {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 26px;
  }

  .marunage-price strong {
    font-size: 40px;
  }

  .plan-note-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .plan-note-grid article {
    padding: 22px;
  }

  .plan-credit {
    padding: 14px 16px;
  }

  .use-options summary,
  .faq-list summary {
    font-size: 16px;
  }

  .use-options details > p {
    margin-right: 32px;
    font-size: 16px;
  }

  .flow-list li {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 22px;
  }

  .flow-list h3 {
    margin-top: 2px;
  }

  .next-card {
    padding: 34px 24px;
  }

  .faq-list p {
    margin-right: 4px;
    font-size: 15px;
  }

  .consult-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
