@font-face {
  font-family: MaruBuri;
  src: url("/assets/fonts/maruburi-semibold.woff2?v=phone-front") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url("/assets/fonts/pretendard-regular.woff2?v=phone-front")
    format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url("/assets/fonts/pretendard-semibold.woff2?v=phone-front")
    format("woff2");
  font-weight: 600 800;
  font-display: swap;
}
:root {
  --paper: #eeece5;
  --ink: #203f36;
  --text: #282d29;
  --note: #faf7ef;
  --sage: #d8dfd3;
  --muted: #606860;
  --line: #c8cbc1;
  --serif: MaruBuri, Batang, serif;
  --sans: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 17px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}
button,
input,
select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
button,
select,
summary {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.055em;
  line-height: 1.4;
}
h2 {
  font-size: clamp(36px, 3.9vw, 56px);
}
h3,
strong,
b {
  font-weight: 600;
}
::selection {
  background: var(--ink);
  color: var(--note);
}
:focus-visible {
  outline: 3px solid #a24d15;
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.shell {
  width: calc(100% - 112px);
  max-width: 1296px;
  margin-inline: auto;
}
.section-space {
  padding-block: 104px;
}
.section-description {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 58px;
  padding: 16px 25px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button span {
  font-size: 22px;
  line-height: 1;
}
.button-primary {
  background: var(--ink);
  color: var(--note);
}
.button-primary:hover {
  background: #31574b;
  transform: translateY(-2px);
}
.button-primary:active {
  transform: none;
}
.button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 16px;
  transform: translateY(-180%);
  padding: 12px 20px;
  background: var(--ink);
  color: white;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(238, 236, 229, 0.97);
  border-bottom: 1px solid #203f3621;
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  min-height: 44px;
  flex: none;
}
.brand img {
  width: 117px;
  height: auto;
}
.site-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.site-nav a {
  font-size: 14px;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover {
  border-color: var(--ink);
}
.header-cta {
  font-size: 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  color: var(--ink);
  font-weight: 600;
}
.header-cta span {
  margin-left: 18px;
}
.header-cta:hover {
  background: var(--sage);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 12px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.2s;
}
.hero {
  padding-block: 76px 100px;
}
.hero-brand {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}
.hero h1 {
  font-size: clamp(56px, 6.15vw, 90px);
  line-height: 1.4;
}
.hero h1 > span {
  display: block;
}
.hero h1 > span:last-child {
  padding-left: 9%;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.lead {
  font-size: 20px;
  line-height: 1.85;
}
.hero-intro .button {
  margin-top: 30px;
}
.hero-paper-wrap {
  position: relative;
  isolation: isolate;
  max-width: 500px;
  width: calc(100% - 12px);
  justify-self: end;
  margin-right: 12px;
}
.paper-shadow {
  position: absolute;
  inset: 10px -9px -7px 10px;
  background: #dedfd5;
  transform: rotate(2deg);
  z-index: -1;
}
.memo {
  background: var(--note);
  padding: 30px 32px;
  box-shadow: 0 12px 30px #343c2a10;
  color: var(--ink);
}
.hero-memo {
  position: relative;
  transform: rotate(-3deg);
  animation: paper-arrive 0.6s ease-out both;
}
.hero-memo::before {
  content: "";
  position: absolute;
  width: 78px;
  height: 23px;
  background: #ccc5a999;
  top: -11px;
  left: calc(50% - 39px);
  transform: rotate(3deg);
  clip-path: polygon(2% 0, 99% 3%, 96% 97%, 0 100%);
}
.memo-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}
.memo-label {
  font-size: 13px;
  font-weight: 600;
}
.memo-time {
  font-size: 11px;
  color: var(--muted);
}
.memo-job {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.5;
  margin-top: 22px;
}
.memo-booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
  font-size: 15px;
}
.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  min-width: 68px;
  height: 38px;
  font-size: 12px;
  white-space: nowrap;
  transform: rotate(-8deg);
}
.memo-contact {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.memo-fields {
  margin: 20px 0 0;
}
.memo-fields > div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  border-bottom: 1px solid #d9dbd080;
  padding: 9px 0;
  font-size: 14px;
}
.memo-fields dt {
  color: var(--muted);
}
.memo-fields dd {
  margin: 0;
  font-weight: 600;
}
.memo-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 21px;
  font-size: 12px;
  color: var(--muted);
}
.work-section {
  display: grid;
  grid-template-columns: 1.07fr 1fr;
  background: var(--ink);
  color: var(--note);
}
.work-photo {
  position: relative;
  min-height: 470px;
}
.work-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% center;
}
.work-copy {
  align-self: center;
  padding: 64px clamp(32px, 5.1vw, 90px);
}
.work-copy h2 {
  color: var(--note);
  font-size: clamp(33px, 3.4vw, 49px);
  line-height: 1.45;
}
.work-copy p {
  font-size: 16px;
  line-height: 1.9;
  color: #d5ded2;
  margin-top: 30px;
}
.how-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;
}
.process-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.process-tabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  padding: 16px 5px;
  min-height: 56px;
  font-size: 15px;
  color: var(--muted);
}
.process-tabs button[aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--ink);
  font-weight: 600;
}
.process-panel {
  min-height: 404px;
  padding-top: 22px;
}
.process-caption {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.conversation {
  padding: 5px 5px 0;
}
.speaker {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.speech {
  padding: 22px 26px;
  font-size: 17px;
  line-height: 1.8;
}
.customer-speech {
  background: #dfdfd6;
  border-radius: 0 10px 10px 10px;
  margin-right: 65px;
}
.agent-speaker {
  text-align: right;
  margin-top: 25px;
}
.agent-speech {
  background: var(--sage);
  border-radius: 10px 0 10px 10px;
  margin-left: 30px;
}
.process-memo {
  padding: 24px 28px;
}
.process-memo .memo-job {
  font-size: 24px;
  margin-top: 17px;
}
.process-memo .memo-fields {
  margin-top: 16px;
}
.process-memo .memo-bottom {
  margin-top: 16px;
}
.calendar-preview {
  background: #f4f2e9;
  padding: 26px 28px;
  box-shadow: 7px 7px 0 #d5dacc;
}
.calendar-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  margin-bottom: 23px;
}
.calendar-top > span:last-child {
  color: var(--muted);
  font-size: 12px;
}
.schedule-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.schedule-row time {
  font-size: 12px;
  flex: none;
  width: 43px;
}
.schedule-row.selected {
  background: var(--ink);
  color: var(--note);
  border-color: var(--ink);
  padding-block: 21px;
}
.schedule-row.selected > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.schedule-row.selected > div > span {
  font-size: 12px;
  color: #d5ded2;
}
.schedule-check {
  margin-left: auto;
  font-size: 19px;
}
.schedule-row.available {
  background: #e3e7dd;
  border: 1px dashed #88977e;
  color: var(--ink);
}
.value-section {
  padding-block: 75px;
  border-block: 1px solid var(--line);
}
.value-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.value-inner h2 {
  font-size: clamp(35px, 3.45vw, 49px);
}
.value-inner p {
  font-size: 19px;
  line-height: 1.9;
  color: var(--muted);
}
.apply-section {
  background: var(--sage);
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.trial-copy h2 {
  font-size: clamp(36px, 3.6vw, 52px);
}
.trial-price {
  margin-top: 35px;
  padding-top: 26px;
  border-top: 1px solid #9fad99;
  color: var(--ink);
  max-width: 440px;
}
.trial-price > strong {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.045em;
}
.trial-price p {
  font-size: 16px;
  margin-top: 6px;
}
.trial-price p > span {
  font-size: 11px;
  color: var(--muted);
  margin-left: 8px;
}
.trial-support {
  font-size: 13px;
  color: var(--muted);
  margin-top: 23px;
}
.application-paper {
  background: var(--note);
  padding: 36px;
  box-shadow: 0 15px 35px #203f360b;
}
.form-title {
  margin-bottom: 24px;
}
.form-title h3 {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.field {
  margin-bottom: 18px;
  min-width: 0;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 7px;
}
.field label > span:not(.optional) {
  color: #a24d15;
}
.optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}
input,
select {
  display: block;
  width: 100%;
  min-width: 0;
  height: 52px;
  background: #fffdf7;
  color: var(--text);
  border: 1px solid #899681;
  border-radius: 3px;
  padding: 12px;
  font-size: 16px;
  line-height: 1.5;
}
input::placeholder {
  color: #697361;
}
input:focus,
select:focus {
  border-color: var(--ink);
}
input[aria-invalid="true"] {
  border-color: #a53c21;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-privacy {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
  margin: 2px 0 20px;
}
.form-privacy a {
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.submit-button {
  width: 100%;
  font-size: 15px;
}
.field-error,
.form-feedback {
  font-size: 12px;
  color: #92311c;
  margin-top: 7px;
  line-height: 1.6;
}
.form-feedback {
  padding: 12px;
  background: #f5e7de;
  margin-top: 16px;
}
.form-success {
  padding: 70px 0;
  text-align: center;
}
.form-success > img {
  margin: 0 auto 30px;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 29px;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.form-success > p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 18px;
}
.faq-section {
  padding-block: 64px 78px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}
.faq-section h2 {
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.03em;
  padding-top: 22px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-size: 15px;
  color: var(--ink);
}
summary > span[aria-hidden] {
  transition: transform 0.2s;
  font: 21px var(--sans);
  flex: none;
}
details[open] > summary > span[aria-hidden] {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  padding: 0 30px 22px 0;
}
.site-footer {
  background: var(--ink);
  color: var(--note);
  padding: 46px 0 25px;
}
.footer-top {
  padding-bottom: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-top img {
  width: 117px;
  height: auto;
  margin-left: -6px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  font-size: 13px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-links a:hover,
.footer-business a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer a:focus-visible {
  outline-color: var(--note);
}
.footer-copyright {
  font-size: 12px;
  color: #c3d1bd;
  margin-bottom: 16px;
}
.footer-business {
  font-size: 12px;
  line-height: 1.9;
  color: #c3d1bd;
  padding-bottom: 24px;
  overflow-wrap: anywhere;
}
.footer-business p + p {
  margin-top: 4px;
}
.footer-business-row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 25;
  background: #eeece5f7;
  padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}
.mobile-cta .button {
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
}
@keyframes paper-arrive {
  from {
    transform: translateY(12px) rotate(-1deg);
    opacity: 0.5;
  }
  to {
    transform: translateY(0) rotate(-3deg);
    opacity: 1;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 72px);
  }
  .hero h1 {
    font-size: 6.1vw;
  }
  .hero-bottom {
    gap: 60px;
  }
  .hero h1 > span:last-child {
    padding-left: 5%;
  }
  .hero {
    padding-block: 64px 85px;
  }
  .lead {
    font-size: 18px;
  }
  .memo {
    padding: 26px;
  }
  .memo-job {
    font-size: 23px;
  }
  .work-copy {
    padding: 50px 36px;
  }
  .work-copy h2 {
    font-size: 36px;
  }
  .work-copy p {
    font-size: 15px;
  }
  .work-photo {
    min-height: 430px;
  }
  .section-space {
    padding-block: 88px;
  }
  .how-section,
  .value-inner,
  .apply-grid {
    gap: 60px;
  }
  .section-description {
    font-size: 16px;
  }
  .process-tabs button {
    font-size: 14px;
  }
  .speech {
    font-size: 15px;
    padding: 20px;
  }
  .customer-speech {
    margin-right: 35px;
  }
  .agent-speech {
    margin-left: 20px;
  }
  .process-memo {
    padding: 23px;
  }
  .process-memo .memo-job {
    font-size: 21px;
  }
  .process-panel {
    min-height: 387px;
  }
  .calendar-preview {
    padding: 23px;
  }
  .schedule-row {
    gap: 15px;
  }
  .value-inner p {
    font-size: 17px;
  }
  .application-paper {
    padding: 30px;
  }
  .trial-copy h2 {
    font-size: 38px;
  }
  .faq-section {
    gap: 60px;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 92px;
  }
  .shell {
    width: calc(100% - 48px);
  }
  .header-inner {
    height: 76px;
    gap: 16px;
  }
  .brand img {
    width: 101px;
  }
  .header-cta {
    margin-left: auto;
    padding: 8px 13px;
    font-size: 12px;
  }
  .header-cta span {
    margin-left: 12px;
  }
  .menu-toggle {
    display: block;
    margin-right: -10px;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    box-shadow: 0 15px 25px #203f3610;
  }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .hero {
    padding-block: 52px 74px;
  }
  .hero h1 {
    font-size: 6.2vw;
  }
  .hero h1 > span:last-child {
    padding-left: 0;
  }
  .hero-bottom {
    gap: 35px;
    margin-top: 42px;
  }
  .lead {
    font-size: 17px;
  }
  .hero-intro .button {
    font-size: 14px;
    padding: 15px 19px;
    gap: 20px;
  }
  .memo {
    padding: 24px;
  }
  .memo-label {
    font-size: 11px;
  }
  .memo-time {
    font-size: 10px;
  }
  .memo-job {
    font-size: 20px;
    margin-top: 19px;
  }
  .memo-booking {
    font-size: 13px;
    margin-top: 17px;
  }
  .memo-contact {
    font-size: 11px;
  }
  .stamp {
    min-width: 57px;
    height: 34px;
    font-size: 11px;
  }
  .work-photo {
    min-height: 375px;
  }
  .work-copy {
    padding: 42px 28px;
  }
  .work-copy h2 {
    font-size: 29px;
  }
  .work-copy p {
    font-size: 13px;
    margin-top: 24px;
  }
  .section-space {
    padding-block: 74px;
  }
  .how-section {
    gap: 32px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .section-description {
    font-size: 15px;
  }
  .process-tabs button {
    font-size: 13px;
  }
  .process-caption {
    font-size: 11px;
  }
  .process-panel {
    min-height: 365px;
  }
  .speech {
    font-size: 14px;
    padding: 18px;
  }
  .agent-speech {
    margin-left: 12px;
  }
  .customer-speech {
    margin-right: 25px;
  }
  .process-memo {
    padding: 20px;
  }
  .process-memo .memo-job {
    font-size: 19px;
  }
  .memo-fields > div {
    font-size: 12px;
    grid-template-columns: 64px 1fr;
    gap: 8px;
  }
  .memo-bottom {
    font-size: 10px;
  }
  .calendar-preview {
    padding: 20px;
  }
  .schedule-row {
    font-size: 12px;
    gap: 10px;
    padding: 17px 10px;
  }
  .schedule-row time {
    width: 37px;
    font-size: 11px;
  }
  .calendar-top {
    font-size: 12px;
  }
  .value-section {
    padding-block: 60px;
  }
  .value-inner {
    gap: 36px;
  }
  .value-inner h2 {
    font-size: 31px;
  }
  .value-inner p {
    font-size: 15px;
  }
  .apply-grid {
    gap: 36px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .trial-copy h2 {
    font-size: 33px;
  }
  .trial-price > strong {
    font-size: 31px;
  }
  .trial-price p {
    font-size: 14px;
  }
  .trial-price p > span {
    display: block;
    margin: 3px 0 0;
  }
  .trial-support {
    font-size: 11px;
  }
  .application-paper {
    padding: 26px;
  }
  .form-title h3 {
    font-size: 23px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .faq-section {
    padding-block: 48px 60px;
    gap: 40px;
    grid-template-columns: 0.6fr 1.4fr;
  }
  .faq-section h2 {
    font-size: 21px;
  }
  .faq-list summary {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .shell {
    width: calc(100% - 40px);
  }
  .header-inner {
    gap: 8px;
  }
  .brand img {
    width: 93px;
  }
  .header-cta {
    font-size: 11px;
    padding: 8px 11px;
  }
  .header-cta span {
    margin-left: 9px;
  }
  .hero {
    padding-block: 48px 65px;
  }
  .hero-brand {
    margin-bottom: 17px;
    font-size: 13px;
  }
  .hero h1 {
    font-size: clamp(28px, 7.9vw, 45px);
    line-height: 1.55;
    letter-spacing: -0.06em;
  }
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 25px;
  }
  .lead {
    font-size: 17px;
    line-height: 1.85;
  }
  .hero-intro .button {
    margin-top: 24px;
    min-height: 54px;
  }
  .hero-paper-wrap {
    width: calc(100% - 20px);
    max-width: 420px;
    margin: 0;
    justify-self: center;
  }
  .memo {
    padding: 25px;
  }
  .memo-label {
    font-size: 12px;
  }
  .memo-job {
    font-size: 22px;
  }
  .memo-booking {
    font-size: 14px;
  }
  .memo-contact {
    font-size: 12px;
    margin-top: 6px;
  }
  .stamp {
    min-width: 62px;
    height: 36px;
    font-size: 11px;
  }
  .work-section {
    grid-template-columns: 1fr;
  }
  .work-photo {
    min-height: 0;
    aspect-ratio: 1.2;
  }
  .work-photo img {
    object-position: 49% 53%;
  }
  .work-copy {
    padding: 42px 26px 46px;
  }
  .work-copy h2 {
    font-size: 34px;
    line-height: 1.4;
  }
  .work-copy p {
    font-size: 14px;
    line-height: 1.85;
    margin-top: 22px;
  }
  .section-space {
    padding-block: 65px;
  }
  .how-section,
  .value-inner,
  .apply-grid,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .section-heading h2 {
    font-size: 35px;
  }
  .section-description {
    font-size: 15px;
    margin-top: 20px;
  }
  .process-tabs button {
    font-size: 14px;
    min-height: 54px;
    padding: 13px 2px;
  }
  .process-panel {
    min-height: 370px;
    padding-top: 21px;
  }
  .process-caption {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .conversation {
    padding: 0;
  }
  .speech {
    font-size: 15px;
    padding: 20px;
  }
  .customer-speech {
    margin-right: 30px;
  }
  .agent-speech {
    margin-left: 25px;
  }
  .speaker {
    font-size: 11px;
  }
  .process-memo {
    padding: 23px;
  }
  .process-memo .memo-job {
    font-size: 22px;
  }
  .memo-fields > div {
    font-size: 13px;
    grid-template-columns: 70px 1fr;
    padding: 10px 0;
  }
  .memo-bottom {
    font-size: 11px;
  }
  .calendar-preview {
    padding: 23px;
    box-shadow: 5px 5px 0 #d5dacc;
  }
  .calendar-top {
    font-size: 13px;
    margin-bottom: 22px;
  }
  .schedule-row {
    font-size: 14px;
    padding: 19px 11px;
    gap: 14px;
  }
  .schedule-row time {
    font-size: 12px;
    width: 41px;
  }
  .schedule-row.selected {
    padding-block: 22px;
  }
  .value-section {
    padding-block: 53px;
  }
  .value-inner {
    gap: 22px;
  }
  .value-inner h2 {
    font-size: 35px;
  }
  .value-inner p {
    font-size: 15px;
    line-height: 1.85;
  }
  .apply-grid {
    gap: 34px;
  }
  .trial-copy h2 {
    font-size: 35px;
  }
  .trial-price {
    margin-top: 26px;
    padding-top: 23px;
    max-width: none;
  }
  .trial-price > strong {
    font-size: 32px;
  }
  .trial-price p {
    font-size: 15px;
  }
  .trial-price p > span {
    display: inline;
    margin-left: 7px;
  }
  .trial-support {
    font-size: 12px;
    margin-top: 18px;
  }
  .application-paper {
    padding: 26px 23px;
  }
  .form-title h3 {
    font-size: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-success {
    padding-block: 46px;
  }
  .form-success h3 {
    font-size: 27px;
  }
  .form-privacy {
    font-size: 11px;
  }
  .faq-section {
    padding-block: 40px 50px;
    gap: 20px;
  }
  .faq-section h2 {
    font-size: 20px;
    padding-top: 0;
  }
  .faq-list summary {
    font-size: 14px;
    padding-block: 20px;
  }
  .faq-list details > p {
    font-size: 13px;
    padding-right: 10px;
  }
  .site-footer {
    padding-top: 32px;
    padding-bottom: 100px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
  }
  .footer-top img {
    width: 100px;
    margin-left: -5px;
  }
  .footer-links {
    column-gap: 20px;
  }
  .footer-business-row {
    flex-direction: column;
  }
  .footer-separator {
    display: none;
  }
}
@media (max-width: 359px) {
  .shell {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 7.9vw;
  }
  .hero-paper-wrap {
    width: calc(100% - 8px);
  }
  .memo {
    padding: 22px 20px;
  }
  .memo-job {
    font-size: 20px;
  }
  .memo-label {
    font-size: 11px;
  }
  .work-copy {
    padding-inline: 23px;
  }
  .work-copy h2 {
    font-size: 31px;
  }
  .section-heading h2,
  .value-inner h2,
  .trial-copy h2 {
    font-size: 31px;
  }
  .speech {
    font-size: 14px;
    padding: 17px;
  }
  .process-caption {
    font-size: 11px;
  }
  .process-memo .memo-job {
    font-size: 20px;
  }
  .calendar-preview {
    padding: 20px;
  }
  .schedule-row {
    gap: 10px;
    font-size: 13px;
  }
  .application-paper {
    padding: 25px 19px;
  }
  .trial-price p {
    font-size: 14px;
  }
  .footer-top img {
    width: 93px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
