@charset "UTF-8";

@font-face { font-family: "Gmarket Sans"; src: url("assets/fonts/gmarket-light.otf") format("opentype"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Gmarket Sans"; src: url("assets/fonts/gmarket-medium.otf") format("opentype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Gmarket Sans"; src: url("assets/fonts/gmarket-bold.otf") format("opentype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Pretendard"; src: url("assets/fonts/pretendard-regular.otf") format("opentype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Pretendard"; src: url("assets/fonts/pretendard-medium.otf") format("opentype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Pretendard"; src: url("assets/fonts/pretendard-bold.otf") format("opentype"); font-weight: 700; font-display: swap; }

:root { --ink: #141414; --red: #d11f1f; --light-red: #ff2828; --ivory: #f2f2eb; --line: #dcdcdc; --muted: #a2a298; --max-width: 1400px; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: #fff; font-family: "Pretendard", sans-serif; font-size: 16px; line-height: 1.5; word-break: keep-all; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(var(--max-width), calc(100% - 60px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 20; padding: 8px 14px; color: #fff; background: var(--ink); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(55px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--reveal-delay, 0s); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { --reveal-delay: .1s; }
.reveal--delay-2 { --reveal-delay: .2s; }
.reveal--delay-3 { --reveal-delay: .3s; }
.reveal--delay-4 { --reveal-delay: .4s; }

.site-header { position: fixed; z-index: 10; top: 0; left: 0; width: 100%; height: 80px; background: #fff; transition: background-color .25s, color .25s; }
.site-header.is-dark { color: #fff; background: var(--ink); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; align-items: center; height: 28px; }
.brand img { width: 112px; height: 24px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 40px; font-size: 18px; font-weight: 500; }
.site-nav a { transition: color .2s, background-color .2s; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--red); }
.site-nav__cta { width: 130px; color: #fff !important; text-align: center; line-height: 40px; border-radius: 999px; background: var(--red); }
.menu-toggle { display: none; position: relative; z-index: 12; width: 28px; height: 24px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { position: absolute; left: 0; width: 28px; height: 3px; border-radius: 999px; background: currentColor; transition: transform .25s, opacity .25s; }
.menu-toggle > span:nth-child(1) { top: 0; width: 20px; }
.menu-toggle > span:nth-child(2) { top: 7px; }
.menu-toggle > span:nth-child(3) { top: 14px; }
.menu-toggle > span:nth-child(4) { top: 21px; right: 0; left: auto; width: 20px; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1), .menu-toggle[aria-expanded="true"] > span:nth-child(4) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; padding-top: 80px; }
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 550px); align-items: center; min-height: 760px; padding-bottom: 60px; }
.hero__copy { position: relative; z-index: 2; padding: 80px 0 40px; }
.hero__slides { width: min(650px, 100%); padding-bottom: 20px; overflow: hidden; }
.hero-slide { display: none; animation: slide-in .45s ease both; }
.hero-slide.is-active { display: block; }
.hero__badge { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font: 500 32px/1.2 "Gmarket Sans", sans-serif; }
.hero__badge img { width: 40px; }
.hero h1 { margin: 0; font: 700 clamp(40px, 4.45vw, 62px)/1.2 "Gmarket Sans", sans-serif; letter-spacing: -.06em; }
.hero h1 span { position: relative; display: inline-block; padding: 0 10px; }
.hero h1 span::after { content: ""; position: absolute; right: 2%; bottom: -13px; left: auto; width: 0; height: 4px; background: var(--red); border-radius: 4px; animation: hero-line-wipe 3s infinite; }
.round-button { display: flex; align-items: center; justify-content: center; width: 240px; height: 60px; gap: 10px; border: 1px solid var(--ink); border-radius: 999px; font-size: 22px; transition: color .2s, border-color .2s, background-color .2s, transform .2s; }
.round-button:hover, .round-button:focus-visible { transform: translateY(-2px); }
.round-button i { width: 10px; height: 10px; border-radius: 50%; background: var(--light-red); }
.round-button--dark { margin-top: 80px; color: #fff; background: #121212; }
.round-button--dark:hover, .round-button--dark:focus-visible { color: #fff; border-color: var(--red); background: var(--red); }
.round-button--red { color: #fff; border-color: var(--red); background: var(--red); }
.round-button--red i { background: #fff; }
.hero__visual { position: relative; z-index: 1; width: min(100%, 550px); justify-self: end; }
.hero__visual img { width: 100%; }
.hero__orb { position: absolute; top: 250px; left: -200px; width: 400px; height: 400px; border-radius: 50%; background: #f5f5f5; }
.hero__deco { position: absolute; top: 0; left: 30px; display: flex; align-items: center; height: 100%; }
.hero__deco img { width: 12px; }
.hero__pager { position: absolute; right: 0; bottom: 0; left: 0; z-index: 3; display: flex; align-items: center; height: 60px; }
.hero__arrows { display: flex; align-items: center; gap: 10px; margin-right: 20px; }
.hero__arrows button { display: grid; width: 50px; height: 50px; padding: 5px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: #fff; opacity: .22; cursor: pointer; transition: opacity .2s, background .2s; }
.hero__arrows button:hover, .hero__arrows button:focus-visible { opacity: 1; }
.hero__arrows button:first-child img { transform: rotate(-90deg); }
.hero__arrows button:last-child img { transform: rotate(90deg); }
.hero__arrows img { width: 35%; }
.hero__page-line { flex: 1; height: 4px; background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 15px); }
.hero__page-number { position: relative; margin-left: 20px; padding-right: 28px; }
.hero__page-number strong { font: 600 32px/1 "Gmarket Sans", sans-serif; }
.hero__page-number span { position: absolute; right: 0; bottom: -7px; color: #b4b4b4; font-size: 18px; }
@keyframes slide-in { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
@keyframes hero-line-wipe {
  0% { right: calc(2% + 100%); width: 0; }
  35% { right: 2%; width: 100%; }
  70% { right: 2%; width: 0; }
  100% { right: 2%; width: 0; }
}
@keyframes method-highlight-loop {
  0%, 18% { transform: scaleX(0); }
  48%, 72% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

.slogan { overflow: hidden; margin-top: 50px; color: #f2f2f2; white-space: nowrap; }
.slogan__track { width: max-content; font: 700 clamp(58px, 8.3vw, 120px)/1 "Gmarket Sans", sans-serif; animation: marquee 30s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.section { padding: 140px 0; }
.intro-scroll-stage { position: relative; min-height: 100vh; }
.intro-scroll-stage.is-pinned { padding-bottom: 100vh; }
.intro { position: relative; z-index: 1; display: flex; height: 100vh; min-height: 100vh; align-items: center; padding: 80px 0; }
.intro.is-pinned { position: fixed; top: 0; left: 0; width: 100%; }
.section-heading--center { text-align: center; }
.section-heading__point { margin: 0 0 20px; color: var(--red); font: 500 22px/1.3 "Gmarket Sans", sans-serif; }
.section-heading h2 { position: relative; z-index: 1; margin: 0; font: 700 clamp(32px, 3.15vw, 44px)/1.25 "Gmarket Sans", sans-serif; letter-spacing: -.06em; }
.section-heading h2 span { position: relative; display: inline-block; z-index: 0; }
.section-heading h2 span::after { content: ""; position: absolute; z-index: -1; right: -10px; bottom: 0; left: -10px; height: 20px; background: #ffebb4; }
.intro .section-heading h2 span { margin-right: 10px; }
.section-heading__copy { max-width: 600px; margin: 40px auto 0; font-size: 20px; line-height: 1.4; word-break: keep-all; }
.talk-list { margin-top: 60px; }
.talk-item { display: flex; align-items: center; }
.talk-item + .talk-item { justify-content: flex-end; margin-top: -40px; }
.talk-item img { width: 140px; }
.talk-item:first-child img { margin-right: 20px; }
.talk-item:last-child img { margin-left: 20px; }
.talk-item p { margin: 0; padding: 20px; border-radius: 10px; box-shadow: 0 0 15px rgba(0, 0, 0, .1); font-size: 22px; font-weight: 400; line-height: 1.4; overflow-wrap: normal; }
.talk-item em { font-style: normal; font-weight: 700; }

.section--dark { position: relative; overflow: hidden; color: #fff; background: var(--ink); }
.method { z-index: 2; min-height: 700px; height: 100vh; padding: 0; }
.method__inner { display: flex; align-items: center; justify-content: center; height: 100%; min-height: 0; }
.method__stack { width: 100%; text-align: center; }
.section-heading--dark h2 { color: #fff; }
.section-heading--dark h2 span::after { background: var(--red); }
.method .section-heading--dark { padding-top: 40px; }
.method .section-heading--dark h2 span::after { transform: scaleX(0); transform-origin: right center; }
.method .section-heading--dark.is-visible h2 span::after { animation: method-highlight-loop 3.4s cubic-bezier(.22, .61, .36, 1) .15s infinite; }
.section-heading--dark .section-heading__copy { color: #c8c8c8; font-weight: 300; }
.method__line { position: relative; width: 1px; height: 50vh; margin: 0 auto; background: rgba(255, 255, 255, .2); }
.method__line span { position: absolute; bottom: 0; left: 50%; width: 16px; height: 16px; border-radius: 50%; background: #fff; transform: translateX(-50%); }
.method .round-button { margin: 54px auto 0; }

.clients { padding-bottom: 100px; }
.review-slider { position: relative; margin-top: 60px; padding: 0 80px; }
.review-viewport { overflow: hidden; }
.review-track { display: flex; align-items: flex-start; transition: transform .45s ease; }
.review-card { display: flex; flex: 0 0 33.333%; align-self: flex-start; padding: 20px; opacity: .5; transition: opacity .35s, transform .35s; }
.review-card.is-current { opacity: 1; transform: scale(1.08); }
.review-card__inner { position: relative; width: 100%; min-height: 0; padding: 125px 30px 30px; border-radius: 20px; box-shadow: 0 0 12px rgba(0, 0, 0, .1); text-align: center; }
.review-card__face { position: absolute; top: -10px; right: 0; left: 0; text-align: center; }
.review-card__face img { width: 120px; margin: 0 auto; }
.review-card strong { display: inline-block; width: 80px; height: 26px; color: #fff; background: var(--ink); font-size: 18px; font-weight: 600; line-height: 26px; }
.review-card p { margin: 20px 0 0; font-size: 16px; line-height: 1.4; word-break: keep-all; }
.slider-arrow { position: absolute; top: 50%; width: 40px; height: 40px; border: 1px solid var(--ink); border-radius: 50%; background: #fff; cursor: pointer; transform: translateY(-50%); }
.slider-arrow:hover, .slider-arrow:focus-visible { color: #fff; background: var(--ink); }
.slider-arrow:disabled { cursor: default; opacity: .25; }
.slider-arrow--prev { left: 0; }
.slider-arrow--next { right: 0; }
.review-note { margin: 18px 0 0; color: var(--muted); font-size: 16px; font-weight: 300; text-align: center; }
.coop-grid { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 80px; padding-top: 40px; border-top: 1px solid var(--line); }
.coop-grid img { width: 100%; padding: 10px; object-fit: contain; }

.contact-cta { margin-top: 20px; background: var(--ivory); }
.contact-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 60px 0; }
.contact-cta p { margin: 0; font: 300 28px/1.4 "Pretendard", sans-serif; }
.contact-cta em { font-style: normal; font-weight: 700; }
.contact-cta .round-button { margin: 0; }
.scroll-top { position: fixed; right: 30px; bottom: 30px; z-index: 4; display: grid; width: 50px; height: 50px; padding: 0; place-items: center; border: 1px solid #fff; background: var(--ink); cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .2s; }
.scroll-top.is-visible { opacity: 1; pointer-events: auto; }
.scroll-top img { width: 12px; }
.site-footer { padding: 30px 0; color: #adadad; background: #141414; font-size: 14px; font-weight: 300; line-height: 1.8; }
.site-footer p { margin: 0; }
.site-footer__links { display: flex; gap: 8px; margin-bottom: 10px; }
.site-footer a:hover, .site-footer a:focus-visible { color: #fff; }
.site-footer span { margin: 0 4px; color: #5e5e5e; }

.contact-page { background: var(--ivory); }
.success-page { background: #fff; }
.contact-main { padding: 80px 0 120px; }
.contact-intro { display: flex; min-height: calc(100vh - 80px); flex-direction: column; justify-content: center; margin-bottom: 40px; padding: 100px 0 60px; }
.contact-intro h1 { margin: 0; font: 700 clamp(42px, 6vw, 82px)/1.1 "Gmarket Sans", sans-serif; letter-spacing: -.08em; }
.contact-intro h1 span { position: relative; display: inline-block; padding: 0 10px; }
.contact-intro h1 span::after { content: ""; position: absolute; right: 2%; bottom: 0; left: auto; z-index: -1; width: 0; height: 25px; background: var(--red); animation: hero-line-wipe 3s infinite; }
.contact-intro p { margin: 24px 0 0; color: #606060; font-size: 18px; }
.contact-intro .section-heading__point { margin-bottom: 32px; }
.contact-form-wrap { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; min-width: 0; }
.contact-side h2 { margin: 0; font: 700 32px/1.25 "Gmarket Sans", sans-serif; letter-spacing: -.06em; }
.contact-side p { margin: 20px 0 0; color: #6b6b65; line-height: 1.7; word-break: keep-all; }
.contact-side__note { margin-top: 40px !important; padding-top: 20px; border-top: 1px solid #cfcfc8; font-size: 14px; }
.contact-form { position: relative; width: 100%; min-width: 0; max-height: 1600px; padding: 42px; overflow: hidden; background: #fff; box-shadow: 0 0 20px rgba(0, 0, 0, .08); transition: width .7s cubic-bezier(.22, .61, .36, 1), max-width .7s cubic-bezier(.22, .61, .36, 1), max-height .8s cubic-bezier(.22, .61, .36, 1), padding .8s cubic-bezier(.22, .61, .36, 1); }
.contact-form::before { content: "•  컨설팅 신청서"; position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; color: #fff; font: 700 18px/1.3 "Gmarket Sans", sans-serif; background: var(--ink); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.contact-form > * { position: relative; z-index: 1; visibility: hidden; opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease, visibility 0s linear .55s; }
.contact-form.is-collapsed { width: 260px; max-width: 260px; max-height: 100px; padding: 0 20px; margin-right: auto; margin-left: auto; }
.contact-form.is-collapsed::before { opacity: 1; }
.contact-form.is-collapsed > * { transition-delay: 0s; }
.contact-form.is-width-expanded { width: 100%; max-width: none; max-height: 100px; padding: 0 20px; }
.contact-form.is-width-expanded::before { transition-delay: .25s; }
.contact-form.is-width-expanded.is-height-expanded { max-height: 1600px; padding: 42px; }
.contact-form.is-content-visible > * { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
.contact-form.is-expanded { width: 100%; max-width: none; }
.form-fieldset { margin: 0; padding: 0 0 28px; border: 0; border-bottom: 1px solid var(--line); }
.form-fieldset + .form-fieldset { padding-top: 28px; }
.form-fieldset legend, .form-label { display: block; margin-bottom: 12px; font: 700 16px/1.3 "Gmarket Sans", sans-serif; }
.form-label small, .form-fieldset legend small { color: var(--red); font: 400 12px/1.3 "Pretendard", sans-serif; }
.form-fieldset--inline { overflow: hidden; padding: 20px 0; }
.form-fieldset--inline legend { float: left; width: 200px; margin: 0; }
.form-fieldset--inline .choice-list { margin-left: 220px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 20px; }
.form-control { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #cfcfcf; border-radius: 5px; outline: 0; background: #fff; font: 400 15px/1.4 "Pretendard", sans-serif; }
.form-control:focus { border-color: var(--ink); box-shadow: 0 0 0 2px rgba(209, 31, 31, .12); }
.form-control::placeholder { color: #a5a5a0; }
.form-field { min-width: 0; }
.form-field--full { grid-column: 1 / -1; }
.choice-list { display: flex; min-width: 0; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: inline-flex; min-height: 40px; align-items: center; padding: 8px 16px; border: 1px solid #cfcfcf; border-radius: 999px; color: #555; cursor: pointer; transition: color .2s, border-color .2s, background-color .2s; }
.choice input:checked + span { color: #fff; border-color: var(--red); background: var(--red); }
.choice input:focus-visible + span { outline: 2px solid var(--red); outline-offset: 2px; }
.form-control--memo { min-height: 160px; resize: vertical; }
.form-field--inline { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.form-field--inline .form-label { flex: 0 0 200px; margin: 0; }
.form-field--inline .form-control { flex: 1 1 auto; width: auto; }
.form-field--message { margin-top: 20px; }
.form-agree { display: flex; align-items: flex-start; gap: 10px; margin-top: 24px; color: #62625c; font-size: 13px; line-height: 1.5; }
.form-agree input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--red); }
.form-submit { display: flex; justify-content: center; margin-top: 80px; }
.form-submit .round-button { border: 0; cursor: pointer; }
.form-submit .round-button--dark { margin-top: 0; }
.form-submit .round-button:disabled { cursor: wait; opacity: .55; }
.form-status { min-height: 24px; margin: 14px 0 0; color: #666; font-size: 13px; text-align: center; }
.form-status.is-error { color: var(--red); }
.form-status.is-loading { color: #777; }
.success-main { display: grid; height: 100vh; min-height: 100vh; align-items: center; padding: 100px 0; }
.success-card { max-width: 820px; min-height: 0; margin: 0 auto; padding: 70px 30px; text-align: center; }
.success-card__eyebrow { margin: 0; color: var(--red); font: 500 16px/1.3 "Gmarket Sans", sans-serif; letter-spacing: .04em; }
.success-card h1 { margin: 20px 0 0; font: 700 clamp(34px, 4.2vw, 54px)/1.15 "Gmarket Sans", sans-serif; letter-spacing: -.08em; }
.success-card h1 span { position: relative; z-index: 0; display: inline-block; }
.success-card__copy { margin: 28px 0 0; color: #666; font-size: 16px; line-height: 1.7; }
.success-card .round-button { margin: 40px auto 0; }

@media (max-width: 1199px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr) 450px; }
  .hero__badge { font-size: 28px; }
  .hero h1 { font-size: 48px; }
  .hero__deco, .hero__orb { display: none; }
  .review-card.is-current { transform: scale(1); }
}

@media (max-width: 1023px) {
  .container { width: min(var(--max-width), calc(100% - 48px)); }
  .site-header { height: 72px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; top: 0; left: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0; width: 100%; height: 100vh; padding: 30px 5%; background: #fff; transform: translateY(-100%); transition: transform .3s; }
  .site-header.is-dark .site-nav { color: var(--ink); background: #fff; }
  .site-nav.is-open { transform: none; }
  .site-nav a { width: auto; padding: 15px; font: 700 44px/1.35 "Gmarket Sans", sans-serif; }
  .site-nav__cta { width: 260px !important; margin-top: 10px; padding: 0 !important; color: #fff !important; font: 500 22px/70px "Pretendard", sans-serif !important; }
  .hero__inner { grid-template-columns: 1fr; align-content: center; min-height: 700px; padding-bottom: 60px; }
  .hero__copy { padding-top: 40px; }
  .hero__visual { width: min(420px, 62vw); margin: -100px 0 0 auto; }
  .hero__pager { bottom: 0; }
  .section-heading__copy { font-size: 16px; }
  .talk-item p { max-width: 50%; font-size: 18px; }
  .talk-item + .talk-item { margin-top: 20px; }
  .coop-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-cta p { font-size: 20px; }
}

@media (max-width: 767px) {
  .container { width: calc(100% - 40px); }
  .site-header { height: 60px; }
  .brand img { width: 100px; height: 22px; }
  .site-nav { top: 0; }
  .site-nav a { font-size: 32px; }
  .site-nav__cta { width: 180px !important; font-size: 16px !important; line-height: 58px !important; }
  .hero { padding-top: 60px; }
  .hero__inner { min-height: 620px; align-content: end; }
  .hero__copy { padding: 40px 0 0; }
  .hero__slides { padding-bottom: 14px; }
  .hero__badge { gap: 6px; margin-bottom: 10px; font-size: 20px; }
  .hero__badge img { width: 24px; }
  .hero h1 { font-size: 34px; letter-spacing: -.08em; }
  .hero h1 span::after { bottom: -6px; height: 2px; }
  .hero__visual { width: 70vw; margin: 24px 0 0 auto; }
  .round-button { width: 220px; height: 52px; font-size: 18px; }
  .round-button--dark { margin-top: 30px; }
  .hero__pager { bottom: 0; }
  .hero__arrows button { width: 40px; height: 40px; }
  .hero__page-number strong { font-size: 28px; }
  .hero__page-number span { font-size: 14px; }
  .slogan { margin-top: 30px; }
  .slogan__track { font-size: 40px; }
  .section { padding: 90px 0; }
  .section-heading__point { margin-bottom: 15px; font-size: 15px; }
  .section-heading h2 { font-size: 26px; }
  .section-heading h2 span::after { right: -5px; left: -5px; height: 12px; }
  .section-heading__copy { margin-top: 30px; font-size: 13px; }
  .talk-list { margin-top: 40px; }
  .talk-item img { width: 60px; }
  .talk-item:first-child img { margin-right: 10px; }
  .talk-item:last-child img { margin-left: 10px; }
  .talk-item p { max-width: calc(100% - 70px); padding: 15px; font-size: 13px; overflow-wrap: normal; }
  .method { min-height: 700px; height: 100vh; }
  .method__inner { width: calc(100% - 40px); min-height: 0; height: 100%; }
  .method__line { height: 50vh; }
  .method__line span { width: 10px; height: 10px; }
  .method .round-button { margin-top: 35px; }
  .review-slider { margin-top: 40px; padding: 0 50px; }
  .review-card { flex-basis: 100%; padding: 10px; }
  .review-card__inner { min-height: 0; padding: 110px 20px 20px; }
  .review-card__face img { width: 100px; }
  .review-card strong { width: 60px; height: 22px; font-size: 14px; line-height: 22px; }
  .review-card p { font-size: 13px; }
  .review-note { font-size: 13px; line-height: 1.3; }
  .coop-grid { grid-template-columns: repeat(3, 1fr); margin-top: 50px; padding-top: 30px; }
  .coop-grid img { padding: 6px; }
  .contact-cta__inner { flex-wrap: wrap; justify-content: center; padding: 45px 0; }
  .contact-cta p { width: 100%; font-size: 18px; text-align: center; }
  .contact-cta .round-button { width: 200px; }
  .scroll-top { right: 20px; bottom: 20px; width: 42px; height: 42px; }
  .site-footer { font-size: 12px; line-height: 1.5; }
  .site-footer p { word-break: keep-all; overflow-wrap: anywhere; }
  .intro-scroll-stage { min-height: 100vh; }
  .intro { height: 100vh; min-height: 100vh; }
  .contact-main { padding: 60px 0 80px; }
  .contact-intro { height: calc(100vh - 60px); min-height: calc(100vh - 60px); padding: 70px 0 40px; }
  .contact-intro h1 { font-size: 44px; }
  .contact-intro h1 span::after { right: -8px; left: -8px; height: 13px; }
  .contact-intro p { font-size: 14px; }
  .contact-intro .section-heading__point { margin-bottom: 24px; }
  .contact-form-wrap { display: block; }
  .contact-side { margin-bottom: 35px; }
  .contact-side h2 { font-size: 26px; }
  .contact-side p { font-size: 14px; }
  .contact-side__note { display: none; }
  .contact-form { width: 100%; max-width: 100%; padding: 25px 20px; overflow: hidden; }
  .contact-form.is-collapsed { width: 220px; max-width: 220px; max-height: 88px; padding: 0 16px; }
  .contact-form.is-width-expanded { width: 100%; max-width: 100%; max-height: 88px; padding: 0 16px; }
  .contact-form.is-width-expanded.is-height-expanded { max-height: 1600px; padding: 25px 20px; }
  .form-grid { display: block; }
  .form-fieldset--inline legend, .form-field--inline .form-label { flex-basis: 130px; margin-bottom: 0; white-space: nowrap; font-size: 14px; letter-spacing: -.05em; }
  .form-fieldset--inline legend { width: 130px; }
  .form-fieldset--inline .choice-list { margin-left: 142px; }
  .contact-form .form-field--inline { margin-top: 0; }
  .form-field--inline .form-control { min-width: 0; }
  .form-field { margin-top: 20px; }
  .form-field:first-child { margin-top: 0; }
  .form-field--full { margin-top: 20px; }
  .form-field--message { margin-top: 20px; }
  .form-fieldset + .form-fieldset { padding-top: 20px; }
  .form-fieldset { padding-bottom: 20px; }
  .choice span { padding: 7px 12px; font-size: 13px; }
  .success-main { height: 100vh; min-height: 100vh; padding: 80px 0; }
  .success-card { padding: 60px 20px; }
  .success-card__eyebrow { font-size: 13px; }
  .success-card h1 { margin-top: 18px; font-size: 34px; }
  .success-card__copy { margin-top: 24px; font-size: 13px; }
  .success-card .round-button { margin-top: 34px; }
  .success-home { width: 96px; height: 36px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
