:root {
  --blue: #0752cf;
  --blue-deep: #062a7d;
  --sky: #2bb7e8;
  --red: #df422a;
  --yellow: #ffd21c;
  --navy: #001e59;
  --ink: #17253b;
  --muted: #5e6a78;
  --line: #dde6f0;
  --paper: #f7fbff;
  --cream: #fff7cf;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.air {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.82;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.eyebrow,
.section-title span,
.sample-copy span,
.price-note span {
  display: inline-block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.consumer .eyebrow,
.consumer .section-title span,
.consumer .price-note span {
  color: #a58200;
}

.section-title {
  width: min(1040px, calc(100% - 80px));
  margin: 0 auto 56px;
}

.section-title.side {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 54px;
  align-items: end;
}

.section-title.center {
  text-align: center;
}

.section-title h2,
.diagnosis-card h2,
.sample-copy h2,
.price-note h2,
.contact-copy h2,
.final-cta h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.34;
  letter-spacing: 0;
}

.hero-inner h1 {
  margin: 18px 0 0;
  letter-spacing: 0;
}

.hero-lead {
  width: min(560px, 100%);
  margin: 28px 0 0;
  color: inherit;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.9;
}

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

.hero-actions a,
.header-cta,
.sample-copy a,
.final-cta a,
.simple-form button,
.contact-panel a {
  min-height: 54px;
  display: inline-grid;
  place-items: center;
  padding: 0 25px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, .12);
}

.hero-actions a:hover,
.header-cta:hover,
.sample-copy a:hover,
.final-cta a:hover,
.simple-form button:hover,
.contact-panel a:hover {
  transform: translateY(-1px);
}

/* Shared header */
.inflow-header,
.consumer-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(0, 30, 89, .1);
  backdrop-filter: blur(10px);
}

.site-logo {
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.inflow-logo {
  color: var(--blue);
}

.inflow-logo span {
  width: 48px;
  height: 41px;
  border: 4px solid currentColor;
  border-right: 0;
  transform: skew(-15deg);
}

.inflow-logo b {
  font-size: 25px;
  line-height: 1.1;
}

.consumer-header {
  border-top: 4px solid var(--navy);
}

.consumer-logo {
  color: var(--navy);
}

.consumer-logo small {
  display: grid;
  place-items: center;
  width: 52px;
  height: 30px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
  transform: skew(-8deg);
}

.consumer-logo b {
  padding: 4px 10px;
  background: var(--yellow);
  box-shadow: inset 0 -4px 0 rgba(0, 30, 89, .14);
  font-size: 22px;
  line-height: 1.1;
}

.inflow-header nav,
.consumer-header nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 34px;
  color: #1b2b45;
  font-size: 14px;
  font-weight: 900;
}

.header-cta {
  min-width: 166px;
  color: #fff;
  background: var(--red);
  transition: transform .18s ease;
}

.header-cta.yellow {
  color: var(--navy);
  background: var(--yellow);
}

/* Page 1 */
.inflow-hero {
  position: relative;
  min-height: clamp(650px, 80vh, 780px);
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0 50%, #eaf7ff 50% 100%);
}

.inflow-hero-photo,
.inflow-hero-shape {
  position: absolute;
}

.inflow-hero-photo {
  inset: 0 0 0 52%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .52), rgba(9, 75, 190, .12) 38%, rgba(0, 30, 89, .08)),
    url("assets/page1-hero-chatgpt.jpg") 62% center / cover no-repeat;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  filter: saturate(.92) contrast(1.01);
}

.inflow-hero-shape {
  inset: 0 auto 0 46%;
  width: min(180px, 14vw);
  background:
    linear-gradient(180deg, rgba(7, 82, 207, .92), rgba(43, 183, 232, .62));
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
  opacity: .72;
}

.inflow-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 76px));
  min-height: clamp(650px, 80vh, 780px);
  margin: 0 auto;
  padding: 92px 0 128px;
  display: grid;
  align-content: center;
  color: var(--navy);
}

.inflow-hero .eyebrow {
  color: var(--blue);
  background: rgba(7, 82, 207, .08);
  width: fit-content;
  padding: 7px 14px;
}

.inflow-hero h1 {
  width: min(600px, 100%);
  font-size: clamp(46px, 4.8vw, 70px);
  line-height: 1.2;
  text-shadow: none;
}

.inflow-hero h1::after,
.consumer-hero h1::after {
  content: "";
  display: block;
  width: 88px;
  margin-top: 28px;
  border-top: 5px solid var(--yellow);
}

.inflow-hero .hero-actions a {
  color: var(--navy);
  border-color: var(--navy);
  background: #fff;
  box-shadow: none;
}

.inflow-hero .hero-actions a:first-child {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, .12);
}

.breath-line {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  padding: 118px 32px;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.breath-line::before {
  content: "";
  position: absolute;
  left: max(28px, calc((100vw - 1120px) / 2));
  bottom: 70px;
  width: 180px;
  border-top: 1px solid rgba(7, 82, 207, .18);
}

.breath-line p {
  width: min(720px, 100%);
  margin: 0;
  color: #102d73;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 900;
  line-height: 1.55;
}

.inflow-focus {
  padding: 152px 0 132px;
  background:
    linear-gradient(180deg, #f5fbff, #fff 76%),
    linear-gradient(90deg, rgba(7, 82, 207, .035) 1px, transparent 1px) 0 0 / 104px 104px;
}

.focus-copy {
  width: min(1040px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 94px;
  align-items: start;
}

.focus-copy > p {
  margin: 0;
  padding-left: 28px;
  border-left: 5px solid var(--blue);
  color: #183a88;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  line-height: 1.58;
}

.focus-copy ul {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.focus-copy li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.focus-copy b {
  color: #b6cceb;
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.focus-copy span {
  color: #1b2f50;
  font-size: 22px;
  font-weight: 900;
}

.diagnosis {
  width: min(1040px, calc(100% - 80px));
  margin: 0 auto;
  padding: 168px 0 142px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 92px;
  align-items: start;
}

.diagnosis-card {
  position: relative;
  padding: 10px 0 0 32px;
  color: var(--ink);
  background: transparent;
  border-left: 6px solid var(--blue);
  box-shadow: none;
}

.diagnosis-card .eyebrow {
  color: var(--blue);
}

.diagnosis-card p,
.diagnosis-note {
  margin: 22px 0 0;
  font-size: 18px;
  font-weight: 790;
}

.diagnosis-note {
  width: min(520px, 100%);
  margin: 0;
  color: #485970;
  font-size: 24px;
  line-height: 1.8;
}

.sample-bridge {
  width: min(1120px, calc(100% - 80px));
  margin: 40px auto 170px;
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  background: #f7f9fb;
}

.sample-photo {
  min-height: 540px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .05), rgba(0, 30, 89, .12)),
    url("assets/chatgpt-roof-hero-natural.png") center / cover no-repeat;
}

.sample-copy {
  align-self: center;
  padding: 62px 58px;
  background: #fff;
  border-top: 0;
  border-left: 8px solid var(--blue);
  transform: translate(-34px, 46px);
  box-shadow: 0 18px 34px rgba(0, 29, 90, .1);
}

.sample-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 760;
}

.sample-copy a,
.final-cta a {
  margin-top: 26px;
  color: #fff;
  background: var(--red);
}

.flow {
  padding: 132px 0 145px;
  background: #eef8ff;
}

.flow ol {
  width: min(900px, calc(100% - 80px));
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid #cbdff3;
  border-bottom: 1px solid #cbdff3;
}

.flow li {
  min-height: 170px;
  padding: 34px 30px;
  background: #fff;
}

.flow li + li {
  border-left: 1px solid #cbdff3;
}

.flow b,
.flow span {
  display: block;
}

.flow b {
  color: #0d338a;
  font-size: 24px;
  line-height: 1.35;
}

.flow span {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.final-cta {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 120px 32px;
  color: var(--navy);
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff, #f7fbff);
  border-top: 1px solid #dfeaf5;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .48), rgba(255, 255, 255, .08)),
    url("assets/page1-hero-chatgpt.jpg") 68% center / cover no-repeat;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .42;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta .eyebrow {
  color: var(--blue);
  background: rgba(7, 82, 207, .08);
  padding: 6px 12px;
}

.final-cta h2,
.final-cta p {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  color: #47586f;
  font-size: 18px;
  font-weight: 800;
}

.air-footer {
  min-height: 88px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #607085;
  font-size: 12px;
}

.air-footer b {
  color: var(--blue);
  font-size: 20px;
}

.mobile-fixed {
  display: none;
}

/* Page 2 */
.consumer {
  color: #24344d;
}

.consumer-hero {
  position: relative;
  min-height: clamp(690px, 84vh, 780px);
  display: grid;
  grid-template-columns: minmax(42px, 1fr) minmax(430px, 610px) minmax(430px, 650px) minmax(42px, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: #fff;
}

.consumer-hero-copy {
  z-index: 2;
  grid-column: 2;
  align-self: center;
  padding: 92px 0 118px;
}

.consumer-hero h1 {
  color: var(--navy);
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(50px, 5vw, 78px);
  line-height: 1.22;
  letter-spacing: .02em;
}

.consumer-hero .hero-lead {
  color: #314663;
}

.consumer-hero .hero-actions a {
  color: var(--navy);
  border-color: var(--navy);
  background: #fff;
  box-shadow: none;
}

.consumer-hero .hero-actions a:first-child {
  border-color: var(--yellow);
  background: var(--yellow);
  box-shadow: inset 0 -5px 0 rgba(0, 30, 89, .14);
}

.consumer-hero-photo {
  grid-column: 3 / 5;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .48), rgba(255, 255, 255, 0) 34%),
    url("assets/chatgpt-roof-hero-natural.png") 78% center / cover no-repeat;
}

.consumer-line {
  min-height: 420px;
  background: var(--cream);
}

.consumer-line p {
  color: var(--navy);
}

.photo-first {
  padding: 150px 0 128px;
}

.photo-layout {
  width: min(1080px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 78px;
  align-items: center;
}

.photo-board {
  min-height: 580px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 30, 89, .16)),
    url("assets/yk-detail-sheet.png") center / cover no-repeat;
  border: 12px solid #fff;
  box-shadow: 0 24px 45px rgba(0, 29, 90, .12);
  transform: translateY(-24px);
}

.photo-text article {
  padding: 30px 0;
  border-bottom: 1px solid #dce6f2;
}

.photo-text b {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.32;
}

.photo-text p {
  margin: 10px 0 0;
  color: #5c6878;
  font-weight: 760;
}

.price-note {
  width: min(1040px, calc(100% - 80px));
  margin: 0 auto 145px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 70px;
  padding: 70px 62px;
  background:
    linear-gradient(180deg, rgba(255, 247, 199, .96), rgba(255, 249, 218, .96)),
    linear-gradient(90deg, rgba(0, 30, 89, .05) 1px, transparent 1px) 0 0 / 36px 36px;
  border-left: 8px solid var(--yellow);
}

.price-note h2 {
  color: var(--navy);
}

.price-note dl {
  margin: 0;
}

.price-note dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 30, 89, .18);
}

.price-note dt,
.price-note dd {
  margin: 0;
  font-weight: 850;
}

.price-note dt {
  color: var(--navy);
}

.price-note dd {
  color: #4f5e72;
}

.works {
  padding: 135px 0 150px;
  background: #eef6ff;
}

