:root {
  --ink: #111;
  --muted: #6e6e6e;
  --line: #dedede;
  --soft-line: #eeeeee;
  --paper: #fff;
  --dark: #101010;
  --container: 1280px;
  --side: clamp(30px, 5.5vw, 80px);
  --font:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "Yu Gothic UI", Meiryo,
    system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

.mobile-only-break {
  display: none;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

.site {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 36%, rgba(0, 0, 0, 0.028), transparent 255px),
    radial-gradient(circle at 96% 66%, rgba(0, 0, 0, 0.026), transparent 260px),
    #fff;
}

.container,
.section {
  width: min(var(--container), calc(100% - var(--side) * 2));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: start;
  min-height: 68px;
  padding: 24px max(30px, calc((100% - var(--container)) / 2)) 0;
  background: rgba(255, 255, 255, 0.78);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  font-weight: 800;
  line-height: 1;
}

.brand span {
  font-size: 22px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 7px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.global-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(22px, 2.3vw, 36px);
  padding-top: 2px;
}

.global-nav a {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 324px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  top: -10px;
  right: 0;
  width: min(900px, 64vw);
  height: 365px;
  background-image:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.86) 15%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 73%, #fff 100%),
    url("./assets/hero-tokyo.jpg");
  background-position: left center, center bottom, center center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 24px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.48;
  letter-spacing: 0;
}

.hero p {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 22px;
  margin-top: 20px;
}

.button,
.wide-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.button {
  width: 228px;
  padding: 0 18px 0 26px;
}

.button-dark {
  border-color: #060606;
  background: #060606;
  color: #fff;
}

.button-light {
  background: rgba(255, 255, 255, 0.76);
}

.section {
  padding-block: 19px;
  border-bottom: 1px solid var(--soft-line);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--container), calc(100% - var(--side) * 2));
  margin: 0 auto;
  border-bottom: 1px solid var(--soft-line);
}

.trust-strip-late {
  margin-top: 16px;
  border-top: 1px solid var(--soft-line);
}

