:root {
  --green: #009b8e;
  --yellow: #fffd00;
  --blue: #ebf8ff;
  --paper: #fbf9f8;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft-line: #dcd9d9;
  --radius: 8px;
  --max: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin: 0; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 32px;
  left: 0;
  right: 0;
  width: min(1520px, calc(100% - 64px));
  height: 50px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: block;
  width: 246px;
  height: 50px;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand img { width: 100%; height: 100%; object-fit: contain; }
.header-button {
  min-width: 267px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 4px;
  font-weight: 700;
  font-size: 18px;
}

.section { position: relative; padding: 100px 32px; overflow: hidden; }
.container { width: min(var(--max), 100%); margin: 0 auto; }
.narrow { width: min(1300px, 100%); }
.pale { background: var(--blue); }
.section-heading {
  text-align: center;
  display: grid;
  gap: 31px;
  justify-items: center;
  margin-bottom: 64px;
}
.section-heading h2 {
  position: relative;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.34;
  font-weight: 900;
}
.section-heading h2 span { color: var(--green); }
#worry-title .worry-title-lead {
  color: inherit;
}
#worry-title .worry-title-lead-sp {
  display: none;
}
#worry-title .worry-highlight {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 .14em;
}
#worry-title .worry-highlight::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.1em;
  right: -.1em;
  bottom: .08em;
  height: .68em;
  background: #fff200;
}
.section-heading p { color: var(--muted); font-size: 18px; line-height: 1.62; font-weight: 500; }
.section-heading b { display: block; width: 80px; height: 4px; background: var(--green); }
.section-heading.compact { gap: 27px; margin-bottom: 48px; }
.section-heading.compact h2 { color: var(--green); }
.section-heading.inverse h2, .section-heading.inverse p { color: #fff; }
.section-heading.inverse b { background: #fff; }
.bubble {
  position: relative;
  color: var(--green) !important;
  background: #fff;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}
.bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 10px solid #fff;
}

.hero {
  height: 935px;
  padding: 0;
  background: #fff;
}
.blob { position: absolute; width: 702px; height: 654px; opacity: .45; }
.blob-a { top: -205px; right: -215px; }
.blob-b { left: -233px; bottom: -166px; }
.hero-copy {
  position: absolute;
  left: calc(50% - 665px);
  top: 260px;
  width: min(800px, calc(100vw - 36px));
}
.hero h1 {
  color: var(--green);
  font-size: clamp(28px, 6vw, 60px);
  line-height: 1.28;
  font-weight: 900;
  margin-bottom: 32px;
  overflow-wrap: anywhere;
}
.hero-copy p { font-size: 18px; line-height: 32px; overflow-wrap: anywhere; }
.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 26px 0 0;
}
.hero-tags li {
  color: var(--green);
  background: var(--yellow);
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
}
.hero-visual {
  position: absolute;
  top: 200px;
  left: calc(50% + 65px);
  width: 820px;
  height: auto;
}
.hero-composite {
  width: 100%;
  height: auto;
  max-width: none;
}
.hero-slideshow {
  overflow: hidden;
  aspect-ratio: 2490 / 1857;
}
.hero-slide-track {
  display: flex;
  flex-direction: column;
  height: 300%;
  transform: translateY(0);
  transition: transform .78s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.hero-slide-track.is-resetting {
  transition: none;
}
.hero-slide {
  display: block;
  width: 100%;
  height: calc(100% / 3);
  flex: 0 0 calc(100% / 3);
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide-track {
    transition: none;
  }
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  gap: 16px;
}
.column { display: grid; gap: 16px; align-content: start; }
.pill {
  width: 300px;
  justify-self: center;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  padding: 12px;
  text-align: center;
  font-weight: 700;
}
.pill.muted { color: var(--muted); background: rgba(107,114,128,.3); }
.issue-card, .solution-card {
  min-height: 160px;
  background: #fff;
  border-radius: var(--radius);
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 26px 24px;
}
.issue-card > img { width: 140px; height: 100px; object-fit: cover; border-radius: var(--radius); }
.issue-card h3, .solution-card h3 { font-size: 20px; line-height: 28px; margin-bottom: 7px; }
.issue-card h3 span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font: 700 14px/1 Poppins, sans-serif;
}
.issue-card p, .solution-card p { color: #374151; font-size: 14px; line-height: 22.75px; }
.solution-card {
  position: relative;
  border: 2px solid #008080;
  overflow: hidden;
  padding: 26px;
}
.solution-card > img:last-child {
  position: absolute;
  right: 16px;
  width: 128px;
  height: 128px;
  object-fit: contain;
  opacity: .8;
}
.solution-card div { max-width: 315px; }
.solution-card h3 { color: var(--green); font-size: 24px; line-height: 32px; }
.round-icon { width: 60px; height: 60px; object-fit: contain; z-index: 1; }
.round-icon.filled {
  border-radius: 50%;
  padding: 12px;
  background: var(--green);
}
.arrows { display: grid; align-content: center; gap: 148px; justify-items: center; }
.arrows i {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #008080;
}
.mini-cta {
  width: min(850px, 100%);
  margin: 64px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 48px;
}
.mini-cta img { width: 204px; height: 204px; object-fit: cover; }
.mini-cta h3 { color: var(--green); font-size: 30px; line-height: 42px; margin-bottom: 16px; }
.mini-cta p { font-size: 18px; line-height: 30px; }

.cases { background: #fff; }
.case-list { display: grid; gap: 32px; width: min(1216px, 100%); margin: 0 auto; }
.case-card {
  display: grid;
  grid-template-columns: 303px 1fr 303px;
  min-height: 279px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.case-overview, .case-result { padding: 24px; display: grid; align-content: space-between; justify-items: start; }
.case-overview { border-right: 1px solid #f3f4f6; }
.case-overview span { color: #fff; background: var(--green); padding: 4px 24px; font-weight: 700; font-size: 14px; }
.case-overview h3 { font-size: 20px; line-height: 27.5px; }
.case-overview-detail {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.case-overview-detail img {
  width: 75px;
  height: 75px;
  flex: 0 0 auto;
}
.case-overview p { color: #4b5563; font-size: 14px; line-height: 22.75px; }
.case-compare {
  background: #f9fafb;
  display: grid;
  place-items: center;
  padding: 0 20px;
}
.case-compare img {
  width: 100%;
  height: auto;
  max-width: 620px;
  object-fit: contain;
}
.case-result { justify-items: center; text-align: center; }
.case-result img { width: 128px; height: 128px; object-fit: contain; }
.case-result strong { background: var(--yellow); border-radius: 8px; padding: 12px; font-size: 16px; line-height: 18px; }
.pc-only-break { display: none; }
.note { color: var(--muted); text-align: center; font-size: 14px; margin-top: 32px; }

@media (min-width: 1101px) {
  .pc-only-break { display: initial; }
}

.green-cta {
  height: 767px;
  padding-top: 100px;
  background: var(--green);
  color: #fff;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}
.green-cta h2 { font-size: 64px; line-height: 86px; font-weight: 900; margin-top: 28px; }
.green-cta h2 span { color: var(--yellow); display: block; }
.green-cta > p:not(.bubble) { position: relative; z-index: 1; margin: 22px 0 32px; font-size: 18px; line-height: 29px; }
.green-cta > img {
  position: absolute;
  bottom: 0;
  left: calc(50% + 160px);
  width: 369px;
  height: 369px;
  object-fit: cover;
}
.big-cta {
  position: relative;
  width: 900px;
  height: 204px;
  border: 4px solid #fff;
  border-radius: 999px 0 0 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  color: #fff;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 3px;
  margin-right: 220px;
}
.big-cta span {
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  color: var(--green);
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 20px;
}
.big-cta b { font: 700 64px/40px Poppins, sans-serif; }
.big-cta.image-cta {
  width: min(1188px, calc(100% - 64px));
  height: auto;
  margin: -120px 0 0;
  border: 0;
  border-radius: 0;
  display: block;
  line-height: 0;
}
.big-cta.image-cta img {
  width: 100%;
  height: auto;
  max-width: none;
}

.features { background: var(--paper); text-align: center; }
.features h2 { color: var(--green); font-size: 41px; line-height: 1; margin-bottom: 50px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: min(1352px, 100%); margin: 0 auto; }
.feature-grid article { background: #fff; border: 1px solid #f3f4f6; border-radius: var(--radius); padding: 33px; }
.feature-grid img { width: 64px; height: 64px; margin: 0 auto 10px; }
.feature-grid h3 { color: var(--green); font-size: 27px; line-height: 35px; font-weight: 900; }
.feature-grid p { color: #4b5563; font-size: 14px; line-height: 22.75px; font-weight: 500; margin-top: 10px; }

.risk-box {
  color: var(--green);
  background: #e6f3f5;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}
.before-after { display: grid; grid-template-columns: 1fr 40px 1fr; gap: 16px; margin: 40px 0 56px; align-items: start; }
.before-after article > h3 { color: #fff; text-align: center; padding: 8px; border-radius: 8px 8px 0 0; background: #6b7280; font-size: 24px; }
.before-after article:last-child > h3 { background: var(--green); }
.large-search {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0 0 8px 8px;
  line-height: 0;
  overflow: hidden;
}
.large-search img {
  width: 100%;
  height: auto;
  max-width: none;
}
.before-after aside { margin-top: 16px; line-height: 0; }
.before-after aside img { width: 100%; height: auto; max-width: none; border-radius: 8px; }
.ba-arrow { color: var(--green); font-size: 40px; align-self: center; text-align: center; }
.platform-title { text-align: center; color: var(--green); font-size: 24px; margin-bottom: 28px; }
.warning {
  width: min(1300px, 100%);
  margin: 0 auto;
  background: #fff9e6;
  border: 1px solid #fc0;
  border-radius: var(--radius);
  padding: 24px 32px;
  color: #4b5563;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.warning-with-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: left;
}
.warning-with-icon img {
  width: 20px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.review-support { background: var(--paper); }
.review-support .warning { margin-top: 44px; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; align-items: stretch; }
.review-grid > aside { display: flex; flex-direction: column; height: 100%; }
.review-center { display: flex; flex-direction: column; }
.review-phone {
  height: 100%;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  overflow: hidden;
}
.review-phone-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 74px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
}
.review-phone-heading img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.review-phone-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  border-radius: 8px;
}
.review-center h3 {
  text-align: center;
  font-size: 17px;
  line-height: 24px;
  margin: 8px 0 18px;
}
.review-center article, .support-card, .platform-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.review-center article { display: flex; gap: 16px; align-items: center; padding: 15px 22px; margin-bottom: 12px; }
.review-center article > img { width: 46px; height: 46px; border: 1px solid var(--green); border-radius: 50%; padding: 10px; object-fit: contain; flex: 0 0 46px; }
.review-center strong { color: var(--green); font-size: 16px; }
.review-center p, .support-card p, .platform-card p { font-size: 14px; line-height: 21px; }
.review-example-box {
  position: relative;
  margin-top: auto;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 58px 26px 14px;
  background: #fff;
}
.review-example-box h4 {
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  min-width: 210px;
  padding: 8px 18px;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}
.review-example-box ul { margin: 0; padding: 0; display: grid; gap: 7px; list-style: none; font-size: 14px; font-weight: 700; }
.review-example-box li { display: flex; align-items: center; gap: 12px; }
.review-example-box li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  line-height: 1;
}
.review-example-box p { margin-top: 8px; color: #6b7280; font-size: 10px; line-height: 1.45; }
.support-card { position: relative; min-height: 340px; padding: 25px; overflow: hidden; }
.support-card h3 { font-size: 18px; text-align: center; margin-bottom: 24px; }
.support-card ul { padding: 0; margin: 20px 0 0; list-style: none; display: grid; gap: 14px; font-size: 14px; font-weight: 700; max-width: 250px; }
.support-card li { display: flex; align-items: center; gap: 9px; }
.support-card li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}
.support-card > img { position: absolute; right: 20px; bottom: 14px; width: 232px; height: 232px; object-fit: contain; }
.platform-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 198px;
  margin-top: auto;
  padding: 34px 28px;
  text-align: center;
  gap: 14px;
}
.platform-card h3,
.platform-card p { margin: 0; }

@media (max-width: 1300px) and (min-width: 1101px) {
  .review-grid { gap: 22px; }
  .review-center { min-height: 620px; justify-content: space-between; }
  .review-phone { padding: 22px; }
  .review-phone-heading { min-height: 72px; margin-bottom: 20px; }
  .review-center h3 { font-size: 16px; line-height: 22px; margin: 4px 0 16px; }
  .review-center article { gap: 13px; padding: 12px 18px; margin-bottom: 0; }
  .review-center article > img { width: 42px; height: 42px; padding: 9px; }
  .review-center strong { font-size: 15px; }
  .review-center p { font-size: 13px; line-height: 19px; }
  .review-example-box { margin-top: 0; padding: 52px 22px 12px; }
  .review-example-box h4 { min-width: 190px; padding: 7px 16px; font-size: 13px; }
  .review-example-box ul { gap: 6px; font-size: 13px; }
  .review-example-box li { gap: 9px; }
  .review-example-box li::before { flex-basis: 18px; width: 18px; height: 18px; font-size: 12px; }
  .review-example-box p { margin-top: 7px; font-size: 9px; }
  .support-card { min-height: 340px; }
  .support-card ul { font-size: 13px; gap: 13px; max-width: 238px; }
  .support-card > img { right: 14px; bottom: 14px; width: 224px; height: 224px; }
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.stats-grid article { min-height: 500px; background: #fff; border: 1px solid #f3f4f6; border-radius: var(--radius); padding: 46px 24px; text-align: center; display: grid; align-content: center; justify-items: center; gap: 16px; }
.stats-grid img { width: 192px; height: 192px; }
.stats-grid h3 { color: var(--green); font-size: 27px; }
.stats-grid strong { color: var(--green); font: 700 58px/1.1 Poppins, "Noto Sans JP", sans-serif; }
.stats-grid article:first-child strong { font-size: 80px; }
.stats-grid p { color: #4b5563; font-size: 14px; line-height: 22.75px; }
.privacy { text-align: center; color: var(--green); font-size: 27px; font-weight: 700; margin-top: 32px; }
.second h2 span { display: inline; }

.pricing-main { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.price { color: var(--green); text-align: center; font-size: 32px; font-weight: 700; }
.price strong { font: 700 103px/96px Poppins, sans-serif; }
.price small { font-size: 32px; font-weight: 500; }
.free { margin: 24px 0; border: 2px solid #008080; border-radius: 8px; padding: 18px; display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--green); font-size: 36px; font-weight: 700; text-decoration: none; cursor: pointer; }
.free:hover { background: #eefaf8; }
.free img { width: 32px; height: 32px; padding: 8px; background: var(--green); border-radius: 50%; flex: 0 0 auto; object-fit: contain; }
.pricing-main p:last-child { text-align: center; font-size: 18px; line-height: 28px; }
.pricing-copy-mobile { display: none; }
.pricing-main > img { height: 333px; width: 584px; object-fit: contain; }
.pricing-features { margin-top: 64px; background: #f6f3f2; border-radius: var(--radius); padding: 48px 48px 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.pricing-features article {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 16px;
  row-gap: 12px;
  align-items: center;
  border-right: 1px solid #d1d5db;
  padding-right: 17px;
}
.pricing-features article:last-child { border-right: 0; }
.pricing-features img { grid-row: 1 / 3; align-self: center; width: 52px; height: 52px; border: 2px solid var(--green); border-radius: 50%; padding: 14px; }
.pricing-features h3 { font-size: 18px; }
.pricing-features p { grid-column: 2; color: #4b5563; font-size: 14px; line-height: 22px; }
.pricing-note {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid #d8d8d8;
  color: #8a8f98;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
}

.process { background: var(--green); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.process-grid article { background: #fff; border: 1px solid #f3f4f6; border-radius: var(--radius); padding: 25px; min-height: 382px; text-align: center; display: grid; justify-items: center; align-content: start; gap: 16px; }
.process-grid span { color: var(--green); font: 600 14px/16px Poppins, sans-serif; letter-spacing: 1px; }
.process-grid span b { display: grid; place-items: center; width: 48px; height: 48px; margin: 4px auto 0; border-radius: 50%; color: #fff; background: var(--green); font-size: 24px; }
.process-grid img { width: 72px; height: 72px; }
.process-grid h3 { color: var(--green); font-size: 27px; line-height: 28px; }
.process-grid p { color: #4b5563; font-size: 14px; line-height: 22.75px; }

.faq { background: var(--paper); }
.faq-list { width: min(1100px, 100%); margin: 0 auto; border: 1px solid var(--soft-line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.faq-list details { padding: 32px 72px 32px 96px; position: relative; border-bottom: 1px solid var(--soft-line); }
.faq-list details:nth-child(even) { background: #f6f3f2; }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { list-style: none; font-size: 20px; font-weight: 700; line-height: 28px; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before, .faq-list p::before {
  position: absolute;
  left: 32px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font: 700 16px Poppins, sans-serif;
}
.faq-list summary::before { content: "Q"; top: 32px; }
.faq-list p::before { content: "A"; top: 80px; }
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 42px;
  width: 20px;
  height: 20px;
  background: url("public/assets/icons/faq-chevron.svg") center/contain no-repeat;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(180deg); }
.faq-list p { color: #374151; font-size: 16px; line-height: 26px; margin-top: 12px; }

.contact form { width: min(896px, 100%); margin: 0 auto; display: grid; gap: 24px; }
.contact label { display: grid; grid-template-columns: 280px 1fr; align-items: center; }
.contact label:has(textarea) { align-items: start; }
.contact span { font-size: 18px; font-weight: 700; }
.contact em { color: #fff; background: var(--green); border-radius: 4px; padding: 2px 8px; font-style: normal; font-size: 10px; margin-left: 10px; vertical-align: middle; }
.contact input, .contact select, .contact textarea {
  width: 100%;
  border: 1px solid #6b7280;
  border-radius: 8px;
  padding: 13px 17px;
  color: var(--ink);
  font: 400 16px "Noto Sans JP", sans-serif;
}
.contact select, .contact textarea { background: var(--paper); border-color: var(--soft-line); }
.contact textarea { height: 170px; resize: vertical; }
.contact button {
  justify-self: center;
  width: 288px;
  height: 68px;
  border: 0;
  border-radius: 98px;
  color: #fff;
  background: var(--green);
  font: 700 27px/28px "Noto Sans JP", sans-serif;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .site-header { width: calc(100% - 32px); }
  .header-button { min-width: 190px; }
  .brand { width: 200px; height: 41px; }
  .hero { min-height: 960px; height: auto; padding: 130px 24px 60px; display: grid; gap: 32px; }
  .hero-copy, .hero-visual { position: relative; inset: auto; width: 100%; max-width: 820px; margin: 0 auto; }
  .hero h1 { font-size: clamp(38px, 9vw, 60px); line-height: 1.28; }
  .comparison-grid, .before-after, .review-grid, .pricing-main, .process-grid, .stats-grid, .feature-grid { grid-template-columns: 1fr; }
  .comparison-grid,
  .column,
  .case-list,
  .case-card,
  .issue-card,
  .solution-card,
  .mini-cta,
  .case-overview,
  .case-compare,
  .case-result {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .arrows, .ba-arrow { display: none; }
  .issue-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .issue-card > img { margin: 0 auto; }
  .issue-card > div {
    display: grid;
    justify-items: center;
  }
  .solution-card,
  .mini-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .solution-card div {
    display: grid;
    justify-items: center;
  }
  .solution-card > img:last-child {
    position: static;
    margin: 0 auto;
  }
  .case-card { grid-template-columns: 1fr; }
  .case-overview {
    justify-items: center;
    text-align: center;
    border-right: 0;
  }
  .case-overview-detail {
    justify-content: center;
    text-align: left;
    max-width: 360px;
  }
  .case-overview-detail img { margin: 0; }
  .review-grid > aside { height: auto; }
  .platform-card { margin-top: 24px; }
  .green-cta { height: auto; padding-bottom: 0; }
  .green-cta h2 { font-size: clamp(40px, 8vw, 64px); line-height: 1.34; }
  .green-cta > img { position: relative; left: auto; margin-top: -70px; }
  .big-cta { width: min(900px, 100%); margin: 0; font-size: clamp(30px, 7vw, 56px); }
  .big-cta.image-cta {
    width: min(920px, 100%);
    margin-top: 28px;
  }
  .pricing-features { grid-template-columns: 1fr 1fr; }
  .pricing-features article { border-right: 0; }
}

@media (max-width: 640px) {
  .section { padding: 72px 18px; }
  .site-header { top: 18px; left: 16px; right: 16px; width: auto; height: 42px; transform: none; gap: 10px; }
  .brand { width: 132px; height: 27px; }
  .header-button { min-width: 132px; height: 40px; padding: 0 12px; font-size: 13px; white-space: nowrap; }
  .hero {
    isolation: isolate;
    overflow: hidden;
    padding-top: 110px;
    position: relative;
  }
  .hero .blob {
    pointer-events: none;
    z-index: 0;
  }
  .hero-copy { display: contents; max-width: 100%; overflow: hidden; }
  .hero h1 { font-size: 28px; line-height: 1.48; overflow-wrap: anywhere; }
  .hero-copy p { font-size: 16px; line-height: 1.8; overflow-wrap: anywhere; }
  .hero-copy p br { display: none; }
  .hero h1,
  .hero-copy > p,
  .hero-visual,
  .hero-tags {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 { order: 1; }
  .hero-copy > p { order: 2; }
  .hero-visual { order: 3; }
  .hero-tags { order: 4; display: grid; }
  .hero-tags li { font-size: 16px; padding: 10px 18px; }
  .hero-visual { max-width: 560px; }
  .section-heading h2 { font-size: 36px; }
  #worry-title .worry-title-lead-pc { display: none; }
  #worry-title .worry-title-lead-sp {
    display: inline;
    white-space: nowrap;
  }
  #worry-title .worry-highlight {
    white-space: nowrap;
  }
  .bubble { font-size: 14px !important; padding: 10px 18px; }
  .solution-card, .mini-cta { align-items: center; }
  .mini-cta { padding: 24px; }
  .big-cta { height: 140px; gap: 18px; letter-spacing: 0; border-radius: 999px; }
  .big-cta.image-cta { width: 100%; height: auto; margin-top: 24px; border-radius: 0; }
  .big-cta span { width: 94px; height: 94px; }
  .big-cta b { font-size: 44px; }
  .platform-title { font-size: 20px; line-height: 1.45; }
  .pricing-copy-desktop { display: none; }
  .pricing-copy-mobile { display: inline; }
  .free {
    gap: 10px;
    padding: 16px 12px;
    font-size: clamp(26px, 7.4vw, 30px);
    line-height: 1.2;
    white-space: nowrap;
  }
  .free img {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    padding: 7px;
  }
  .pricing-main p:last-child {
    font-size: 14px;
    line-height: 28px;
  }
  .review-example-box {
    margin-top: 30px;
  }
  .support-card {
    min-height: auto;
  }
  .support-card ul {
    max-width: none;
  }
  .support-card > img {
    position: static;
    display: block;
    width: min(180px, 72%);
    height: auto;
    margin: 18px auto 0;
  }
  .pricing-features { grid-template-columns: 1fr; padding: 28px 24px 32px; gap: 28px; }
  .pricing-note {
    margin-top: 0;
    padding-top: 22px;
    font-size: 12px;
    line-height: 20px;
  }
  .contact label { grid-template-columns: 1fr; gap: 10px; }
  .faq-list details { padding: 28px 24px 28px 72px; }
  .faq-list summary::before, .faq-list p::before { left: 18px; }
  .faq-list summary::after { right: 18px; }
}