.works-grid {
  width: min(960px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 32px;
  align-items: start;
}

.works-grid article {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.works-grid article:nth-child(2) {
  margin-top: 58px;
}

.work-photo {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 32px rgba(0, 29, 90, .1);
}

.work-a {
  background-image: url("assets/page2-hero-chatgpt-v2.jpg");
  background-position: 62% center;
}

.work-b {
  background-image: url("assets/yk-detail-sheet.png");
}

.works-grid b,
.works-grid p {
  display: block;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.works-grid b {
  padding-top: 24px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.35;
}

.works-grid p {
  padding-top: 10px;
  padding-bottom: 0;
  color: #5d6878;
  font-weight: 760;
}

.consumer-contact {
  width: min(1080px, calc(100% - 80px));
  margin: 150px auto 138px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 66px;
  align-items: start;
}

.contact-copy {
  padding-top: 32px;
}

.contact-copy p {
  color: #586578;
  font-size: 17px;
  font-weight: 760;
}

.simple-form {
  display: grid;
  gap: 16px;
  padding: 38px;
  background: #fff;
  border-top: 8px solid var(--navy);
  box-shadow: 0 18px 34px rgba(0, 29, 90, .07);
}

.simple-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.simple-form input,
.simple-form textarea {
  width: 100%;
  border: 1px solid #cad7e6;
  background: #fff;
  padding: 12px 14px;
}

.simple-form button {
  border: 0;
  color: var(--navy);
  background: var(--yellow);
}

.contact-panel {
  padding: 42px 44px 46px;
  background: #fff;
  border-top: 8px solid var(--navy);
  box-shadow: 0 18px 34px rgba(0, 29, 90, .07);
}

.contact-panel p {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.contact-panel ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-panel li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #dce6f2;
}

.contact-panel b,
.contact-panel span {
  display: block;
}

.contact-panel b {
  color: var(--navy);
  font-weight: 900;
}

.contact-panel span {
  color: #586578;
  font-weight: 760;
}

.contact-panel a {
  width: 100%;
  margin-top: 30px;
  color: var(--navy);
  background: var(--yellow);
}

.consumer-footer {
  background: var(--navy);
  color: #d9e5f6;
}

.consumer-footer b {
  color: var(--yellow);
}

/* calm10: less information, more pause, more human rhythm */
.inflow-header,
.consumer-header {
  min-height: 72px;
  padding-inline: 34px;
}

.inflow-header nav,
.consumer-header nav {
  justify-content: flex-start;
  gap: 28px;
}

.header-cta {
  min-height: 48px;
  min-width: 150px;
}

.inflow-hero {
  min-height: clamp(720px, 88vh, 860px);
}

.inflow-hero-inner {
  width: min(1080px, calc(100% - 112px));
  min-height: clamp(720px, 88vh, 860px);
  padding-block: 112px 150px;
}

.inflow-hero h1 {
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 1.22;
}

.hero-lead {
  width: min(500px, 100%);
  margin-top: 34px;
  font-size: 17px;
  font-weight: 720;
  line-height: 2;
}

.hero-actions {
  margin-top: 54px;
}

.breath-line {
  min-height: 560px;
  padding: 150px 32px;
}

.breath-line::before {
  bottom: 116px;
  width: 240px;
}

.breath-line p {
  width: min(760px, 100%);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.7;
}

.section-title {
  width: min(980px, calc(100% - 112px));
  margin-bottom: 80px;
}

.section-title.side {
  grid-template-columns: 180px 1fr;
  gap: 90px;
  align-items: start;
}

.section-title h2,
.diagnosis-card h2,
.sample-copy h2,
.price-note h2,
.contact-copy h2,
.final-cta h2 {
  font-size: clamp(34px, 3.3vw, 50px);
  line-height: 1.46;
}

.inflow-focus {
  padding: 210px 0 190px;
  background: #fff;
}

.focus-copy {
  width: min(940px, calc(100% - 112px));
  grid-template-columns: .95fr 1fr;
  gap: 120px;
}

.focus-copy > p {
  padding-left: 0;
  border-left: 0;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.85;
}

.focus-copy li {
  grid-template-columns: 74px 1fr;
  padding: 32px 0;
}

.focus-copy b {
  color: var(--blue);
  font-family: inherit;
  font-size: 16px;
  letter-spacing: .08em;
}

.focus-copy span {
  font-size: 20px;
  font-weight: 850;
}

.diagnosis {
  width: min(940px, calc(100% - 112px));
  padding: 190px 0;
  gap: 120px;
}

.diagnosis-card {
  padding: 0;
  border-left: 0;
}

.diagnosis-note {
  font-size: 23px;
  line-height: 2;
}

.sample-bridge {
  width: min(1080px, calc(100% - 112px));
  margin: 80px auto 220px;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  background: #fff;
}

.sample-photo {
  min-height: 620px;
}

.sample-copy {
  padding: 72px 64px;
  border-top: 4px solid var(--blue);
  border-left: 0;
  transform: translate(-54px, 72px);
  box-shadow: 0 12px 32px rgba(0, 29, 90, .08);
}

.sample-copy p {
  line-height: 1.95;
}

.final-cta {
  min-height: 680px;
  padding: 170px 32px;
  background: #fff;
}

.final-cta::before {
  width: 42%;
  opacity: .28;
}

.final-cta p {
  margin-top: 22px;
  line-height: 2;
}

.consumer-hero {
  min-height: clamp(720px, 86vh, 860px);
}

.consumer-hero-copy {
  padding-block: 112px 150px;
}

.consumer-hero h1 {
  font-size: clamp(50px, 5vw, 76px);
  line-height: 1.26;
}

.consumer-line {
  min-height: 540px;
}

.photo-first {
  padding: 210px 0 170px;
}

.photo-layout {
  width: min(1040px, calc(100% - 112px));
  gap: 120px;
}

.photo-board {
  min-height: 640px;
  transform: translateY(-36px);
  box-shadow: 0 18px 34px rgba(0, 29, 90, .09);
}

.photo-text article {
  padding: 42px 0;
}

.photo-text b {
  font-size: 29px;
}

.price-note {
  width: min(920px, calc(100% - 112px));
  margin: 40px auto 210px;
  gap: 110px;
  padding: 96px 0;
  background: #fff;
  border-top: 3px solid var(--yellow);
  border-left: 0;
}

.works {
  padding: 180px 0 210px;
  background: #fff;
}

.works-grid {
  width: min(900px, calc(100% - 112px));
  gap: 90px;
}

.works-grid article:nth-child(2) {
  margin-top: 130px;
}

.work-photo {
  min-height: 340px;
  box-shadow: none;
}

.consumer-contact {
  width: min(940px, calc(100% - 112px));
  margin: 190px auto 170px;
  gap: 100px;
}

.contact-panel {
  padding: 56px 52px;
  border: 1px solid #dce6f2;
  border-top: 6px solid var(--navy);
  box-shadow: none;
}

@media (max-width: 860px) {
  body.air {
    padding-bottom: 58px;
  }

  .inflow-header,
  .consumer-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .inflow-header nav,
  .consumer-header nav,
  .header-cta {
    display: none;
  }

  .site-logo {
    min-width: 0;
  }

  .inflow-logo span {
    width: 38px;
    height: 32px;
    border-width: 3px;
  }

  .inflow-logo b {
    font-size: 20px;
  }

  .consumer-logo small {
    width: 42px;
    height: 25px;
    font-size: 10px;
  }

  .consumer-logo b {
    font-size: 17px;
  }

  .inflow-hero,
  .consumer-hero {
    min-height: 720px;
  }

  .inflow-hero {
    background: #fff;
  }

  .inflow-hero-photo {
    inset: auto 0 0 0;
    height: 330px;
    clip-path: none;
    background-position: 62% center;
  }

  .inflow-hero-shape {
    inset: auto 0 328px 0;
    width: auto;
    height: 8px;
    clip-path: none;
    opacity: 1;
  }

  .inflow-hero-inner,
  .consumer-hero-copy {
    width: calc(100% - 36px);
    min-height: 720px;
    margin: 0 auto;
    padding: 64px 0 250px;
    align-content: start;
  }

  .inflow-hero-inner {
    color: var(--navy);
    padding-bottom: 360px;
  }

  .inflow-hero h1,
  .consumer-hero h1 {
    font-size: 40px;
  }

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

  .hero-actions {
    display: none;
  }

  .consumer-hero {
    display: block;
    background: #fff;
  }

  .consumer-hero-photo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 330px;
    background-position: 76% center;
  }

  .breath-line,
  .consumer-line {
    min-height: 300px;
    padding: 72px 24px;
  }

  .breath-line p {
    font-size: 28px;
    text-align: left;
  }

  .section-title,
  .focus-copy,
  .diagnosis,
  .sample-bridge,
  .flow ol,
  .photo-layout,
  .price-note,
  .works-grid,
  .consumer-contact {
    width: calc(100% - 40px);
  }

  .section-title.side,
  .focus-copy,
  .diagnosis,
  .sample-bridge,
  .photo-layout,
  .price-note,
  .consumer-contact {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-title h2,
  .diagnosis-card h2,
  .sample-copy h2,
  .price-note h2,
  .contact-copy h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .inflow-focus,
  .diagnosis,
  .photo-first,
  .flow,
  .works {
    padding: 86px 0;
  }

  .focus-copy > p {
    font-size: 25px;
  }

  .focus-copy li {
    grid-template-columns: 58px 1fr;
  }

  .focus-copy b {
    font-size: 34px;
  }

  .focus-copy span {
    font-size: 19px;
  }

  .diagnosis-card {
    padding: 30px 28px 34px;
    box-shadow: 10px 10px 0 #dff1ff;
  }

  .diagnosis-note {
    font-size: 20px;
  }

  .sample-photo {
    min-height: 300px;
  }

  .sample-copy {
    transform: none;
    padding: 34px 28px;
  }

  .flow ol,
  .works-grid {
    grid-template-columns: 1fr;
  }

  .flow li + li {
    border-left: 0;
    border-top: 1px solid #cbdff3;
  }

  .photo-board {
    min-height: 320px;
  }

  .price-note {
    margin-bottom: 86px;
    padding: 30px 24px;
  }

  .price-note dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .works-grid article:nth-child(2) {
    margin-top: 0;
  }

  .work-photo {
    min-height: 250px;
  }

  .consumer-contact {
    margin: 86px auto;
  }

  .simple-form,
  .contact-panel {
    padding: 26px 20px;
  }

  .contact-panel li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .air-footer {
    min-height: 120px;
    padding: 28px 22px 88px;
    display: grid;
    gap: 8px;
  }

  .mobile-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    height: 58px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-fixed a {
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--red);
    font-weight: 900;
  }

  .mobile-fixed a:nth-child(2) {
    background: var(--blue);
  }

  .consumer-fixed a {
    background: var(--navy);
  }

  .consumer-fixed a:nth-child(2) {
    color: var(--navy);
    background: var(--yellow);
  }

  .inflow-header,
  .consumer-header {
    min-height: 60px;
    padding-inline: 14px;
  }

  .inflow-hero,
  .consumer-hero,
  .inflow-hero-inner,
  .consumer-hero-copy {
    min-height: 760px;
  }

  .inflow-hero-inner,
  .consumer-hero-copy {
    width: calc(100% - 42px);
    padding-top: 74px;
  }

  .breath-line,
  .consumer-line {
    min-height: 360px;
    padding: 98px 28px;
  }

  .breath-line p {
    font-size: 29px;
    line-height: 1.72;
  }

  .section-title,
  .focus-copy,
  .diagnosis,
  .sample-bridge,
  .flow ol,
  .photo-layout,
  .price-note,
  .works-grid,
  .consumer-contact {
    width: calc(100% - 48px);
  }

  .section-title {
    margin-bottom: 54px;
  }

  .section-title.side,
  .focus-copy,
  .diagnosis,
  .sample-bridge,
  .photo-layout,
  .price-note,
  .consumer-contact {
    gap: 52px;
  }

  .inflow-focus,
  .diagnosis,
  .photo-first,
  .works {
    padding: 118px 0;
  }

  .focus-copy > p {
    font-size: 23px;
    line-height: 1.85;
  }

  .focus-copy b {
    font-size: 15px;
  }

  .diagnosis-card {
    padding: 0;
    box-shadow: none;
  }

  .diagnosis-note {
    font-size: 20px;
    line-height: 1.9;
  }

  .sample-bridge {
    margin: 30px auto 132px;
  }

  .sample-copy {
    padding: 40px 28px;
    transform: none;
  }

  .final-cta {
    min-height: 500px;
    padding: 110px 24px;
  }

  .price-note {
    margin-bottom: 132px;
    padding: 68px 0;
  }

  .works-grid article:nth-child(2) {
    margin-top: 54px;
  }

  .consumer-contact {
    margin: 124px auto;
  }
}

/* calm11: break the template rhythm and let each scroll feel intentional */
.inflow-hero {
  background:
    linear-gradient(90deg, #fff 0 48%, #eef8ff 48% 100%);
}

.inflow-hero-photo {
  inset: 0 0 0 48%;
  background-position: 58% center;
}

.inflow-hero-shape {
  inset: 0 auto 0 47.5%;
  width: min(118px, 9vw);
  opacity: .64;
}

.inflow-hero::after,
.consumer-hero::after {
  content: "";
  position: absolute;
  left: max(42px, calc((100vw - 1080px) / 2));
  bottom: 36px;
  width: 1px;
  height: 74px;
  background: linear-gradient(180deg, rgba(0, 30, 89, .08), rgba(0, 30, 89, .34));
}

.breath-line {
  isolation: isolate;
}

.breath-line::after {
  content: "";
  position: absolute;
  right: max(32px, calc((100vw - 1080px) / 2));
  bottom: -64px;
  z-index: -1;
  width: 240px;
  height: 180px;
  background: url("assets/yk-detail-sheet.png") center / cover no-repeat;
  opacity: .13;
  transform: rotate(-2deg);
}

.inflow-focus {
  position: relative;
}

.inflow-focus::before {
  content: "";
  position: absolute;
  top: 120px;
  bottom: 120px;
  left: max(40px, calc((100vw - 940px) / 2));
  border-left: 1px solid #edf2f8;
}

.focus-copy li:nth-child(2) {
  transform: translateX(30px);
}

.focus-copy li:nth-child(3) {
  transform: translateX(10px);
}

.diagnosis {
  position: relative;
}

.diagnosis::before {
  content: "";
  position: absolute;
  top: 118px;
  right: 0;
  width: 190px;
  border-top: 2px solid rgba(7, 82, 207, .18);
}

.diagnosis-card p {
  width: fit-content;
  padding: 6px 0 0;
  border-top: 1px solid rgba(7, 82, 207, .2);
}

.sample-bridge {
  position: relative;
}

.sample-bridge::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 42px;
  width: 42px;
  height: 150px;
  background: var(--yellow);
  opacity: .9;
}

.sample-copy {
  box-shadow: 18px 18px 0 rgba(7, 82, 207, .055);
}

.consumer-hero {
  background:
    linear-gradient(90deg, #fff 0 49%, #f6f9fc 49% 100%);
}

.consumer-line {
  position: relative;
  overflow: hidden;
}

.consumer-line::after {
  content: "";
  position: absolute;
  right: max(20px, calc((100vw - 1080px) / 2));
  bottom: -90px;
  width: 300px;
  height: 220px;
  background: url("assets/page2-hero-chatgpt-v2.jpg") center / cover no-repeat;
  opacity: .1;
  transform: rotate(1.5deg);
}

.photo-first {
  position: relative;
}

.photo-first::before {
  content: "";
  position: absolute;
  top: 118px;
  left: max(42px, calc((100vw - 1040px) / 2));
  width: 180px;
  border-top: 2px solid var(--yellow);
}

.photo-board {
  border-width: 9px;
  transform: translate(-18px, -36px);
}

.photo-text article:nth-child(2) {
  transform: translateX(34px);
}

.price-note {
  position: relative;
}

.price-note::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 0;
  width: 84px;
  border-top: 7px solid var(--navy);
}

.works .section-title.center {
  width: min(900px, calc(100% - 112px));
  text-align: left;
}

.works-grid article:first-child .work-photo {
  min-height: 390px;
}

.works-grid article:nth-child(2) {
  width: 84%;
  justify-self: end;
}

.consumer-contact {
  position: relative;
}

.consumer-contact::before {
  content: "";
  position: absolute;
  left: 44%;
  top: -70px;
  height: 130px;
  border-left: 1px solid #e8edf4;
}

@media (max-width: 860px) {
  .inflow-hero {
    background: #fff;
  }

  .inflow-hero::after,
  .consumer-hero::after,
  .inflow-focus::before,
  .diagnosis::before,
  .sample-bridge::before,
  .consumer-contact::before {
    display: none;
  }

  .inflow-hero-photo {
    inset: auto 0 0 0;
  }

  .inflow-hero-shape {
    inset: auto 0 328px 0;
    width: auto;
  }

  .breath-line::after,
  .consumer-line::after {
    width: 180px;
    height: 130px;
    right: 16px;
    bottom: -42px;
    opacity: .1;
  }

  .focus-copy li:nth-child(2),
  .focus-copy li:nth-child(3),
  .photo-text article:nth-child(2) {
    transform: none;
  }

  .photo-first::before {
    top: 82px;
    left: 24px;
    width: 120px;
  }

  .photo-board {
    transform: none;
  }

  .works .section-title.center {
    width: calc(100% - 48px);
  }

  .works-grid article:nth-child(2) {
    width: 100%;
  }
}

/* calm12: make Page 1 quieter and more direct than the consumer sample */
.air-inflow .breath-line {
  place-items: center start;
  padding-left: max(42px, calc((100vw - 940px) / 2));
  padding-right: max(42px, calc((100vw - 940px) / 2));
}

.air-inflow .breath-line p {
  width: min(620px, 100%);
  text-align: left;
}

.air-inflow .breath-line::before {
  left: max(42px, calc((100vw - 940px) / 2));
}

.air-inflow .breath-line::after {
  right: max(42px, calc((100vw - 940px) / 2));
  opacity: .16;
}

.air-inflow .section-title.side {
  grid-template-columns: 150px 1fr;
}

.air-inflow .section-title h2 {
  max-width: 560px;
}

.air-inflow .final-cta .eyebrow {
  background: transparent;
  border-bottom: 1px solid rgba(7, 82, 207, .22);
}

.consumer .breath-line p {
  width: min(690px, 100%);
}

@media (max-width: 860px) {
  .air-inflow .breath-line {
    padding-left: 24px;
    padding-right: 24px;
  }

  .air-inflow .section-title.side {
    grid-template-columns: 1fr;
  }
}

/* calm13: specific enough to feel real, still sparse enough to breathe */
.inflow-hero .hero-lead {
  width: min(545px, 100%);
}

.air-inflow .focus-copy span {
  font-weight: 820;
}

.diagnosis-note {
  width: min(560px, 100%);
}

.consumer-hero .eyebrow {
  color: #8b7200;
  background: rgba(255, 210, 28, .18);
  padding: 6px 10px;
}

.consumer-hero .hero-lead {
  width: min(610px, 100%);
}

.consumer-line p {
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 800;
  letter-spacing: .02em;
}

.price-note h2 {
  max-width: 360px;
}

@media (max-width: 860px) {
  .inflow-hero .hero-lead,
  .consumer-hero .hero-lead {
    width: 100%;
  }

  .consumer-hero .eyebrow {
    line-height: 1.5;
  }
}

/* calm14: Page 1 speaks like a person, not a proposal deck */
.air-inflow .inflow-hero h1 {
  width: min(560px, 100%);
}

.air-inflow .inflow-hero .hero-lead {
  width: min(500px, 100%);
  line-height: 2.05;
}

.air-inflow .final-cta h2 {
  font-size: clamp(34px, 3vw, 46px);
}

/* calm16: one quiet trust line, not another sales block */
.quiet-promise {
  margin: 24px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #dce6f2;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.contact-panel .quiet-promise + a {
  margin-top: 24px;
}

/* calm17: tiny real-world context without adding another heavy section */
.visit-note {
  width: min(900px, calc(100% - 112px));
  margin: -112px auto 156px;
  padding: 0 0 0 28px;
  border-left: 5px solid var(--yellow);
}

.visit-note p {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.8;
}

.visit-note b,
.visit-note span {
  display: inline;
}

@media (max-width: 860px) {
  .visit-note {
    width: calc(100% - 48px);
    margin: -58px auto 108px;
    padding-left: 18px;
  }

  .visit-note p {
    font-size: 19px;
    line-height: 1.75;
  }

  .visit-note b,
  .visit-note span {
    display: block;
  }
}

/* calm18: work examples should feel like field notes, not stock cards */
.works-grid article {
  position: relative;
}

.works-grid article::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 52px;
  border-top: 4px solid var(--yellow);
}

.works-grid article:nth-child(2)::before {
  left: auto;
  right: -18px;
}

.works-grid small {
  display: block;
  margin-top: 22px;
  color: #9a7b00;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.works-grid small + b {
  padding-top: 8px;
}

@media (max-width: 860px) {
  .works-grid article::before,
  .works-grid article:nth-child(2)::before {
    left: 0;
    right: auto;
    top: -16px;
    width: 46px;
  }

  .works-grid small {
    margin-top: 18px;
  }
}

/* calm23: fewer words, deeper breathing room, more hand-tuned scroll rhythm */
.inflow-header,
.consumer-header {
  min-height: 74px;
  box-shadow: 0 1px 0 rgba(0, 30, 89, .06);
}

.inflow-header nav,
.consumer-header nav {
  gap: 30px;
}

.inflow-header nav a,
.consumer-header nav a {
  position: relative;
  padding: 24px 0;
}

.inflow-header nav a::after,
.consumer-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 18px;
  border-top: 2px solid currentColor;
  opacity: .22;
}