.trust-strip div {
  min-height: 112px;
  padding: 21px 22px 20px 0;
  border-right: 1px solid var(--soft-line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span,
.price-card span,
.contact-aside span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.trust-strip strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 900;
}

.trust-strip p {
  max-width: 330px;
  margin: 8px 0 0;
  color: #434343;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 11px;
}

.section-note {
  max-width: 680px;
  margin: 0 0 18px;
  color: #5b5b5b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.text-link span,
.button span,
.wide-button span,
.item-arrow {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.works-section {
  padding-top: 18px;
}

.works-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.work-item {
  position: relative;
  min-width: 0;
}

.work-media {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.96 / 1;
  border-radius: 4px;
  background: #f1f1f1;
}

.work-media img,
.work-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-item img {
  width: 100%;
  aspect-ratio: 1.96 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.work-meta {
  display: block;
  margin-top: 8px;
  color: #343434;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.work-item strong {
  display: block;
  max-width: calc(100% - 22px);
  margin-top: 4px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.item-arrow {
  position: absolute;
  right: 2px;
  bottom: -1px;
}

.wide-button {
  width: 100%;
  margin-top: 20px;
  padding-inline: calc(50% - 72px) calc(50% - 92px);
}

.price-section {
  padding-top: 28px;
  padding-bottom: 30px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.price-card {
  display: grid;
  min-height: 210px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.price-card.is-featured {
  border-color: #111;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 46%),
    #111;
  color: #fff;
}

.price-card.is-featured span,
.price-card.is-featured small {
  color: rgba(255, 255, 255, 0.72);
}

.price-card strong {
  display: block;
  margin-top: 12px;
  font-size: 19px;
  font-weight: 900;
}

.price-card p {
  align-self: end;
  margin: 28px 0 0;
  font-size: 13px;
  font-weight: 900;
}

.price-card b {
  font-size: 25px;
}

.price-card small {
  display: block;
  margin-top: 10px;
  color: #444;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.8;
}

.section-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.service-section,
.about-section,
.flow-section {
  padding-top: 28px;
  padding-bottom: 30px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.43fr) minmax(0, 0.57fr);
  gap: clamp(26px, 4.5vw, 58px);
  align-items: start;
  margin-top: 16px;
}

.service-lead {
  position: sticky;
  top: 20px;
  padding-top: 3px;
}

.service-lead strong {
  display: block;
  max-width: 390px;
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1.52;
  letter-spacing: 0;
}

.service-lead p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #383838;
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
}

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

.service-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--soft-line);
}

.service-row:hover,
.service-row:focus-visible {
  background: #fafafa;
}

.service-num {
  color: #9b742a;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.service-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
}

.service-copy small {
  display: block;
  margin-top: 5px;
  color: #545454;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
}

.service-arrow {
  font-size: 22px;
  line-height: 1;
  text-align: right;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  background: var(--soft-line);
}

.about-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  min-height: 158px;
  padding: 25px 22px;
  background: #fff;
}

.about-card svg {
  width: 42px;
  height: 42px;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.about-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.about-card p {
  margin: 0;
  color: #424242;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.9;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  padding: 26px;
  background: #111;
}

.flow-step {
  position: relative;
  display: grid;
  min-height: 210px;
  padding: 20px 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.flow-step + .flow-step::before {
  content: "";
  position: absolute;
  top: 36px;
  left: -13px;
  width: 13px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.flow-num {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 900;
}

.flow-step strong {
  display: block;
  align-self: end;
  margin-top: 22px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.flow-step p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.85;
}

.flow-step small {
  align-self: end;
  display: block;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
}

.guarantee-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border: 1px solid #111;
  border-radius: 7px;
  background: #fff;
}

.guarantee-copy h2 {
  max-width: 820px;
  margin: 8px 0 0;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.45;
  letter-spacing: 0;
}

.guarantee-copy p {
  max-width: 840px;
  margin: 14px 0 0;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
}

.voice-section {
  padding-bottom: 15px;
}

.voice-card {
  display: grid;
  grid-template-columns: 60px 1fr 198px;
  min-height: 144px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.13);
}

.quote-mark {
  padding: 22px 0 0 30px;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.voice-copy {
  padding: 22px 20px 15px 0;
}

.voice-copy p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.85;
}

.voice-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.voice-person svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.voice-person span {
  font-size: 10px;
  font-weight: 900;
  line-height: 1.7;
}

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

.cta-band {
  background:
    radial-gradient(circle at 24% 50%, rgba(255, 255, 255, 0.08), transparent 165px),
    #111;
  color: #fff;
}

.cta-link {
  display: grid;
  grid-template-columns: 86px 1fr 72px;
  align-items: center;
  width: min(var(--container), calc(100% - var(--side) * 2));
  min-height: 84px;
  margin: 0 auto;
}

.mail-icon {
  display: grid;
  width: 65px;
  height: 65px;
  place-items: center;
  border: 1px solid rgba(216, 178, 99, 0.78);
  border-radius: 50%;
}

.mail-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.cta-link strong {
  display: block;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
}

.cta-link small {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
}

.cta-arrow {
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 31px;
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 20px max(30px, calc((100% - var(--container)) / 2)) 18px;
  background: #fff;
}

.footer-brand span {
  font-size: 19px;
}

.footer-brand small {
  font-size: 8px;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.site-footer nav a + a::before {
  margin-right: 13px;
  color: #888;
  content: "/";
}

.copyright {
  grid-column: 2;
  color: #5d5d5d;
  font-size: 10px;
  text-align: center;
}

.subpage-main {
  min-height: 620px;
}

.sub-hero {
  width: min(var(--container), calc(100% - var(--side) * 2));
  margin: 0 auto;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}

.sub-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}

.sub-hero .kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.sub-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.18;
  letter-spacing: 0;
}

.page-block {
  width: min(var(--container), calc(100% - var(--side) * 2));
  margin: 0 auto;
  padding: 34px 0 62px;
}

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

.page-card {
  display: block;
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.page-card.is-featured {
  border-color: #111;
  background: #111;
  color: #fff;
}

.page-card.is-featured span,
.page-card.is-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.page-card-media {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.8 / 1;
  margin-bottom: 16px;
  border-radius: 4px;
  background: #f1f1f1;
}

.page-card-media img,
.page-card-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-card img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  margin-bottom: 16px;
  object-fit: cover;
  border-radius: 4px;
}

.page-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.page-card strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
}

.page-card p,
.body-copy p,
.company-list dd,
.company-list dt {
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
}

.body-copy {
  max-width: 760px;
}

.page-notes {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--soft-line);
}

.pricing-table {
  display: grid;
  gap: 12px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 160px 150px;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.pricing-row strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.pricing-row p {
  margin: 6px 0 0;
  color: #454545;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.pricing-row b {
  font-size: 22px;
}

.mini-section {
  margin-top: 42px;
}

.mini-section h2 {
  margin-bottom: 16px;
}

.faq-grid,
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid article,
.assurance-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.faq-grid h3,
.assurance-grid h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.6;
}

.faq-grid p,
.assurance-grid p {
  margin: 0;
  color: #444;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.9;
}

.company-list {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-top: 1px solid var(--line);
}