.hero-actions a,
.header-cta,
.sample-copy a,
.final-cta a,
.contact-panel a {
  min-height: 52px;
  padding-inline: 26px;
}

.air-inflow .inflow-hero {
  min-height: clamp(760px, 91vh, 900px);
  background:
    linear-gradient(90deg, #fff 0 51%, #eef8ff 51% 100%);
}

.air-inflow .inflow-hero-inner {
  min-height: clamp(760px, 91vh, 900px);
  padding-block: 116px 176px;
}

.air-inflow .inflow-hero-photo {
  inset: 0 0 0 53%;
  opacity: .88;
  filter: saturate(.82) contrast(.98);
}

.air-inflow .inflow-hero-shape {
  left: 49%;
  width: min(88px, 7vw);
  opacity: .52;
}

.air-inflow .inflow-hero .eyebrow,
.consumer-hero .eyebrow {
  padding: 0 0 8px;
  background: transparent;
  border-bottom: 2px solid rgba(7, 82, 207, .18);
}

.consumer-hero .eyebrow {
  border-bottom-color: rgba(165, 130, 0, .22);
}

.air-inflow .inflow-hero h1,
.consumer-hero h1 {
  margin-top: 24px;
}

.air-inflow .inflow-hero h1 {
  font-size: clamp(50px, 5.6vw, 82px);
  line-height: 1.18;
}

.air-inflow .inflow-hero .hero-lead,
.consumer-hero .hero-lead {
  margin-top: 42px;
  color: #314663;
  font-size: 17px;
  font-weight: 680;
  line-height: 2.12;
}

.air-inflow .hero-actions,
.consumer-hero .hero-actions {
  margin-top: 62px;
}

.air-inflow .breath-line,
.consumer-line {
  min-height: 640px;
  padding-top: 180px;
  padding-bottom: 180px;
}

.air-inflow .breath-line p,
.consumer-line p {
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1.82;
}

.air-inflow .inflow-focus,
.photo-first {
  padding-top: 230px;
  padding-bottom: 220px;
}

.section-title {
  margin-bottom: 94px;
}

.air-inflow .section-title.side,
.photo-first .section-title.side {
  grid-template-columns: 130px 1fr;
  gap: 120px;
}

.section-title h2,
.diagnosis-card h2,
.sample-copy h2,
.price-note h2,
.contact-copy h2,
.final-cta h2 {
  line-height: 1.55;
}

.focus-copy {
  grid-template-columns: 1fr 1fr;
  gap: 148px;
}

.focus-copy > p {
  max-width: 430px;
  color: #173a84;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 850;
  line-height: 1.96;
}

.focus-copy ul {
  max-width: 420px;
  margin-top: 18px;
}

.focus-copy li {
  grid-template-columns: 56px 1fr;
  padding: 36px 0;
  border-bottom-color: rgba(7, 82, 207, .11);
}

.focus-copy li:nth-child(2),
.focus-copy li:nth-child(3) {
  transform: none;
}

.focus-copy b {
  color: rgba(7, 82, 207, .52);
  font-size: 13px;
  letter-spacing: .14em;
}

.focus-copy span {
  font-size: 19px;
  font-weight: 760;
}

.diagnosis {
  width: min(900px, calc(100% - 128px));
  padding-top: 220px;
  padding-bottom: 230px;
  grid-template-columns: 1fr 1fr;
  gap: 132px;
  border-top: 1px solid rgba(7, 82, 207, .1);
}

.diagnosis::before {
  top: 148px;
  width: 130px;
}

.diagnosis-card p {
  margin-top: 34px;
  color: #576777;
  font-size: 16px;
  font-weight: 720;
}

.diagnosis-note {
  max-width: 420px;
  color: #35465b;
  font-size: 22px;
  font-weight: 720;
  line-height: 2.08;
}

.sample-bridge {
  width: min(1040px, calc(100% - 128px));
  margin-top: 20px;
  margin-bottom: 250px;
  grid-template-columns: 1.08fr .92fr;
}

.sample-photo {
  min-height: 660px;
}

.sample-copy {
  padding: 78px 66px;
  transform: translate(-64px, 92px);
  box-shadow: 16px 20px 0 rgba(7, 82, 207, .045);
}

.sample-copy p {
  font-size: 16px;
  line-height: 2.08;
}

.final-cta {
  min-height: 720px;
  padding-top: 190px;
  padding-bottom: 190px;
}

.final-cta::before {
  width: 38%;
  opacity: .2;
}

.consumer-hero {
  min-height: clamp(760px, 90vh, 900px);
  grid-template-columns: minmax(54px, 1fr) minmax(390px, 560px) minmax(470px, 720px) minmax(54px, 1fr);
}

.consumer-hero-copy {
  padding-block: 116px 170px;
}

.consumer-hero h1 {
  max-width: 560px;
  font-size: clamp(50px, 4.9vw, 74px);
}

.consumer-hero-photo {
  background-position: 72% center;
  filter: saturate(.9) contrast(.98);
}

.photo-layout {
  gap: 138px;
}

.photo-board {
  min-height: 620px;
  border-width: 0;
  box-shadow: none;
  transform: translateY(-18px);
}

.photo-text {
  padding-top: 42px;
}

.photo-text article {
  padding: 46px 0;
}

.photo-text article:nth-child(2) {
  transform: none;
}

.photo-text b {
  font-size: 30px;
}

.photo-text p {
  font-size: 16px;
  line-height: 1.9;
}

.price-note {
  width: min(900px, calc(100% - 128px));
  margin-top: 80px;
  margin-bottom: 230px;
  padding: 106px 0;
  grid-template-columns: .95fr 1.05fr;
  gap: 126px;
}

.price-note dl div {
  padding: 24px 0;
}

.visit-note {
  width: min(760px, calc(100% - 128px));
  margin-top: -128px;
  margin-bottom: 190px;
}

.works {
  padding-top: 210px;
  padding-bottom: 240px;
}

.works-grid {
  width: min(860px, calc(100% - 128px));
  gap: 120px;
}

.works-grid article:nth-child(2) {
  margin-top: 170px;
}

.works-grid p {
  display: none;
}

.consumer-contact {
  width: min(900px, calc(100% - 128px));
  margin-top: 230px;
  margin-bottom: 190px;
  gap: 126px;
}

.contact-copy p {
  line-height: 2;
}

.contact-panel {
  padding: 64px 58px;
}

.contact-panel p {
  line-height: 1.65;
}

.quiet-promise {
  margin-top: 38px;
  padding-top: 22px;
  font-size: 15px;
  line-height: 1.8;
}

.contact-panel .quiet-promise + a {
  margin-top: 34px;
}

@media (max-width: 860px) {
  .inflow-header,
  .consumer-header {
    min-height: 62px;
  }

  .air-inflow .inflow-hero,
  .consumer-hero,
  .air-inflow .inflow-hero-inner,
  .consumer-hero-copy {
    min-height: 790px;
  }

  .air-inflow .inflow-hero-photo {
    inset: auto 0 0 0;
    height: 300px;
    opacity: .82;
  }

  .air-inflow .inflow-hero-shape {
    inset: auto 0 298px 0;
    width: auto;
    height: 7px;
  }

  .air-inflow .inflow-hero-inner,
  .consumer-hero-copy {
    width: calc(100% - 46px);
    padding-top: 86px;
    padding-bottom: 350px;
  }

  .air-inflow .inflow-hero h1,
  .consumer-hero h1 {
    font-size: 39px;
    line-height: 1.32;
  }

  .air-inflow .inflow-hero .hero-lead,
  .consumer-hero .hero-lead {
    margin-top: 32px;
    font-size: 15px;
    line-height: 2.02;
  }

  .air-inflow .breath-line,
  .consumer-line {
    min-height: 430px;
    padding: 118px 26px;
  }

  .air-inflow .breath-line p,
  .consumer-line p {
    font-size: 27px;
    line-height: 1.85;
  }

  .air-inflow .inflow-focus,
  .photo-first {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .section-title,
  .focus-copy,
  .diagnosis,
  .sample-bridge,
  .photo-layout,
  .price-note,
  .works-grid,
  .consumer-contact,
  .visit-note {
    width: calc(100% - 48px);
  }

  .section-title {
    margin-bottom: 68px;
  }

  .air-inflow .section-title.side,
  .photo-first .section-title.side,
  .focus-copy,
  .diagnosis,
  .sample-bridge,
  .photo-layout,
  .price-note,
  .consumer-contact {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .focus-copy > p {
    font-size: 22px;
  }

  .focus-copy ul {
    max-width: none;
    margin-top: 0;
  }

  .focus-copy li {
    grid-template-columns: 44px 1fr;
    padding: 28px 0;
  }

  .focus-copy b {
    font-size: 12px;
  }

  .focus-copy span {
    font-size: 18px;
  }

  .diagnosis {
    padding-top: 146px;
    padding-bottom: 154px;
  }

  .diagnosis::before {
    display: none;
  }

  .diagnosis-note {
    font-size: 19px;
    line-height: 2;
  }

  .sample-bridge {
    margin-bottom: 150px;
  }

  .sample-photo {
    min-height: 330px;
  }

  .sample-copy {
    padding: 42px 28px;
    transform: none;
  }

  .final-cta {
    min-height: 560px;
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .final-cta::before {
    width: 58%;
    opacity: .13;
  }

  .consumer-hero-photo {
    height: 300px;
  }

  .photo-board {
    min-height: 330px;
    transform: none;
  }

  .photo-text {
    padding-top: 0;
  }

  .photo-text article {
    padding: 32px 0;
  }

  .price-note {
    margin-top: 0;
    margin-bottom: 146px;
    padding: 72px 0;
  }

  .visit-note {
    margin-top: -70px;
    margin-bottom: 132px;
  }

  .works {
    padding-top: 150px;
    padding-bottom: 160px;
  }

  .works-grid {
    gap: 78px;
  }

  .works-grid article:nth-child(2) {
    margin-top: 0;
  }

  .consumer-contact {
    margin-top: 150px;
    margin-bottom: 128px;
  }

  .contact-panel {
    padding: 38px 28px;
  }
}

/* calm24: full-bleed photographic air, not a left-text/right-photo template */
body.air {
  color: #142238;
  text-rendering: optimizeLegibility;
}

.inflow-header,
.consumer-header {
  background: rgba(255, 255, 255, .985);
}

.site-logo b,
.consumer-logo b,
.inflow-header nav a,
.consumer-header nav a {
  letter-spacing: 0;
}

.inflow-header nav a,
.consumer-header nav a {
  color: #21324c;
  font-size: 13px;
  font-weight: 760;
}

.header-cta {
  min-width: 160px;
  font-size: 14px;
}

.air-inflow .inflow-hero {
  isolation: isolate;
  min-height: clamp(790px, 92vh, 920px);
  background: #fff;
}

.air-inflow .inflow-hero-photo {
  inset: 0;
  clip-path: none;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .98) 28%, rgba(255, 255, 255, .74) 50%, rgba(255, 255, 255, .18) 72%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .28) 100%),
    url("assets/page1-hero-chatgpt.jpg") 72% center / cover no-repeat;
  opacity: 1;
  filter: saturate(.86) contrast(.98);
}

.air-inflow .inflow-hero-shape {
  inset: 0 auto 0 50.4%;
  width: 38px;
  background: linear-gradient(180deg, rgba(43, 183, 232, .38), rgba(7, 82, 207, .22));
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
  opacity: .72;
}

.air-inflow .inflow-hero-inner {
  min-height: clamp(790px, 92vh, 920px);
  padding-block: 128px 188px;
}

.air-inflow .inflow-hero .eyebrow {
  color: #0752cf;
  font-size: 12px;
  font-weight: 820;
}

.air-inflow .inflow-hero h1 {
  max-width: 680px;
  color: #001e59;
  font-size: clamp(52px, 5.25vw, 76px);
  font-weight: 880;
  line-height: 1.16;
}

.nowrap {
  white-space: nowrap;
}

.air-inflow .inflow-hero h1::after {
  width: 62px;
  margin-top: 34px;
  border-top-width: 4px;
}

.air-inflow .inflow-hero .hero-lead {
  max-width: 500px;
  margin-top: 44px;
  color: #2c405b;
  font-size: 16px;
  font-weight: 680;
  line-height: 2.18;
}

.hero-actions a,
.sample-copy a,
.final-cta a,
.contact-panel a,
.header-cta {
  border-radius: 0;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .12);
}

.hero-actions a:not(:first-child) {
  box-shadow: none;
}

.air-inflow .breath-line {
  min-height: 700px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 62%, #f8fbff 100%);
}

.air-inflow .breath-line p {
  max-width: 560px;
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 850;
}

.air-inflow .breath-line::before {
  bottom: 150px;
  width: 150px;
}

.air-inflow .breath-line::after {
  width: 320px;
  height: 220px;
  bottom: 88px;
  opacity: .09;
}

.air-inflow .inflow-focus::before {
  top: 180px;
  bottom: 190px;
}

.air-inflow .section-title h2,
.diagnosis-card h2,
.sample-copy h2,
.final-cta h2 {
  color: #15263d;
  font-weight: 860;
}

.focus-copy {
  align-items: center;
}

.focus-copy > p {
  color: #102d73;
}

.focus-copy li {
  position: relative;
}

.focus-copy li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 42px;
  border-top: 1px solid rgba(7, 82, 207, .28);
}

.diagnosis {
  border-top-color: rgba(7, 82, 207, .075);
}

.diagnosis-card .eyebrow,
.sample-copy span,
.final-cta .eyebrow {
  color: #0752cf;
  font-size: 12px;
  font-weight: 820;
}

.diagnosis-card p {
  border-top: 0;
}

.sample-bridge {
  isolation: isolate;
}

.sample-photo {
  min-height: 690px;
  filter: saturate(.86) contrast(.98);
}

.sample-copy {
  border-top-width: 3px;
}

.final-cta {
  background:
    linear-gradient(90deg, #fff 0%, #fff 54%, #f1f8ff 54%, #f1f8ff 100%);
}

.final-cta::before {
  opacity: .23;
}

.consumer-hero {
  display: block;
  isolation: isolate;
  min-height: clamp(790px, 92vh, 920px);
  background: #fff;
}

.consumer-hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .98) 28%, rgba(255, 255, 255, .7) 49%, rgba(255, 255, 255, .2) 68%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 250, 225, .34) 100%),
    url("assets/chatgpt-roof-hero-natural.png") 78% center / cover no-repeat;
  filter: saturate(.88) contrast(.98);
}

.consumer-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 128px));
  min-height: clamp(790px, 92vh, 920px);
  margin: 0 auto;
  padding-block: 130px 188px;
  display: grid;
  align-content: center;
}

.consumer-hero h1 {
  max-width: 570px;
  color: #001e59;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1.28;
}

.consumer-hero h1::after {
  width: 62px;
  margin-top: 34px;
  border-top-width: 4px;
}

.consumer-hero .hero-lead {
  max-width: 520px;
  color: #2c405b;
}

.consumer-line {
  min-height: 690px;
  background:
    linear-gradient(180deg, #fff7cf 0%, #fff7cf 64%, #fff 100%);
}

.consumer-line p {
  max-width: 780px;
}

.consumer .breath-line p {
  font-size: clamp(30px, 2.75vw, 40px);
}

.photo-first {
  padding-top: 245px;
}

.photo-layout {
  align-items: center;
}

.photo-board {
  min-height: 660px;
}

.photo-text b,
.price-note dt,
.works-grid b,
.contact-panel p {
  color: #001e59;
}

.price-note {
  border-top-width: 2px;
}

.price-note::before {
  width: 54px;
  border-top-width: 4px;
}

.visit-note {
  border-left-width: 3px;
}

.visit-note p {
  font-size: 20px;
  font-weight: 820;
}

.works .section-title.center {
  margin-bottom: 110px;
}

.works-grid article::before {
  width: 38px;
  border-top-width: 3px;
}

.consumer-contact::before {
  opacity: .72;
}

.contact-panel {
  border-top-width: 4px;
}

@media (max-width: 860px) {
  .air-inflow .inflow-hero,
  .consumer-hero,
  .air-inflow .inflow-hero-inner,
  .consumer-hero-copy {
    min-height: 820px;
  }

  .air-inflow .inflow-hero-photo {
    inset: auto 0 0 0;
    height: 310px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
      url("assets/page1-hero-chatgpt.jpg") 67% center / cover no-repeat;
  }

  .air-inflow .inflow-hero-shape {
    inset: auto 0 307px 0;
    width: auto;
    height: 6px;
    clip-path: none;
  }

  .air-inflow .inflow-hero-inner,
  .consumer-hero-copy {
    width: calc(100% - 46px);
    padding-top: 92px;
    padding-bottom: 370px;
  }

  .air-inflow .inflow-hero h1,
  .consumer-hero h1 {
    max-width: 330px;
    font-size: 38px;
    line-height: 1.36;
  }

  .air-inflow .inflow-hero h1::after,
  .consumer-hero h1::after {
    width: 54px;
    margin-top: 28px;
  }

  .air-inflow .inflow-hero .hero-lead,
  .consumer-hero .hero-lead {
    max-width: 330px;
    margin-top: 32px;
    font-size: 15px;
    line-height: 2.05;
  }

  .air-inflow .breath-line,
  .consumer-line {
    min-height: 470px;
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .air-inflow .breath-line p,
  .consumer-line p {
    max-width: 310px;
    font-size: 26px;
    line-height: 1.9;
  }

  .consumer .breath-line p {
    max-width: 330px;
    font-size: 25px;
  }

  .air-inflow .breath-line::after,
  .consumer-line::after {
    opacity: .075;
  }

  .air-inflow .inflow-focus,
  .photo-first {
    padding-top: 166px;
    padding-bottom: 164px;
  }

  .focus-copy > p {
    max-width: 320px;
    font-size: 21px;
    line-height: 1.98;
  }

  .diagnosis {
    padding-top: 160px;
    padding-bottom: 170px;
  }

  .sample-photo,
  .photo-board {
    min-height: 350px;
  }

  .consumer-hero-photo {
    position: absolute;
    inset: auto 0 0 0;
    height: 310px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08)),
      url("assets/chatgpt-roof-hero-natural.png") 75% center / cover no-repeat;
  }

  .consumer-line {
    background: #fff7cf;
  }

  .price-note {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .works .section-title.center {
    margin-bottom: 76px;
  }
}

/* calm25: give Page 1 one memorable visual moment without adding copy */
.air-inflow .inflow-focus {
  overflow: hidden;
}

.air-inflow .inflow-focus::after {
  content: "3";
  position: absolute;
  right: max(26px, calc((100vw - 1120px) / 2));
  top: 190px;
  z-index: 0;
  color: rgba(7, 82, 207, .045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(180px, 18vw, 280px);
  font-weight: 700;
  line-height: .8;
}

.air-inflow .inflow-focus > * {
  position: relative;
  z-index: 1;
}

.focus-copy {
  width: min(1060px, calc(100% - 128px));
  grid-template-columns: .9fr 330px .95fr;
  gap: 76px;
}

.focus-copy > p {
  align-self: center;
}

.focus-photo-stack {
  position: relative;
  min-height: 420px;
  align-self: center;
}

.focus-photo-stack span {
  position: absolute;
  display: block;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 38px rgba(0, 29, 90, .08);
}

.focus-photo-stack span:nth-child(1) {
  inset: 18px 72px auto 0;
  height: 240px;
  background-image: url("assets/page1-hero-chatgpt.jpg");
  background-position: 64% center;
}

.focus-photo-stack span:nth-child(2) {
  top: 148px;
  right: 0;
  width: 210px;
  height: 210px;
  background-image: url("assets/yk-detail-sheet.png");
}

.focus-photo-stack span:nth-child(3) {
  left: 44px;
  bottom: 12px;
  width: 150px;
  height: 112px;
  background-image: url("assets/chatgpt-roof-hero-natural.png");
  opacity: .92;
}

.focus-photo-stack::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 76px;
  width: 16px;
  height: 112px;
  background: var(--yellow);
}

.focus-photo-stack::after {
  content: "PHOTO / AREA / WORK";
  position: absolute;
  right: 6px;
  bottom: 28px;
  color: rgba(7, 82, 207, .62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}

.focus-copy ul {
  align-self: center;
  margin-top: 0;
}

.diagnosis {
  margin-top: 20px;
}

/* calm25: make Page 2 photo-report section feel more intentional */
.consumer .photo-board {
  position: relative;
}

.consumer .photo-board::before {
  content: "点検写真";
  position: absolute;
  left: 22px;
  top: 22px;
  padding: 9px 13px;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.consumer .photo-board::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -30px;
  width: 86px;
  border-top: 4px solid var(--yellow);
}

.photo-text article {
  position: relative;
  padding-left: 26px;
}

.photo-text article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 52px;
  width: 7px;
  height: 7px;
  background: var(--yellow);
}

@media (max-width: 860px) {
  .air-inflow .inflow-focus::after {
    right: 14px;
    top: 118px;
    font-size: 145px;
  }

  .focus-copy {
    width: calc(100% - 48px);
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .focus-photo-stack {
    min-height: 330px;
    order: 2;
  }

  .focus-copy ul {
    order: 3;
  }

  .focus-photo-stack span:nth-child(1) {
    inset: 10px 52px auto 0;
    height: 190px;
  }

  .focus-photo-stack span:nth-child(2) {
    top: 126px;
    width: 176px;
    height: 176px;
  }

  .focus-photo-stack span:nth-child(3) {
    left: 28px;
    bottom: 0;
    width: 126px;
    height: 92px;
  }

  .focus-photo-stack::before {
    left: -10px;
    top: 52px;
    height: 88px;
  }

  .consumer .photo-board::before {
    left: 16px;
    top: 16px;
    font-size: 10px;
  }

  .consumer .photo-board::after {
    right: 0;
    bottom: -18px;
    width: 64px;
  }

  .photo-text article {
    padding-left: 20px;
  }

  .photo-text article::before {
    top: 38px;
  }
}

/* calm32: restore the original Page 1 sales intent without losing breathing room */
.air-inflow .inflow-hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.22;
}

.air-inflow .inflow-hero .hero-lead {
  max-width: 620px;
  font-size: 18px;
  line-height: 2.05;
}

.air-inflow .section-title h2 {
  max-width: 760px;
}

.air-inflow .focus-copy > p {
  max-width: 430px;
  font-size: clamp(22px, 2.15vw, 31px);
}

.air-inflow .focus-copy span {
  font-size: 18px;
}

.air-inflow .diagnosis {
  grid-template-columns: 1.05fr .95fr;
  gap: 108px;
}

.air-inflow .diagnosis-card h2,
.air-inflow .sample-copy h2 {
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.55;
}

.air-inflow .diagnosis-note {
  max-width: 460px;
  font-size: 20px;
  line-height: 2.02;
}

.air-inflow .sample-copy p {
  max-width: 430px;
}

.air-inflow .final-cta h2 {
  max-width: 780px;
}

.air-inflow .final-cta p {
  max-width: 720px;
}

@media (max-width: 860px) {
  .air-inflow .inflow-hero h1 {
    max-width: 340px;
    font-size: 36px;
    line-height: 1.42;
  }

  .air-inflow .inflow-hero .hero-lead {
    max-width: 330px;
    font-size: 15px;
    line-height: 2.02;
  }

  .air-inflow .section-title h2,
  .air-inflow .diagnosis-card h2,
  .air-inflow .sample-copy h2,
  .air-inflow .final-cta h2 {
    font-size: 28px;
    line-height: 1.58;
  }

  .air-inflow .focus-copy > p {
    max-width: 330px;
    font-size: 20px;
  }

  .air-inflow .focus-copy span {
    font-size: 17px;
  }

  .air-inflow .diagnosis {
    gap: 48px;
  }

  .air-inflow .diagnosis-note {
    max-width: 330px;
    font-size: 18px;
    line-height: 1.95;
  }
}

/* trace01: Page 1 50410 homage. Scoped to avoid touching /hitomi/template/. */
body.trace-page {
  --trace-font-main: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  margin: 0;
  color: #333;
  background: #fff;
  font-family: var(--trace-font-main);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

.trace-page section {
  scroll-margin-top: 92px;
}

.trace-page *,
.trace-page *::before,
.trace-page *::after {
  box-sizing: border-box;
}

.trace-page a {
  color: inherit;
  text-decoration: none;
}

.trace-page img {
  max-width: 100%;
}

.trace-page h1,
.trace-page h2,
.trace-page h3,
.trace-page p,
.trace-page a,
.trace-page span,
.trace-page small,
.trace-page b,
.trace-page dl,
.trace-page dt,
.trace-page dd,
.trace-page ol,
.trace-page li {
  font-family: var(--trace-font-main);
  margin: 0;
}

.trace-inner {
  width: min(1200px, 94%);
  margin: 0 auto;
}

.trace-center {
  text-align: center;
}

.trace-en {
  display: block;
  color: #124bdb;
  background: linear-gradient(to top right, #124bdb, #1db4ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Roboto, "Arial Black", Arial, sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .04em;
}

.trace-page section h2 {
  font-size: clamp(40px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.62;
  letter-spacing: .035em;
}

.trace-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 15px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
}

.trace-logo {
  width: 318px;
  min-width: 318px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #003c84;
}

.trace-logo-img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.trace-logo-img-horizontal {
  width: 294px;
  max-height: 62px;
}

.trace-logo-img-reverse {
  width: 250px;
  max-height: 64px;
}

.trace-logo-mark {
  position: relative;
  width: 54px;
  height: 48px;
  display: block;
}

.trace-logo-mark::before,
.trace-logo-mark::after {
  content: "";
  position: absolute;
  background: #124bdb;
}

.trace-logo-mark::before {
  left: 4px;
  top: 4px;
  width: 5px;
  height: 39px;
  transform: rotate(-19deg);
  border-radius: 3px;
}

.trace-logo-mark::after {
  left: 10px;
  bottom: 4px;
  width: 40px;
  height: 5px;
  transform: skewX(-20deg);
  border-radius: 4px;
}

.trace-logo-text {
  color: #124bdb;
  font-family: Roboto, "Arial Black", Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .02em;
  white-space: nowrap;
}

.trace-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
}

.trace-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 90px;
  color: #333;
  font-weight: 800;
  white-space: nowrap;
}

.trace-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: #124bdb;
  transform: translateX(-50%);
  transition: width .2s ease;
}