.company-list dt,
.company-list dd {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.company-list dt {
  font-weight: 900;
}

.contact-panel {
  max-width: 720px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-aside {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fafafa;
}

.contact-aside strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
}

.contact-aside ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.contact-aside li {
  margin-top: 9px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.8;
}

.contact-panel label {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 900;
}

.contact-panel input,
.contact-panel textarea,
.contact-panel select {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.contact-panel textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.privacy-note,
.policy-copy h2 {
  margin-top: 22px;
}

.privacy-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.privacy-note a,
.policy-copy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-copy h2 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0;
}

.form-status {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 92px;
    padding: 27px 30px 0;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand span {
    font-size: 25px;
  }

  .brand small {
    margin-top: 9px;
    font-size: 8px;
  }

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-content: center;
    gap: 18px;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    transition:
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .menu-open .global-nav {
    visibility: visible;
    opacity: 1;
  }

  .global-nav a {
    font-size: 18px;
    text-align: center;
  }

  .menu-button {
    position: fixed;
    top: 30px;
    right: 22px;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    z-index: 40;
    display: grid;
    width: 36px;
    height: 32px;
    gap: 5px;
    padding: 7px;
    border: 1px solid #111;
    border-radius: 4px;
    background: #111;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
  }

  .hero {
    min-height: 381px;
  }

  .hero-media {
    top: 22px;
    right: -18px;
    width: 73%;
    height: 373px;
    background-position: left center, center bottom, center center;
  }

  .hero-copy {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 1.45;
  }

  .hero p {
    margin-top: 18px;
    font-size: 12px;
  }

  .hero-actions {
    width: 230px;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    width: 100%;
    height: 43px;
  }

  .section {
    padding-block: 25px;
  }

  .section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .works-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .work-item {
    display: grid;
    grid-template-columns: minmax(210px, 36vw) 1fr 34px;
    grid-template-rows: auto auto;
    column-gap: 28px;
    align-items: center;
    padding: 0 0 13px;
    border-bottom: 1px solid var(--soft-line);
  }

  .work-item + .work-item {
    padding-top: 13px;
  }

  .work-media {
    grid-row: 1 / 3;
    aspect-ratio: 2.55 / 1;
    border-radius: 5px;
  }

  .work-meta {
    grid-column: 2;
    align-self: end;
    margin: 0;
    font-size: 10px;
  }

  .work-item strong {
    grid-column: 2;
    align-self: start;
    max-width: none;
    margin-top: 8px;
    font-size: 15px;
  }

  .item-arrow {
    position: static;
    grid-column: 3;
    grid-row: 1 / 3;
    justify-self: end;
    font-size: 24px;
  }

  .service-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-lead {
    position: static;
  }

  .service-lead strong {
    max-width: 620px;
    font-size: 25px;
  }

  .service-lead p {
    max-width: 640px;
  }

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

  .about-card {
    min-height: 0;
  }

  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px;
  }

  .trust-strip,
  .price-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .guarantee-section {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: 188px;
  }

  .flow-step + .flow-step::before {
    display: none;
  }

  .voice-card {
    grid-template-columns: 54px 1fr 122px;
  }

  .voice-copy p {
    font-size: 11px;
  }

  .cta-link {
    grid-template-columns: 92px 1fr 88px;
    min-height: 124px;
  }

  .mail-icon {
    width: 70px;
    height: 70px;
  }

  .cta-link strong {
    font-size: 26px;
  }

  .site-footer {
    grid-template-columns: 140px 1fr;
    gap: 12px;
    min-height: 84px;
    padding-block: 20px 12px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 6px;
    font-size: 10px;
  }

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

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

@media (max-width: 560px) {
  :root {
    --side: 22px;
  }

  .site-header {
    padding-inline: 22px;
  }

  .brand span {
    font-size: 22px;
  }

  .hero {
    min-height: 0;
    padding-bottom: 44px;
  }

  .hero-media {
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    min-height: 420px;
    background-image:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 46%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0.36) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, #fff 100%),
      url("./assets/hero-tokyo.jpg");
    background-position: left center, center bottom, center center;
  }

  .hero h1 {
    font-size: 29px;
  }

  .mobile-only-break {
    display: block;
  }

  .section-head {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
  }

  .section-head .text-link {
    justify-self: start;
    gap: 8px;
    font-size: 11px;
    white-space: normal;
  }

  .section-note {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .works-list .work-item {
    grid-template-columns: 1fr 34px;
    column-gap: 8px;
  }

  .work-media {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-bottom: 13px;
  }

  .work-meta,
  .work-item strong {
    grid-column: 1;
  }

  .item-arrow {
    grid-column: 2;
    grid-row: 2 / 4;
  }

  .wide-button {
    padding-inline: 24px;
  }

  .service-section,
  .about-section,
  .flow-section {
    padding-top: 30px;
    padding-bottom: 32px;
  }

  .section-kicker {
    font-size: 10px;
  }

  .service-lead strong {
    font-size: 22px;
  }

  .service-row {
    grid-template-columns: 36px minmax(0, 1fr) 24px;
    gap: 12px;
    min-height: 108px;
  }

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

  .service-copy small {
    font-size: 11px;
  }

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

  .about-card {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 20px 16px;
  }

  .about-card svg {
    width: 34px;
    height: 34px;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .flow-step {
    min-height: 0;
    padding: 18px 16px;
  }

  .guarantee-section {
    padding: 24px 20px;
  }

  .voice-card {
    grid-template-columns: 38px 1fr;
  }

  .voice-card img {
    grid-column: 1 / -1;
    height: 160px;
    order: -1;
  }

  .quote-mark {
    padding: 14px 0 0 18px;
  }

  .voice-copy {
    padding: 18px 18px 18px 0;
  }

  .cta-link {
    grid-template-columns: 74px 1fr 54px;
  }

  .mail-icon {
    width: 58px;
    height: 58px;
  }

  .cta-link strong {
    font-size: 21px;
  }

  .cta-link small {
    font-size: 11px;
  }

  .cta-arrow {
    width: 45px;
    height: 45px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

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

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

  .company-list dt {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