.trace-nav a:hover::after {
  width: 42px;
}

.trace-header-cta {
  display: inline-grid;
  place-items: center;
  min-width: 181px;
  height: 42px;
  padding: 0 30px;
  color: #fff !important;
  background: #db4827;
  border-radius: 60px;
  font-weight: 800;
  font-size: 16px;
  transition: opacity .2s ease, transform .2s ease;
}

.trace-header-cta:visited,
.trace-header-cta:hover {
  color: #fff !important;
}

.trace-header-cta:hover {
  opacity: .82;
  transform: translateY(-1px);
}

.trace-menu {
  display: none;
}

.trace-mobile-panel {
  display: none;
}

.trace-hero {
  position: relative;
  height: calc(100vh - 90px);
  min-height: 650px;
  overflow: hidden;
  background: #124bdb;
}

.trace-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: transparent;
  filter: saturate(.94) contrast(1.04);
}

.trace-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, 0) 28%, rgba(0, 64, 170, .08) 100%),
    linear-gradient(135deg, rgba(18, 75, 219, .18), rgba(29, 180, 255, .06));
}

.trace-hero-photo-piece {
  position: absolute;
  z-index: 2;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  filter: contrast(1.14) saturate(1.08);
  opacity: .9;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .22);
}

.trace-hero-photo-paint {
  left: -4%;
  top: -2%;
  width: 39%;
  height: 82%;
  background-image: url("assets/hero/hitomi-hero-paint.jpg");
  background-position: 44% center;
  clip-path: polygon(0 0, 100% 0, 61% 100%, 0 86%);
}

.trace-hero-photo-roof {
  left: 18%;
  top: -8%;
  width: 54%;
  height: 118%;
  background-image: url("assets/hero/hitomi-hero-roof.jpg");
  background-position: 58% 40%;
  clip-path: polygon(14% 0, 100% 0, 78% 100%, 0 100%);
}

.trace-hero-photo-scaffold {
  right: 9%;
  top: 0;
  width: 39%;
  height: 72%;
  background-image: url("assets/hero/hitomi-hero-scaffold.jpg");
  background-position: 56% 44%;
  clip-path: polygon(16% 0, 100% 0, 82% 87%, 0 100%);
}

.trace-hero-photo-wall {
  right: -5%;
  bottom: -4%;
  width: 34%;
  height: 61%;
  background-image: url("assets/hero/hitomi-hero-wall.jpg");
  background-position: 46% center;
  clip-path: polygon(18% 0, 100% 10%, 100% 100%, 0 100%);
}

.trace-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(18, 75, 219, .84), rgba(29, 180, 255, .68));
  clip-path: polygon(0 0, 54% 0, 100% 100%, 0 100%);
}

.trace-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(60deg, rgba(255, 255, 255, .07) 0 24%, transparent 24% 100%) 0 0 / 120px 120px,
    linear-gradient(120deg, rgba(255, 255, 255, .055) 0 24%, transparent 24% 100%) 0 0 / 120px 120px;
  opacity: .65;
  pointer-events: none;
}

.trace-hero-poly {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.trace-hero-poly-main {
  inset: 0 -12% 0 45%;
  background: linear-gradient(135deg, rgba(18, 75, 219, .78), rgba(29, 180, 255, .62));
  clip-path: polygon(0 0, 100% 0, 58% 100%, 18% 100%);
  mix-blend-mode: multiply;
}

.trace-hero-poly-sub {
  left: -9%;
  bottom: -11%;
  width: 39%;
  height: 54%;
  background: linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .22));
  clip-path: polygon(0 24%, 62% 0, 100% 84%, 26% 100%);
  border: 6px solid rgba(18, 75, 219, .65);
}

.trace-hero-pattern {
  position: absolute;
  z-index: 5;
  right: 0;
  top: 0;
  width: 46%;
  height: 64%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0)),
    linear-gradient(60deg, rgba(255, 255, 255, .08) 0 24%, transparent 24% 100%) 0 0 / 112px 112px,
    linear-gradient(120deg, rgba(255, 255, 255, .06) 0 24%, transparent 24% 100%) 0 0 / 112px 112px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 72%);
  opacity: .7;
}

.trace-hero-copy {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 19%;
  width: min(1120px, 82%);
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 8px 22px rgba(0, 36, 120, .28);
  isolation: isolate;
}

.trace-hero-copy::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 54%;
  width: min(1080px, 106%);
  height: calc(100% + 76px);
  transform: translate(-50%, -50%) skewX(-9deg);
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 55, 178, .72), rgba(0, 139, 232, .48));
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  box-shadow: 0 22px 70px rgba(0, 42, 150, .26);
}

.trace-hero-copy > * {
  position: relative;
  z-index: 1;
}

.trace-hero-kicker {
  width: fit-content;
  display: inline-block;
  margin: 0 auto 30px;
  padding: 10px 24px 12px;
  color: #124bdb;
  background: rgba(255, 255, 255, .94);
  border-left: 7px solid #ffd500;
  border-right: 7px solid #ffd500;
  box-shadow: 0 12px 28px rgba(0, 34, 126, .22);
  font-size: clamp(22px, 1.75vw, 29px);
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.35;
  text-shadow: none;
}

.trace-hero h1 {
  color: #fff;
  font-size: clamp(60px, 5vw, 82px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: .032em;
  white-space: normal;
}

.trace-h1-line {
  display: block;
  white-space: nowrap;
}

.trace-hero-subline {
  width: fit-content;
  max-width: 760px;
  margin: 38px auto 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-bottom: 15px;
  border-bottom: 5px double rgba(255, 255, 255, .8);
}

.trace-hero-subline span {
  color: #ffd500;
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 800;
  letter-spacing: .025em;
  text-shadow: 0 7px 18px rgba(0, 28, 96, .28);
}

.trace-hero-lead {
  margin-top: 18px;
  font-size: clamp(22px, 1.75vw, 28px);
  font-weight: 800;
  line-height: 1.55;
}

.trace-hero-cards {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 8%;
  width: 70%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 3%;
}

.trace-hero-cards article {
  min-height: 120px;
  width: 31.333%;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 30px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(2, 40, 136, .3);
}

.trace-page .trace-hero-cards h2 {
  color: #124bdb;
  font-size: clamp(23px, 1.55vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .018em;
  white-space: nowrap;
}

.trace-hero-cards p {
  margin-top: 6px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.trace-card-icon-img {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 8px rgba(18, 75, 219, .12));
}

.trace-about {
  padding: 120px 0;
  background: #fff;
  overflow: hidden;
}

.trace-about-inner {
  width: min(1500px, 95%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6%;
}

.trace-about-text {
  width: 38%;
  margin-left: 50px;
}

.trace-page .trace-about-text h2 {
  margin-top: 18px;
  color: #333;
  font-size: clamp(34px, 3.1vw, 44px);
  font-weight: 800;
  line-height: 1.58;
  letter-spacing: .022em;
}

.trace-page .trace-about-text h2 span {
  color: #008ee8;
}

.trace-about-text p:last-child {
  max-width: 560px;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
}

.trace-about-image {
  width: 62%;
  margin-right: -120px;
  line-height: 0;
  filter: drop-shadow(0 20px 46px rgba(0, 45, 120, .12));
}

.trace-about-image img {
  width: 100%;
  min-height: 470px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.trace-problem {
  position: relative;
  padding: 120px 0 180px;
  background:
    linear-gradient(45deg, rgba(18, 75, 219, .035) 25%, transparent 25%) 0 0 / 22px 22px,
    linear-gradient(-45deg, rgba(18, 75, 219, .03) 25%, transparent 25%) 0 0 / 22px 22px,
    #f7f8fa;
}

.trace-problem .trace-inner {
  width: min(1500px, 94%);
}

.trace-problem h2,
.trace-solution h2,
.trace-service h2,
.trace-plan h2,
.trace-flow h2,
.trace-faq h2 {
  margin: 16px auto 58px;
  text-align: center;
}

.trace-problem-box {
  position: relative;
  width: 86%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
  padding: 70px 66px;
  background: #fff;
}

.trace-problem-box::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -50px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 80px 0 80px;
  border-color: #124bdb transparent transparent transparent;
  transform: translateX(-50%);
}

.trace-problem-box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -220px;
  width: 4px;
  height: 170px;
  background: #124bdb;
  transform: translateX(-50%);
}

.trace-problem-box article {
  position: relative;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 28px 30px;
  border: 4px solid #124bdb;
  border-radius: 10px;
  color: #333;
  text-align: left;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .018em;
}

.trace-problem-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
}

.trace-problem-box article span {
  display: block;
}

.trace-problem-box article::after {
  display: none;
}

.trace-problem-box article::before {
  display: none;
}

.trace-solution {
  position: relative;
  padding: 170px 0 120px;
  background:
    linear-gradient(45deg, #d9e2f9, #f8f3fe, #d6eefa, #b6fdeb);
  background-size: 800% 800%;
}

.trace-solution h2 {
  position: relative;
  max-width: 950px;
  line-height: 1.55;
}

.trace-solution h2::after {
  display: none;
}

.trace-solution-list {
  width: min(1320px, 100%);
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  box-shadow: 0 12px 38px rgba(18, 75, 219, .1);
}

.trace-solution-list article {
  position: relative;
  min-height: 0;
  padding: 0;
  text-align: center;
  background: #fff;
  border-right: 1px solid #ccc;
}

.trace-solution-list article:last-child {
  border-right: none;
}

.trace-solution-list article::before {
  display: none;
}

.trace-solution-list article::after {
  display: none;
}

.trace-solution-photo {
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}

.trace-solution-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.trace-solution-body {
  min-height: 270px;
  padding: 30px 26px 32px;
}

.trace-solution-icon {
  width: 70px;
  height: 70px;
  display: block;
  margin: 0 auto 10px;
  object-fit: contain;
}

.trace-solution-list span {
  display: block;
  color: #124bdb;
  font-family: Roboto, "Arial Black", Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.trace-solution-list h3 {
  margin-top: 16px;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.45;
}

.trace-solution-list p {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.78;
}

.trace-advantage {
  padding: 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 25, 94, .78), rgba(18, 75, 219, .86)),
    url("assets/page1-hero-chatgpt.jpg") center / cover no-repeat;
}

.trace-advantage-inner {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7%;
}

.trace-advantage-panel {
  width: 52%;
  min-height: 330px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 38px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .34);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.trace-advantage-panel span {
  display: grid;
  grid-template-rows: 108px auto;
  place-items: center;
  gap: 16px;
  color: #124bdb;
  background: #fff;
  font-family: Roboto, "Arial Black", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  padding: 30px 18px;
}

.trace-advantage-panel img {
  width: 108px;
  height: 108px;
  display: block;
  object-fit: contain;
}

.trace-advantage-panel b {
  display: block;
  line-height: 1;
}

.trace-advantage-copy {
  width: 39%;
  padding: 60px 0;
}

.trace-advantage-copy .trace-en {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.trace-advantage-copy h2 {
  margin-top: 18px;
  color: #fff;
}

.trace-advantage-copy p:last-child {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 800;
  line-height: 2;
}

.trace-service {
  padding: 120px 0 130px;
  background: #fff;
}

.trace-service-grid {
  width: min(1180px, 100%);
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 74px 48px;
}

.trace-service-grid article {
  position: relative;
  min-height: 560px;
}

.trace-service-photo {
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: #eef4ff;
}

.trace-service-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.trace-service-text {
  position: relative;
  z-index: 1;
  width: 90%;
  min-height: 310px;
  margin: -72px auto 0;
  padding: 70px 46px 40px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .09);
}

.trace-service-icon {
  position: absolute;
  left: 50%;
  top: -38px;
  width: 76px;
  height: 76px;
  display: block;
  object-fit: contain;
  padding: 9px;
  background: #fff;
  border: 1px solid rgba(18, 75, 219, .13);
  box-shadow: 0 12px 24px rgba(18, 75, 219, .16);
  transform: translateX(-50%);
}

.trace-service-text h3 {
  margin-bottom: 17px;
  color: #333;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .018em;
}

.trace-service-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
  color: #124bdb;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .055em;
}

.trace-service-subtitle::before,
.trace-service-subtitle::after {
  content: "";
  width: 48px;
  height: 1px;
  display: block;
  background: #d1d1d1;
}

.trace-service-lead {
  margin-bottom: 24px;
  color: #333;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.65;
}

.trace-service-text p:not(.trace-service-subtitle):not(.trace-service-lead) {
  color: #444;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.95;
  text-align: left;
}

.trace-plan {
  padding: 120px 0;
  background: #eaf2ff;
}

.trace-entry-plan {
  width: min(960px, 100%);
  margin: 58px auto 0;
  overflow: hidden;
  background: #fff;
  border: 3px solid #64bd3a;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(4, 34, 92, .12);
}

.trace-basic-plan {
  margin-top: 70px;
  border-color: #ee5a00;
}

.trace-otegoro-plan {
  margin-top: 70px;
  border-color: #0a9bd7;
}

.trace-entry-head {
  padding: 24px 30px;
  color: #fff;
  background: #62bd3b;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .025em;
}

.trace-basic-plan .trace-entry-head {
  background: #ee5a00;
}

.trace-otegoro-plan .trace-entry-head {
  background: #0a9bd7;
}

.trace-entry-body {
  padding: 42px 24px 28px;
  text-align: center;
}

.trace-entry-lead {
  margin: 0 auto 28px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.trace-entry-price {
  margin: 0 auto 54px;
  padding: 42px 0 34px;
  color: #333;
  font-weight: 900;
  line-height: 1.2;
}

.trace-basic-price {
  padding-top: 42px;
  padding-bottom: 34px;
}

.trace-otegoro-price {
  padding-top: 42px;
  padding-bottom: 34px;
}

.trace-page .trace-entry-price-label {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 800;
}

.trace-page .trace-entry-price-old {
  width: fit-content;
  display: inline-block;
  margin: 0 auto 14px;
  color: #7b8392;
  font-family: Roboto, "Arial Black", Arial, sans-serif;
  font-size: 33px;
  font-weight: 900;
  line-height: 1;
}

.trace-entry-price-old span {
  position: relative;
  display: inline-block;
  padding: 0 6px;
}

.trace-entry-price-old span::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 50%;
  height: 4px;
  background: #df422a;
  transform: rotate(-6deg);
}

.trace-entry-price-old small {
  margin-left: 4px;
  font-family: var(--trace-font-main);
  font-size: 16px;
  font-weight: 800;
}

.trace-entry-price-new {
  margin: 0;
}

.trace-entry-price-new strong {
  display: inline-block;
  margin: 0 8px;
  color: #db4827;
  font-family: Roboto, "Arial Black", Arial, sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.trace-entry-price-new span {
  color: #333;
  font-size: 20px;
  font-weight: 800;
}

.trace-entry-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #bfc7d2;
  border-left: 1px solid #bfc7d2;
}

.trace-entry-features article {
  position: relative;
  min-height: 256px;
  padding: 42px 28px 30px;
  background: #fff;
  border-right: 1px solid #bfc7d2;
  border-bottom: 1px solid #bfc7d2;
  text-align: center;
}

.trace-entry-sticker {
  position: absolute;
  left: 22px;
  top: 20px;
  z-index: 2;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 10px;
  color: #fff;
  background: #11b8b1;
  border-radius: 50%;
  box-shadow: none;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
  text-align: center;
  text-shadow: none;
}

.trace-entry-sticker::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  pointer-events: none;
}

.trace-entry-sticker-pages {
  background: #149be2;
}

.trace-entry-sticker-original {
  background: #11b8b1;
}

.trace-entry-sticker-template {
  background: #11b8b1;
}

.trace-entry-sticker-pages span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.trace-entry-sticker-pages strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-family: var(--trace-font-main);
  font-size: 32px;
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
}

.trace-entry-icon {
  width: 92px;
  height: 92px;
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
}

.trace-entry-features h3 {
  margin: 0 0 16px;
  color: #333;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.trace-entry-features p {
  margin: 0;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.trace-note-mark {
  display: inline;
  margin-left: 2px;
  color: #333;
  font-size: .9em;
  font-weight: 800;
  white-space: nowrap;
}

.trace-plan-notes {
  width: min(960px, 100%);
  margin: 42px auto 0;
  color: #333;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.trace-plan-notes p + p {
  margin-top: 4px;
}

.trace-maintenance {
  padding: 88px 0 96px;
  background: #fff;
}

.trace-maintenance h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  letter-spacing: .04em;
}

.trace-maintenance-en {
  margin-top: 8px;
  color: #1477db;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .03em;
}

.trace-maintenance-rule {
  width: 120px;
  height: 1px;
  margin: 28px auto 44px;
  background: #333;
}

.trace-maintenance-price {
  margin: 0;
  padding-bottom: 72px;
  color: #333;
  text-align: center;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 900;
  letter-spacing: .04em;
}

.trace-maintenance-price strong {
  display: inline-block;
  margin: 0 8px;
  color: #df442a;
  font-size: clamp(44px, 5.2vw, 62px);
  line-height: 1;
  letter-spacing: .03em;
  vertical-align: -4px;
}

.trace-maintenance-price span {
  font-size: clamp(20px, 2.1vw, 28px);
}

.trace-maintenance-box {
  width: min(1080px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #d9f6fb;
}

.trace-maintenance-box h3 {
  margin: 0;
  padding: 22px 24px;
  color: #fff;
  background: #099ddb;
  text-align: center;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 900;
  letter-spacing: .04em;
}

.trace-maintenance-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 34px 28px 36px;
}

.trace-maintenance-list article {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 26px 18px 24px;
  border: 3px solid #0898dc;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.trace-maintenance-list img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.trace-maintenance-list p {
  margin-top: 18px;
  color: #333;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.65;
}

.trace-maintenance-plus {
  margin-top: 96px;
}

.trace-maintenance-option-label {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 10px 26px 11px;
  color: #083f96;
  background: #ffd500;
  border: 3px solid #0799dc;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 97, 190, .14);
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
}

.trace-maintenance-plus .trace-maintenance-price {
  padding-bottom: 72px;
}

.trace-maintenance-note {
  width: min(760px, 92%);
  margin: 0 auto 46px;
  color: #333;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
}

.trace-sales-design-note {
  width: min(960px, 92%);
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
}

.trace-subsidy-estimate {
  margin: 0 28px 36px;
  padding: 28px 28px 30px;
  border: 2px solid rgba(8, 152, 220, .35);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  text-align: center;
}

.trace-subsidy-estimate .trace-sales-design-note {
  margin: 0 auto 26px;
}

.trace-subsidy-estimate h4 {
  margin: 0;
  color: #0749bd;
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 900;
  letter-spacing: .04em;
}

.trace-subsidy-estimate-lead {
  margin: 10px 0 22px;
  color: #333;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

.trace-subsidy-estimate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trace-subsidy-estimate-grid article {
  padding: 22px 18px 20px;
  border: 2px solid #0898dc;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(4, 67, 140, .08);
}

.trace-subsidy-estimate-grid h5 {
  margin: 0 0 16px;
  color: #333;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
}

.trace-subsidy-estimate-grid dl {
  margin: 0;
}

.trace-subsidy-estimate-grid dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: baseline;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid #dcecf7;
}

.trace-subsidy-estimate-grid dt,
.trace-subsidy-estimate-grid dd {
  margin: 0;
  font-weight: 900;
  line-height: 1.4;
}

.trace-subsidy-estimate-grid dt {
  color: #1468c9;
  font-size: 13px;
  text-align: left;
}

.trace-subsidy-estimate-grid dd {
  color: #333;
  font-size: 17px;
  text-align: right;
}

.trace-subsidy-estimate-grid dl div:last-child dd {
  color: #df442a;
  font-size: 21px;
}

.trace-subsidy-support {
  width: min(1080px, 100%);
  margin: 88px auto 0;
  overflow: hidden;
  border: 3px solid #f1c400;
  border-radius: 10px;
  background: linear-gradient(135deg, #fffdf0 0%, #f7fbff 64%, #e7f5ff 100%);
  box-shadow: 0 22px 50px rgba(11, 75, 168, .13);
}

.trace-subsidy-support-head {
  position: relative;
  padding: 34px 34px 30px;
  background: linear-gradient(135deg, #0b56d8 0%, #0b9bdc 100%);
  color: #fff;
  text-align: center;
}

.trace-subsidy-support-head .trace-maintenance-option-label {
  margin-bottom: 18px;
}

.trace-subsidy-support-en {
  margin: 0 0 8px;
  color: #ffd500;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .09em;
}

.trace-subsidy-support h2 {
  color: #fff;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.28;
}

.trace-subsidy-support-price {
  margin: 22px 0 0;
  font-size: clamp(22px, 2.7vw, 34px);
  font-weight: 900;
  letter-spacing: .04em;
}

.trace-subsidy-support-price strong {
  display: inline-block;
  margin-right: 10px;
  color: #ffd500;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0, 55, 130, .24);
}

.trace-subsidy-support-price span {
  font-size: clamp(18px, 1.7vw, 24px);
}

.trace-subsidy-support-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: center;
  padding: 42px 48px 28px;
}

.trace-subsidy-support-copy h3 {
  margin: 0;
  color: #222;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.65;
}

.trace-subsidy-support-copy p {
  margin-top: 18px;
  color: #333;
  font-size: 16px;
  font-weight: 800;
  line-height: 2;
}

.trace-subsidy-support-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trace-subsidy-support-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 2px solid rgba(8, 152, 220, .35);
  border-radius: 8px;
  background: #fff;
  color: #123d91;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  box-shadow: 0 10px 22px rgba(0, 77, 155, .07);
}

.trace-subsidy-support-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffd500;
  box-shadow: 0 0 0 5px rgba(255, 213, 0, .22);
  transform: translateY(-50%);
}

.trace-subsidy-support-note {
  margin: 0;
  padding: 0 48px 36px;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.trace-yellow-cta {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: 62px;
  padding: 20px 100px;
  color: #333;
  background: #ffd500;
  border-radius: 60px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.trace-yellow-cta::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #333;
  transform: translateY(-50%);
}

.trace-yellow-cta::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
}

.trace-yellow-cta:hover {
  color: #333;
  background: #ffc000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
  transform: translateY(-1px);
}

.trace-flow {
  padding: 120px 0;
  background:
    linear-gradient(45deg, rgba(18, 75, 219, .04) 25%, transparent 25%) 0 0 / 22px 22px,
    #f7f8fa;
}

.trace-flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 0;
  list-style: none;
}

.trace-flow-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 10px;
  background: #124bdb;
  transform: translateY(-50%);
}

.trace-flow-list li {
  position: relative;
  z-index: 1;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 14px;
  text-align: center;
  background: #fff;
  border: 1px solid #d8e1f2;
}

.trace-flow-icon {
  width: 62px;
  height: 62px;
  display: block;
  margin: 0 auto 8px;
  object-fit: contain;
}

.trace-flow-list span {
  color: #124bdb;
  font-family: Roboto, "Arial Black", Arial, sans-serif;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.trace-flow-list b {
  display: block;
  margin-top: 10px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.trace-sample-page {
  padding: 120px 0;
  background:
    linear-gradient(45deg, rgba(18, 75, 219, .04) 25%, transparent 25%) 0 0 / 22px 22px,
    #f7f8fa;
}

.trace-sample-page h2 {
  margin-bottom: 18px;
  text-align: center;
}

.trace-sample-page-lead {
  width: min(760px, 100%);
  margin: 0 auto 52px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.9;
}

.trace-sample-page-card {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(360px, .95fr);
  align-items: stretch;
  width: min(1080px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #d4e4ff;
  border-left: 8px solid #124bdb;
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 75, 219, .13);
}

.trace-sample-page-preview {
  position: relative;
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(18, 75, 219, .86), rgba(9, 157, 219, .76)),
    linear-gradient(45deg, rgba(255, 255, 255, .14) 25%, transparent 25%) 0 0 / 28px 28px;
}

.trace-sample-page-preview::before,
.trace-sample-page-preview::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 32px rgba(0, 37, 120, .18);
}

.trace-sample-page-preview::before {
  left: 11%;
  top: 16%;
  width: 58%;
  height: 64%;
}

.trace-sample-page-preview::after {
  right: 10%;
  bottom: 14%;
  width: 34%;
  height: 44%;
}

.trace-sample-page-preview span {
  position: absolute;
  left: 44px;
  bottom: 34px;
  z-index: 1;
  color: #ffd500;
  font-family: Roboto, "Arial Black", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}

.trace-sample-page-preview.has-image {
  display: block;
  background: #0b2350;
}

.trace-sample-page-preview.has-image::before,
.trace-sample-page-preview.has-image::after {
  display: none;
}

.trace-sample-page-preview.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
}

.trace-sample-page-preview.has-image:hover img {
  transform: scale(1.03);
}

.trace-sample-page-copy {
  padding: 52px 56px;
}

.trace-sample-page-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 18px;
  color: #fff;
  background: #124bdb;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.trace-sample-page-copy h3 {
  margin-top: 24px;
  font-size: clamp(26px, 2.7vw, 38px);
  font-weight: 900;
  line-height: 1.45;
}

.trace-sample-page-copy p {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.trace-sample-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  margin-top: 30px;
  color: #333;
  background: #ffd500;
  border-radius: 999px;
  font-weight: 900;
}

.trace-sample-page-link.is-disabled {
  color: #55606f;
  background: #e8edf5;
  pointer-events: none;
}

.trace-faq {
  padding: 120px 0;
  background: #fff;
}

.trace-faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  border-top: 2px solid #124bdb;
}

.trace-faq details {
  border-bottom: 1px solid #d7e0f1;
}

.trace-faq summary {
  position: relative;
  padding: 24px 58px 24px 18px;
  cursor: pointer;
  color: #333;
  font-size: 20px;
  font-weight: 800;
  list-style: none;
}

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

.trace-faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: #124bdb;
  font-size: 28px;
  font-weight: 900;
  transform: translateY(-50%);
}

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

.trace-faq details p {
  padding: 0 18px 26px;
  color: #4c5a70;
  font-weight: 600;
}

.trace-final {
  position: relative;
  padding: 110px 20px 120px;
  overflow: hidden;
  color: #333;
  text-align: center;
  background: #fff;
}

.trace-final::before {
  display: none;
}

.trace-final-inner {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.trace-final .trace-en {
  color: #1c7eea;
  background: linear-gradient(90deg, #124bdb, #1db4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trace-final h2 {
  margin-top: 14px;
  color: #333;
  font-size: clamp(30px, 3vw, 42px);
}

.trace-final .trace-contact-lead {
  width: min(620px, 100%);
  margin: 42px auto 70px !important;
  color: #333;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.9;
  text-align: center;
}

.trace-final .trace-contact-lead span {
  display: block;
  width: 100%;
  text-align: center;
}

.trace-contact-form {
  width: min(1040px, 100%);
  margin: 0 auto;
  color: #333;
  text-align: left;
}

.trace-form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.trace-form-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-top: 1px solid #e5e5e5;
}

.trace-form-row:last-of-type {
  border-bottom: 1px solid #e5e5e5;
}

.trace-form-label {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  font-weight: 900;
}

.trace-form-label b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 30px;
  color: #fff;
  background: #df442a;
  font-size: 14px;
  font-weight: 900;
}

.trace-form-field {
  min-width: 0;
}

.trace-form-pink {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  background: #f8cbd1;
}

.trace-form-field label,
.trace-form-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1.7;
}

.trace-contact-form input[type="checkbox"],
.trace-contact-form input[type="radio"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: #124bdb;
}

.trace-contact-form input[type="text"],
.trace-contact-form input[type="email"],
.trace-contact-form input[type="tel"],
.trace-contact-form input[type="url"],
.trace-contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  color: #333;
  border: 1px solid #b6b6b6;
  background: #fff;
  border-radius: 2px;
  font: inherit;
  font-weight: 700;
}

.trace-form-row:has([required]) input:not([type="checkbox"]):not([type="radio"]):required,
.trace-contact-form textarea:required {
  background: #f8cbd1;
}

.trace-contact-form textarea {
  min-height: 220px;
  resize: vertical;
}

.trace-form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  min-height: 48px;
}

.trace-form-url-checks {
  min-height: auto;
  margin-bottom: 10px;
}

.trace-form-privacy {
  margin: 32px 0 0;
  padding: 22px 28px;
  border: 1px solid #d4d4d4;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.trace-form-privacy a {
  color: #124bdb;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trace-form-agree {
  justify-content: center;
  margin: 28px 0 0;
  padding: 22px 16px;
  background: #f8f8f8;
  text-align: center;
  font-weight: 800;
}

.trace-form-submit {
  display: grid;
  place-items: center;
  width: min(240px, 100%);
  min-height: 60px;
  margin: 24px auto 0;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: #124bdb;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.trace-form-submit:hover {
  background: #0d3fb9;
}

.trace-form-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.trace-contact-thanks {
  width: min(720px, 100%);
  margin: 44px auto 0;
  padding: 56px 36px;
  border: 2px solid #124bdb;
  background: #f7fbff;
  text-align: center;
}

.trace-contact-thanks h3 {
  color: #124bdb;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.45;
}

.trace-contact-thanks p {
  margin-top: 16px;
  color: #333;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.8;
}

.trace-footer {
  padding: 48px 0;
  color: #fff;
  background: #124bdb;
}

.trace-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trace-footer .trace-logo {
  color: #fff;
}

.trace-footer .trace-logo-mark::before,
.trace-footer .trace-logo-mark::after {
  background: #fff;
}

.trace-footer p {
  font-weight: 800;
}

.trace-footer-content {
  display: grid;
  gap: 18px;
  justify-items: end;
  text-align: right;
}

.trace-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.trace-footer-nav a {
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.trace-footer-nav a:hover {
  color: #ffd500;
}

.trace-subpage-main {
  color: #333;
  background: #f4f8ff;
}

.trace-subpage-hero {
  padding: 86px 0 78px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 75, 219, .94), rgba(9, 157, 219, .86)),
    linear-gradient(60deg, rgba(255, 255, 255, .08) 0 24%, transparent 24% 100%) 0 0 / 90px 90px;
}

.trace-subpage-hero-inner {
  width: min(1060px, 92%);
  margin: 0 auto;
}

.trace-subpage-kicker {
  color: #ffd500;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
}

.trace-subpage-title {
  margin-top: 14px !important;
  color: #fff;
  font-size: clamp(36px, 4.8vw, 58px) !important;
  font-weight: 900 !important;
  line-height: 1.32 !important;
}

.trace-subpage-lead {
  max-width: 780px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.9;
}

.trace-subpage-body {
  padding: 78px 0 100px;
}

.trace-legal-card {
  width: min(1060px, 92%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px);
  background: #fff;
  box-shadow: 0 18px 46px rgba(18, 75, 219, .11);
}

.trace-legal-card + .trace-legal-card {
  margin-top: 34px;
}

.trace-legal-card h2 {
  margin: 0 0 28px !important;
  padding-left: 18px;
  border-left: 6px solid #124bdb;
  color: #333;
  font-size: clamp(24px, 3vw, 34px) !important;
  line-height: 1.45 !important;
  text-align: left !important;
}

.trace-legal-card h3 {
  margin: 34px 0 14px;
  color: #124bdb;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.5;
}

.trace-legal-card p,
.trace-legal-card li,
.trace-legal-table dd {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}

.trace-legal-note {
  margin-top: 22px;
  padding: 18px 20px;
  color: #334;
  background: #eef5ff;
  border-left: 5px solid #124bdb;
  font-size: 14px !important;
}

.trace-legal-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

.trace-legal-table {
  display: grid;
  border-top: 1px solid #ccd8ea;
  border-left: 1px solid #ccd8ea;
}

.trace-legal-table div {
  display: grid;
  grid-template-columns: minmax(190px, .38fr) 1fr;
  border-right: 1px solid #ccd8ea;
  border-bottom: 1px solid #ccd8ea;
}

.trace-legal-table dt {
  padding: 18px 20px;
  color: #124bdb;
  background: #f2f7ff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.7;
}

.trace-legal-table dd {
  margin: 0;
  padding: 18px 22px;
}

.trace-subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trace-subpage-button {
  display: inline-grid;
  place-items: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #124bdb;
  color: #fff;
  font-weight: 900;
}

.trace-subpage-button.is-yellow {
  color: #333;
  background: #ffd500;
}

.trace-subpage-button:hover {
  opacity: .85;
}

@media only screen and (max-width: 1199px) {
  .trace-header {
    gap: 22px;
  }

  .trace-nav {
    gap: 18px;
  }

  .trace-logo {
    width: 276px;
    min-width: 276px;
  }

  .trace-logo-img-horizontal {
    width: 252px;
    max-height: 58px;
  }

  .trace-hero-cards {
    width: min(940px, 88%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .trace-hero-cards article {
    width: auto;
    min-width: 0;
    gap: 16px;
    padding: 22px 18px;
  }

  .trace-card-icon-img {
    flex-basis: 62px;
    width: 62px;
    height: 62px;
  }

  .trace-page .trace-hero-cards h2 {
    font-size: 21px;
    white-space: normal;
  }

  .trace-hero-cards p {
    font-size: 14px;
  }

  .trace-about-text {
    margin-left: 20px;
  }

  .trace-service-grid {
    gap: 58px 34px;
  }

  .trace-flow-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .trace-flow-list::before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .trace-page section h2 {
    font-size: clamp(34px, 4.4vw, 46px);
  }

  .trace-hero {
    min-height: 760px;
  }

  .trace-hero-copy {
    top: 20%;
    width: min(920px, 86%);
  }

  .trace-hero-kicker {
    font-size: clamp(19px, 2.25vw, 25px);
  }

  .trace-hero h1 {
    font-size: clamp(48px, 6.1vw, 70px);
  }

  .trace-hero-subline span {
    font-size: clamp(20px, 2.6vw, 27px);
  }

  .trace-hero-lead {
    font-size: clamp(18px, 2.25vw, 24px);
  }

  .trace-about {
    padding: 92px 0;
  }

  .trace-about-inner {
    width: min(1080px, 92%);
    gap: 42px;
  }

  .trace-page .trace-about-text h2 {
    font-size: clamp(30px, 4.1vw, 40px);
  }

  .trace-about-text p:last-child {
    font-size: 16px;
  }

  .trace-problem,
  .trace-service,
  .trace-plan,
  .trace-sample-page,
  .trace-faq {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .trace-problem {
    padding-bottom: 145px;
  }

  .trace-problem-box {
    width: min(900px, 100%);
    gap: 28px;
    padding: 48px 38px;
  }

  .trace-problem-box article {
    min-height: 116px;
    padding: 24px 22px;
    font-size: 19px;
  }

  .trace-solution {
    padding: 140px 0 92px;
  }

  .trace-solution-list {
    margin-top: 52px;
  }

  .trace-solution-body {
    min-height: 250px;
    padding: 28px 22px 30px;
  }

  .trace-solution-list h3 {
    font-size: 20px;
  }

  .trace-solution-list p {
    font-size: 14px;
  }

  .trace-service-grid {
    width: min(980px, 100%);
    gap: 54px 34px;
  }

  .trace-service-grid article {
    min-height: 500px;
  }

  .trace-service-text {
    min-height: 290px;
    padding: 62px 30px 34px;
  }

  .trace-service-text h3 {
    font-size: 27px;
  }

  .trace-service-lead {
    font-size: 19px;
  }

  .trace-entry-plan,
  .trace-plan-notes {
    width: min(900px, 100%);
  }

  .trace-entry-body {
    padding: 38px 20px 26px;
  }

  .trace-entry-price-new strong {
    font-size: clamp(50px, 6vw, 62px);
  }

  .trace-entry-features article {
    padding-inline: 22px;
  }

  .trace-maintenance-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trace-sample-page-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  }
}

@media only screen and (max-width: 992px) {
  body.trace-menu-open {
    overflow: hidden;
  }

  .trace-header-cta {
    min-width: 150px;
    padding-inline: 22px;
  }

  .trace-nav {
    display: none;
  }

  .trace-menu {
    margin-left: auto;
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    gap: 0;
    padding: 18px;
    border: 0;
    background: #124bdb;
    cursor: pointer;
  }

  .trace-menu span {
    grid-area: 1 / 1;
    width: 30px;
    height: 3px;
    display: block;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
  }

  .trace-menu span:nth-child(1) {
    transform: translateY(-9px);
  }

  .trace-menu span:nth-child(3) {
    transform: translateY(9px);
  }

  body.trace-menu-open .trace-menu span:nth-child(1) {
    transform: rotate(45deg);
  }

  body.trace-menu-open .trace-menu span:nth-child(2) {
    opacity: 0;
  }

  body.trace-menu-open .trace-menu span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .trace-mobile-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 90px;
    z-index: 49;
    display: grid;
    gap: 0;
    padding: 12px 18px 20px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(2, 40, 136, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .trace-mobile-panel:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .trace-mobile-panel a {
    display: block;
    padding: 17px 4px;
    border-bottom: 1px solid #d8e4f4;
    color: #333;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
  }

  .trace-mobile-panel .trace-mobile-cta {
    display: grid;
    place-items: center;
    min-height: 48px;
    margin-top: 14px;
    padding: 12px 18px;
    color: #fff !important;
    background: #db4827;
    border-bottom: 0;
    border-radius: 60px;
    text-align: center;
  }

  .trace-about-inner,
  .trace-advantage-inner {
    display: block;
  }

  .trace-about-text,
  .trace-about-image,
  .trace-advantage-panel,
  .trace-advantage-copy {
    width: 100%;
  }

  .trace-about-text {
    margin-left: 0;
    margin-bottom: 40px;
  }

  .trace-about-image {
    margin-right: 0;
  }

  .trace-service-grid,
  .trace-solution-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trace-solution-list article:nth-child(2) {
    border-right: none;
  }

  .trace-solution-list article:nth-child(n + 3) {
    border-top: 1px solid #ccc;
  }

  .trace-entry-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .trace-header {
    height: 90px;
    gap: 18px;
    padding-left: 20px;
  }

  .trace-logo {
    width: 270px;
    min-width: 270px;
  }

  .trace-logo-img-horizontal {
    width: 248px;
  }

  .trace-hero {
    height: auto;
    min-height: calc(100vh - 90px);
    padding: 130px 0 86px;
  }

  .trace-hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(760px, 84%);
    margin: 0 auto;
    transform: none;
  }

  .trace-hero-copy::before {
    width: 110%;
    height: calc(100% + 72px);
  }

  .trace-hero-cards {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(760px, 82%);
    margin: 74px auto 0;
    transform: none;
  }

  .trace-hero-cards article {
    min-height: 118px;
    display: block;
    padding: 20px 18px;
    text-align: left;
  }

  .trace-card-icon-img {
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
  }

  .trace-page .trace-hero-cards h2 {
    font-size: 20px;
  }

  .trace-hero-cards p {
    font-size: 13px;
    line-height: 1.55;
  }

  .trace-solution-list {
    width: min(760px, 100%);
  }

  .trace-service-grid {
    width: min(760px, 100%);
  }

  .trace-entry-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .trace-maintenance-box {
    width: min(760px, 100%);
  }

  .trace-contact-form {
    width: min(760px, 100%);
    margin-inline: auto;
  }
}

@media only screen and (max-width: 767px) {
  body.trace-page {
    font-size: 15px;
    letter-spacing: .025em;
  }

  .trace-page section {
    scroll-margin-top: 65px;
  }

  .trace-inner {
    width: min(390px, 92%);
  }

  .trace-header {
    height: 65px;
    padding: 0 0 0 12px;
  }

  .trace-logo {
    width: auto;
    min-width: 0;
    flex: 1;
    height: 65px;
  }

  .trace-logo-img-horizontal {
    width: 188px;
    max-height: 44px;
  }

  .trace-header-cta {
    display: none;
  }

  .trace-menu {
    width: 65px;
    height: 65px;
  }

  .trace-mobile-panel {
    top: 65px;
  }

  .trace-hero {
    height: auto;
    min-height: calc(100vh - 65px);
    padding: 70px 0 64px;
  }

  .trace-hero-photo {
    background-position: 58% center;
  }

  .trace-hero::before {
    clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
  }

  .trace-hero-poly-main {
    inset: 0 -50% 10% 20%;
    opacity: .82;
  }

  .trace-hero-poly-sub {
    left: -36%;
    bottom: -8%;
    width: 76%;
    height: 34%;
  }

  .trace-hero-pattern {
    width: 64%;
    height: 34%;
    opacity: .38;
  }

  .trace-hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(360px, 90%);
    margin: 0 auto;
    transform: none;
  }

  .trace-hero-copy::before {
    top: 52%;
    width: 112%;
    height: calc(100% + 44px);
    transform: translate(-50%, -50%) skewX(-7deg);
    background: linear-gradient(135deg, rgba(0, 55, 178, .76), rgba(0, 139, 232, .52));
    clip-path: polygon(3% 0, 100% 0, 94% 100%, 0 100%);
  }

  .trace-hero-kicker {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 8px 10px 9px;
    border-left-width: 5px;
    border-right-width: 5px;
    font-size: clamp(13px, 3.7vw, 15px);
    line-height: 1.55;
    letter-spacing: .03em;
  }

  .trace-hero h1 {
    font-size: clamp(32px, 9vw, 41px);
    line-height: 1.34;
    letter-spacing: .025em;
    white-space: normal;
  }

  .trace-h1-line:nth-child(2) {
    font-size: clamp(27px, 7.7vw, 32px);
    letter-spacing: .01em;
  }

  .trace-hero-subline {
    max-width: 330px;
    margin-top: 24px;
    padding-bottom: 10px;
  }

  .trace-hero-subline span {
    font-size: clamp(16px, 4.6vw, 18px);
    line-height: 1.55;
  }

  .trace-hero-lead {
    width: min(330px, 100%);
    margin: 18px auto 0;
    font-size: clamp(15px, 4.2vw, 17px);
    line-height: 1.85;
  }

  .trace-hero-cards {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(360px, 92%);
    margin: 40px auto 0;
    transform: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .trace-hero-cards article {
    width: 100%;
    min-height: 96px;
    display: block;
    padding: 16px 12px 15px;
    text-align: left;
  }

  .trace-hero-cards article:nth-child(3) {
    grid-column: 1 / 3;
    width: min(220px, 62%);
    margin: 0 auto;
  }

  .trace-card-icon-img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }

  .trace-page .trace-hero-cards h2 {
    font-size: 14px;
    letter-spacing: .02em;
  }

  .trace-hero-cards p {
    font-size: 11px;
    line-height: 1.45;
  }

  .trace-en {
    font-size: 32px;
  }

  .trace-page section h2 {
    font-size: clamp(24px, 6.6vw, 28px);
    line-height: 1.6;
    letter-spacing: .025em;
  }

  .trace-page .trace-about-text h2 {
    font-size: clamp(24px, 6.4vw, 27px);
    line-height: 1.6;
    letter-spacing: .018em;
  }

  .trace-about,
  .trace-problem,
  .trace-service,
  .trace-plan,
  .trace-sample-page,
  .trace-faq {
    padding: 58px 0;
  }

  .trace-about-image {
    width: 100%;
    margin-right: 0;
  }

  .trace-about-image img {
    min-height: 240px;
  }

  .trace-problem {
    padding-bottom: 110px;
  }

  .trace-problem h2,
  .trace-solution h2,
  .trace-service h2,
  .trace-plan h2,
  .trace-flow h2,
  .trace-faq h2 {
    margin-bottom: 38px;
  }

  .trace-problem-box {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }

  .trace-problem-box::before {
    bottom: -25px;
    border-width: 25px 40px 0 40px;
  }

  .trace-problem-box::after {
    bottom: -110px;
    height: 85px;
    width: 2px;
  }

  .trace-problem-box article {
    min-height: 110px;
    gap: 14px;
    padding: 22px 18px;
    font-size: 18px;
  }

  .trace-problem-icon {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }

  .trace-solution {
    padding: 110px 0 58px;
  }

  .trace-solution-list,
  .trace-service-grid {
    grid-template-columns: 1fr;
  }

  .trace-solution-list article {
    min-height: 0;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid #ccc;
  }

  .trace-solution-list article:last-child {
    border-bottom: 0;
  }

  .trace-solution-list article::after {
    display: none;
  }

  .trace-solution-photo {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .trace-solution-body {
    min-height: 230px;
    padding: 26px 22px 30px;
  }

  .trace-solution-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 8px;
  }

  .trace-advantage {
    background-attachment: scroll;
  }

  .trace-advantage-inner {
    min-height: auto;
    padding: 58px 0;
  }

  .trace-advantage-panel {
    min-height: 220px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .trace-advantage-panel span {
    min-height: 118px;
    grid-template-rows: 62px auto;
    gap: 10px;
    padding: 20px 16px;
    font-size: 16px;
  }

  .trace-advantage-panel img {
    width: 62px;
    height: 62px;
  }

  .trace-advantage-copy {
    padding: 34px 0 0;
  }

  .trace-advantage-copy p:last-child {
    font-size: 16px;
  }

  .trace-service-grid {
    gap: 46px;
  }

  .trace-service-photo {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .trace-service-text {
    width: 92%;
    min-height: auto;
    margin-top: -42px;
    padding: 54px 22px 28px;
  }

  .trace-service-icon {
    top: -30px;
    width: 60px;
    height: 60px;
    padding: 6px;
  }

  .trace-service-text h3 {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .trace-service-subtitle {
    gap: 12px;
    margin-bottom: 18px;
    font-size: 12px;
  }

  .trace-service-subtitle::before,
  .trace-service-subtitle::after {
    width: 34px;
  }

  .trace-service-lead {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.65;
  }

  .trace-service-text p:not(.trace-service-subtitle):not(.trace-service-lead) {
    font-size: 13px;
    line-height: 1.85;
  }

  .trace-entry-plan {
    margin-top: 34px;
    border-width: 2px;
  }

  .trace-basic-plan {
    margin-top: 42px;
  }

  .trace-otegoro-plan {
    margin-top: 42px;
  }

  .trace-entry-head {
    padding: 18px 18px;
    font-size: 21px;
  }

  .trace-entry-body {
    padding: 28px 14px 18px;
  }

  .trace-entry-lead {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .trace-entry-price {
    margin-bottom: 36px;
    padding: 30px 0 28px;
  }

  .trace-page .trace-entry-price-label {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .trace-page .trace-entry-price-old {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .trace-entry-price-old span::after {
    height: 3px;
  }

  .trace-entry-price-old small {
    font-size: 12px;
  }

  .trace-entry-price-new strong {
    display: block;
    margin: 0 0 7px;
    font-size: 39px;
  }

  .trace-entry-price-new span {
    font-size: 14px;
  }

  .trace-entry-features {
    grid-template-columns: 1fr;
  }

  .trace-entry-features article {
    min-height: auto;
    padding: 28px 20px 24px;
  }

  .trace-entry-sticker {
    left: 18px;
    top: 18px;
    width: 70px;
    height: 70px;
    padding: 0 8px;
    font-size: 9px;
    line-height: 1.15;
  }

  .trace-entry-sticker::before {
    inset: 6px;
  }

  .trace-entry-sticker-pages span {
    font-size: 8px;
  }

  .trace-entry-sticker-pages strong {
    margin-top: 1px;
    font-size: 27px;
  }

  .trace-entry-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 14px;
  }

  .trace-entry-features h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .trace-entry-features p {
    font-size: 13px;
  }

  .trace-plan-notes {
    width: 100%;
    margin-top: 28px;
    padding: 0 4px;
    font-size: 12px;
    line-height: 1.75;
  }

  .trace-plan-notes p + p {
    margin-top: 6px;
  }

  .trace-maintenance {
    padding: 58px 0 64px;
  }

  .trace-maintenance h2 {
    font-size: 28px;
    line-height: 1.45;
  }

  .trace-maintenance-en {
    margin-top: 6px;
    font-size: 13px;
  }

  .trace-maintenance-rule {
    margin: 20px auto 34px;
  }

  .trace-maintenance-price {
    padding-bottom: 42px;
    font-size: 22px;
    line-height: 1.8;
  }

  .trace-maintenance-price strong {
    display: block;
    margin: 2px 0 0;
    font-size: 44px;
  }

  .trace-maintenance-price span {
    font-size: 17px;
  }

  .trace-maintenance-box {
    border-radius: 6px;
  }

  .trace-maintenance-box h3 {
    padding: 18px 16px;
    font-size: 20px;
  }

  .trace-maintenance-list {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 16px 22px;
  }

  .trace-maintenance-list article {
    min-height: 150px;
    padding: 22px 16px 20px;
  }

  .trace-maintenance-list img {
    width: 96px;
    height: 96px;
  }

  .trace-maintenance-list p {
    margin-top: 14px;
    font-size: 15px;
  }

  .trace-maintenance-plus {
    margin-top: 64px;
  }

  .trace-maintenance-option-label {
    margin-bottom: 14px;
    padding: 8px 18px 9px;
    border-width: 2px;
    font-size: 14px;
    letter-spacing: .04em;
  }

  .trace-maintenance-plus .trace-maintenance-price {
    padding-bottom: 42px;
  }

  .trace-maintenance-note {
    width: 100%;
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 1.75;
  }

  .trace-sales-design-note {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.85;
  }

  .trace-subsidy-estimate {
    margin: 0 16px 22px;
    padding: 22px 14px 18px;
    border-radius: 6px;
  }

  .trace-subsidy-estimate .trace-sales-design-note {
    width: 100%;
    margin: 0 auto 20px;
    font-size: 12px;
  }

  .trace-subsidy-estimate h4 {
    font-size: 20px;
    line-height: 1.45;
  }

  .trace-subsidy-estimate-lead {
    margin: 8px 0 16px;
    font-size: 12px;
  }

  .trace-subsidy-estimate-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trace-subsidy-estimate-grid article {
    padding: 18px 14px 16px;
  }

  .trace-subsidy-estimate-grid h5 {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .trace-subsidy-estimate-grid dl div {
    grid-template-columns: 82px 1fr;
    padding: 8px 0;
  }

  .trace-subsidy-estimate-grid dt {
    font-size: 12px;
  }

  .trace-subsidy-estimate-grid dd {
    font-size: 15px;
  }

  .trace-subsidy-estimate-grid dl div:last-child dd {
    font-size: 18px;
  }

  .trace-subsidy-support {
    margin-top: 58px;
    border-width: 2px;
    border-radius: 8px;
  }

  .trace-subsidy-support-head {
    padding: 26px 18px 24px;
  }

  .trace-subsidy-support-en {
    font-size: 12px;
  }

  .trace-subsidy-support h2 {
    font-size: 28px;
  }

  .trace-subsidy-support-price {
    margin-top: 16px;
    font-size: 20px;
  }

  .trace-subsidy-support-price strong {
    display: block;
    margin: 0 0 4px;
    font-size: 44px;
  }

  .trace-subsidy-support-price span {
    font-size: 16px;
  }

  .trace-subsidy-support-body {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 20px 18px;
  }

  .trace-subsidy-support-copy h3 {
    font-size: 20px;
    line-height: 1.7;
  }

  .trace-subsidy-support-copy p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.9;
  }

  .trace-subsidy-support-list li {
    padding: 14px 14px 14px 42px;
    font-size: 14px;
  }

  .trace-subsidy-support-list li::before {
    left: 16px;
    width: 12px;
    height: 12px;
  }

  .trace-subsidy-support-note {
    padding: 0 20px 26px;
    font-size: 12px;
  }

  .trace-yellow-cta {
    width: 100%;
    margin-top: 26px;
    min-height: 58px;
    padding: 18px 56px 18px 28px;
    white-space: normal;
  }

  .trace-sample-page {
    padding: 66px 0;
  }

  .trace-sample-page-lead {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.8;
  }

  .trace-sample-page-card {
    grid-template-columns: 1fr;
    border-left-width: 6px;
  }

  .trace-sample-page-preview {
    min-height: 210px;
  }

  .trace-sample-page-preview span {
    left: 24px;
    bottom: 22px;
    font-size: 14px;
  }

  .trace-sample-page-copy {
    padding: 30px 22px 32px;
  }

  .trace-sample-page-status {
    min-height: 30px;
    font-size: 12px;
  }

  .trace-sample-page-copy h3 {
    margin-top: 18px;
    font-size: 23px;
  }

  .trace-sample-page-copy p {
    margin-top: 14px;
    font-size: 14px;
  }

  .trace-sample-page-link {
    width: 100%;
    min-height: 52px;
    margin-top: 24px;
  }

  .trace-flow-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trace-flow-list::before {
    display: block;
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 10px;
    height: 100%;
    transform: translateX(-50%);
  }

  .trace-flow-list li {
    min-height: 122px;
  }

  .trace-flow-icon {
    width: 54px;
    height: 54px;
  }

  .trace-faq summary {
    padding: 20px 48px 20px 12px;
    font-size: 17px;
  }

  .trace-final {
    padding: 70px 16px 78px;
  }

  .trace-final h2 {
    font-size: 28px;
  }

  .trace-final .trace-contact-lead {
    width: 100%;
    margin: 26px auto 42px !important;
    font-size: 13px;
    line-height: 1.9;
    text-align: center;
  }

  .trace-final .trace-contact-lead span {
    display: block;
    text-align: center;
  }

  .trace-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
  }

  .trace-form-label {
    align-items: center;
    padding-top: 0;
  }

  .trace-form-label b {
    min-width: 42px;
    min-height: 26px;
    font-size: 12px;
  }

  .trace-form-pink {
    gap: 12px;
    padding: 15px 14px;
  }

  .trace-form-field label,
  .trace-form-agree {
    font-size: 13px;
  }

  .trace-contact-form input[type="text"],
  .trace-contact-form input[type="email"],
  .trace-contact-form input[type="tel"],
  .trace-contact-form input[type="url"],
  .trace-contact-form textarea {
    min-height: 46px;
    padding: 11px 12px;
    font-size: 14px;
  }

  .trace-contact-form textarea {
    min-height: 170px;
  }

  .trace-form-inline {
    gap: 12px 18px;
  }

  .trace-form-url-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
  }

  .trace-form-privacy {
    padding: 16px 14px;
    font-size: 12px;
  }

  .trace-form-agree {
    align-items: flex-start;
    padding: 18px 14px;
    text-align: left;
  }

  .trace-form-submit {
    width: min(220px, 100%);
    min-height: 56px;
  }

  .trace-contact-thanks {
    margin-top: 34px;
    padding: 38px 20px;
  }

  .trace-contact-thanks h3 {
    font-size: 25px;
  }

  .trace-contact-thanks p {
    font-size: 15px;
  }

  .trace-footer-inner {
    display: block;
  }

  .trace-footer .trace-logo {
    width: 100%;
    height: auto;
    justify-content: center;
  }

  .trace-footer .trace-logo-img-reverse {
    width: 220px;
    max-height: 58px;
  }

  .trace-footer p {
    margin-top: 22px;
  }

  .trace-footer-content {
    margin-top: 24px;
    justify-items: center;
    text-align: center;
  }

  .trace-footer-nav {
    justify-content: center;
    gap: 10px 16px;
  }

  .trace-footer-nav a {
    font-size: 12px;
  }

  .trace-subpage-hero {
    padding: 58px 0 54px;
  }

  .trace-subpage-lead {
    font-size: 15px;
  }

  .trace-subpage-body {
    padding: 48px 0 68px;
  }

  .trace-legal-card {
    width: min(390px, 92%);
    padding: 26px 18px;
  }

  .trace-legal-card h2 {
    margin-bottom: 22px !important;
    padding-left: 14px;
    border-left-width: 5px;
  }

  .trace-legal-card h3 {
    margin-top: 28px;
    font-size: 18px;
  }

  .trace-legal-card p,
  .trace-legal-card li,
  .trace-legal-table dd {
    font-size: 14px;
    line-height: 1.85;
  }

  .trace-legal-table div {
    grid-template-columns: 1fr;
  }

  .trace-legal-table dt,
  .trace-legal-table dd {
    padding: 14px 15px;
  }

  .trace-subpage-actions {
    display: grid;
  }

  .trace-subpage-button {
    width: 100%;
  }
}
