/* ================================================
   SWITCH drone-plan LP
   ================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, dl {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ------ Header / Menu ------ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 4.4%;
  background: transparent;
  pointer-events: none;
  transition: background 0.2s;
}

.site-header.is-fixed {
  position: fixed;
  background: #fff;
}

@media screen and (min-width: 961px) {
  .site-header.is-fixed {
    left: 42%;
    width: 58%;
  }
}

.site-header > * {
  pointer-events: auto;
}

.site-logo {
  display: block;
  line-height: 0;
}

.site-logo img {
  height: 22px;
  width: auto;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  margin-right: 3.6%;
}

.menu-btn__icon {
  position: relative;
  display: block;
  width: 38px;
  height: 4px;
  transition: opacity 0.25s ease;
}

.menu-btn__icon span {
  display: block;
  width: 100%;
  height: 100%;
  background: #231815;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.menu-btn__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.menu-btn.is-open .menu-btn__label {
  opacity: 0;
}

.menu-btn.is-open .menu-btn__icon {
  opacity: 0;
}

/* ------ Nav overlay ------ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay[hidden] {
  display: none;
}

.nav-overlay__bg {
  position: absolute;
  inset: 0;
  background: #fff;
}

.nav-overlay__brand {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Mulish", "Muli", sans-serif;
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #231815;
  pointer-events: none;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.5s ease 0.1s;
}

.nav-overlay.is-open .nav-overlay__brand {
  opacity: 1;
}

.nav-panel {
  position: relative;
  width: min(380px, 86vw);
  background: #231815;
  color: #f5f0e8;
  padding: 80px 40px 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.45s ease 0.05s, transform 0.45s ease 0.05s;
}

.nav-overlay.is-open .nav-panel {
  opacity: 1;
  transform: translateX(0);
}

.nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  line-height: 1;
  color: #fff;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-list a {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #f5f0e8;
  transition: opacity 0.2s;
}

.nav-list a:hover {
  opacity: 0.7;
}

/* ------ Layout ------ */
.lp {
  display: flex;
  min-height: 100vh;
}

.lp-visual {
  width: 42%;
  position: relative;
  flex-shrink: 0;
}

.lp-visual__inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.lp-visual__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-visual__note {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  margin: 0;
  padding: 5px 8px;
  color: #fff;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  background: rgba(0, 0, 0, 0.48);
}

.lp-content {
  width: 58%;
  background: #fff;
  position: relative;
}

.section {
  padding: 100px 7% 90px;
}

.section-inner {
  max-width: 720px;
}

.section-sp-visual {
  display: none;
  position: relative;
}

.section-header {
  margin-bottom: 28px;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.section-title__bar {
  display: block;
  width: clamp(72px, 16vw, 148px);
  height: 5px;
  background: #231815;
  flex-shrink: 0;
}

.section-title__text {
  flex-shrink: 0;
}

.section-title:has(.section-title__bar) {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-title-ja {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #666;
}

.section-lead {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 32px;
  color: #333;
}

.section-note {
  font-size: 12px;
  color: #777;
  margin-top: 16px;
}

/* ------ Buttons ------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.icon-arrow {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  vertical-align: middle;
}

.icon-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-65%, -50%) rotate(-45deg);
}

.icon-arrow--lg::after {
  width: 8px;
  height: 8px;
  border-right-width: 2px;
  border-bottom-width: 2px;
}

/* スライダー次へ */
.icon-arrow--slider {
  width: 12px;
  height: 12px;
}

.icon-arrow--slider::after {
  width: 8px;
  height: 8px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  transform: translate(-60%, -50%) rotate(-45deg);
}

.icon-arrow--prev::after {
  transform: translate(-40%, -50%) rotate(135deg);
}

.btn__arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-primary {
  background: #231815;
  color: #fff;
}

.btn-outline {
  border: 1px solid #231815;
  background: #fff;
  color: #231815;
}

.btn-cta {
  width: 100%;
  max-width: 520px;
  min-height: 88px;
  background: #231815;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  letter-spacing: 0.2em;
}

.link-text {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #333;
  margin-top: 16px;
}

/* ------ Hero ------ */
.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  border-bottom: none;
  padding: 0;
}

.section-hero .section-inner {
  max-width: none;
  width: 100%;
}

.hero-inner {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 4.4% 48px;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

.hero-title {
  font-family: "Mulish", "Muli", sans-serif;
  font-size: clamp(88px, 13vw, 148px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.92;
}

.hero-catch {
  margin-top: 20px;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #231815;
}

.hero-sub {
  margin-top: 6px;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #231815;
}

.btn-hero-cta {
  position: absolute;
  right: 8%;
  bottom: 48px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  width: auto;
  max-width: 270px;
  padding: 11px 42px 11px 26px;
  background-color: #231815;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-hero-cta.is-fixed {
  position: fixed;
  z-index: 150;
}

@media screen and (min-width: 961px) {
  .btn-hero-cta.is-fixed {
    right: calc(58vw * 0.08);
  }
}

.btn-hero-cta:hover {
  opacity: 0.88;
  color: #fff;
}

/* ------ USER ------ */
.section--user {
  --user-bar-w: clamp(52px, 11%, 60px);
  padding: 88px 11% 80px 0;
  overflow: hidden;
}

.section--user .section-inner {
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
}

.section--user .section-header {
  margin-bottom: 0;
}

.section--user .section-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.section--user .section-title__text {
  font-family: "Mulish", "Muli", sans-serif;
  font-size: clamp(41px, 5.5vw, 40px);
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  margin: 0;
}

.section--user .section-title__bar {
  display: block;
  width: var(--user-bar-w);
  height: 8px;
  background: #231815;
  flex-shrink: 0;
}

.section--user .section-body {
  padding-left: calc(var(--user-bar-w) + 14px);
  max-width: 690px;
  box-sizing: border-box;
}

.section--user .section-title-ja {
  margin-top: 0;
  font-size: clamp(19px, 2.4vw, 31px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #231815;
  line-height: 1.45;
}

.section--user .section-lead {
  margin-top: 28px;
  margin-bottom: 52px;
  font-size: 18px;
  line-height: 2.65;
  color: #231815;
}

.section--user .user-grid {
  gap: 44px 18px;
  max-width: 100%;
}

.user-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 20px;
  width: 100%;
  max-width: 100%;
}

.user-grid li {
  min-width: 0;
  text-align: left;
}

.user-grid img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 10px;
}

.user-grid p {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #231815;
}

/* ------ RESULTS ------ */
.section--results {
  --results-bar-w: clamp(52px, 11%, 60px);
  --results-slide-w: 690px;
  --results-slide-gap: 16px;
  padding: 88px 11% 80px 0;
  overflow: hidden;
}

.section--results .section-inner {
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
}

.section--results .section-header {
  margin-bottom: 0;
}

.section--results .section-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.section--results .section-title__text {
  font-family: "Mulish", "Muli", sans-serif;
  font-size: clamp(41px, 5.5vw, 40px);
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  margin: 0;
}

.section--results .section-title__bar {
  display: block;
  width: var(--results-bar-w);
  height: 8px;
  background: #231815;
  flex-shrink: 0;
}

.section--results .section-body {
  padding-left: calc(var(--results-bar-w) + 14px);
  max-width: 690px;
  box-sizing: border-box;
  overflow: visible;
}

.section--results .section-title-ja {
  margin-top: 0;
  font-size: clamp(19px, 2.4vw, 31px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #231815;
  line-height: 1.45;
}

.results-slider-wrap {
  position: relative;
  margin-top: 32px;
  margin-bottom: 24px;
  padding-bottom: 0;
}

.results-slider {
  position: relative;
}

.results-slider .slick-list {
  overflow: visible;
}

.results-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.results-slide {
  width: min(var(--results-slide-w), 100%);
  margin-right: var(--results-slide-gap);
}

.results-slide__media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
}

.results-slide__media iframe,
.results-slide__media .results-slide__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.results-slide__media .results-slide__thumb {
  object-fit: cover;
}

.results-slide__date {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #231815;
}

.results-slide__client {
  margin-top: 4px;
  padding-right: 0;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #231815;
}

.results-slider__nav {
  position: absolute;
  left: calc(min(var(--results-slide-w), 100%) + 4px);
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  z-index: 2;
}

.results-slider__arrow {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #231815;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.results-slider__arrow:hover {
  background-color: rgba(26, 26, 26, 0.08);
}

.results-slider__arrow:focus-visible {
  outline: 2px solid #231815;
  outline-offset: 2px;
}

.btn-results-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 270px;
  padding: 11px 26px;
  background-color: #231815;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-sizing: border-box;
  white-space: nowrap;
}

.btn-results-more:hover {
  opacity: 0.88;
  color: #fff;
}

/* ------ SERVICE ------ */
.section--service {
  --service-bar-w: clamp(52px, 11%, 60px);
  padding: 88px 11% 80px 0;
  overflow: hidden;
}

.section--service .section-inner {
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
}

.section--service .section-header {
  margin-bottom: 0;
}

.section--service .section-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.section--service .section-title__text {
  font-family: "Mulish", "Muli", sans-serif;
  font-size: clamp(41px, 5.5vw, 40px);
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  margin: 0;
}

.section--service .section-title__bar {
  display: block;
  width: var(--service-bar-w);
  height: 8px;
  background: #231815;
  flex-shrink: 0;
}

.section--service .section-body {
  padding-left: calc(var(--service-bar-w) + 14px);
  max-width: 690px;
  box-sizing: border-box;
}

.section--service .section-title-ja {
  margin-top: 0;
  font-size: clamp(19px, 2.4vw, 31px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #231815;
  line-height: 1.45;
}

.service-list > .section-title-ja + .service-block {
  margin-top: 36px;
}

.service-block {
  margin-bottom: 56px;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block__title {
  font-size: clamp(18px, 2.3vw, 22px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 9px;
  color: #231815;
}

.service-block__text,
.service-block--stack > .service-block__text {
  font-size: 16px;
  line-height: 2;
  color: #231815;
}

.service-block--stack .service-block__text {
  margin-bottom: 20px;
}

.service-block__img img {
  width: 100%;
  height: auto;
  display: block;
}

.service-block--row .service-block__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  align-items: start;
}

.service-block--row .service-block__text .service-block__title {
  margin-bottom: 9px;
}

.service-block--row .service-block__text p {
  font-size: 16px;
  line-height: 2;
  color: #231815;
}

/* ------ AREA ------ */
.section--area {
  --area-bar-w: clamp(52px, 11%, 60px);
  padding: 88px 11% 80px 0;
  overflow: hidden;
}

.section--area .section-inner {
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
}

.section--area .section-header {
  margin-bottom: 0;
}

.section--area .section-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.section--area .section-title__text {
  font-family: "Mulish", "Muli", sans-serif;
  font-size: clamp(41px, 5.5vw, 40px);
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  margin: 0;
}

.section--area .section-title__bar {
  display: block;
  width: var(--area-bar-w);
  height: 8px;
  background: #231815;
  flex-shrink: 0;
}

.section--area .section-body {
  padding-left: calc(var(--area-bar-w) + 14px);
  max-width: 690px;
  box-sizing: border-box;
}

.section--area .section-title-ja {
  margin-top: 0;
  font-size: clamp(19px, 2.4vw, 31px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #231815;
  line-height: 1.45;
}

.section--area .section-lead {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 2;
  color: #231815;
}

.section--area .area-cities {
  display: block;
  width: 100%;
  margin-top: 32px;
  padding: 21px 24px;
  border: 4px solid #231815;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
  color: #231815;
  box-sizing: border-box;
}

.section--area .area-cities__bold {
  font-weight: bold;
  font-size: 22px;
}

.section--area .section-note {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.75;
  color: #666;
}

.section--area .link-text {
  display: inline-block;
  margin-top: 20px;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #231815;
}

/* ------ FLOW ------ */
.section--flow {
  --flow-bar-w: clamp(52px, 11%, 60px);
  --flow-sep-w: 24px;
  --flow-step-w: 220px;
  padding: 88px 11% 80px 0;
  overflow: hidden;
}

.section--flow .section-inner {
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
}

.section--flow .section-header {
  margin-bottom: 0;
}

.section--flow .section-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.section--flow .section-title__text {
  font-family: "Mulish", "Muli", sans-serif;
  font-size: clamp(41px, 5.5vw, 40px);
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  margin: 0;
}

.section--flow .section-title__bar {
  display: block;
  width: var(--flow-bar-w);
  height: 8px;
  background: #231815;
  flex-shrink: 0;
}

.section--flow .section-body {
  padding-left: calc(var(--flow-bar-w) + 14px);
  max-width: 690px;
  box-sizing: border-box;
}

.section--flow .section-title-ja {
  margin-top: 0;
  font-size: clamp(19px, 2.4vw, 31px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #231815;
  line-height: 1.45;
}

.section--flow .section-lead {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 2;
  color: #231815;
}

.section--flow .flow-wrap {
  position: relative;
  margin-top: 40px;
  margin-right: -11%;
  padding-left: calc(var(--flow-bar-w) + -16px);
  padding-right: 11%;
  padding-bottom: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: #231815 transparent;
  cursor: grab;
}

.section--flow .flow-wrap.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.section--flow .flow-wrap::-webkit-scrollbar {
  height: 6px;
}

.section--flow .flow-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.section--flow .flow-wrap::-webkit-scrollbar-thumb {
  background: #231815;
  border-radius: 3px;
}

.flow-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: max-content;
  min-width: 100%;
  padding-bottom: 12px;
}

.flow-step {
  flex: 0 0 var(--flow-step-w);
  width: var(--flow-step-w);
  min-width: var(--flow-step-w);
  margin-left: 40px;
}

.flow-step__head {
  max-width: none;
  width: fit-content;
  background-color: #fff;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.flow-step__head img {
  display: block;
  width: var(--flow-head-w, 80px);
  height: auto;
  max-width: none;
}

/* STEP番号画像・下アイコンを1〜7で個別調整 */
.flow-step--01 {
  --flow-head-w: 72px;
  --flow-icon-h: 55px;
  --flow-icon-w: 65px;
}

.flow-step--02 {
  --flow-head-w: 80px;
  --flow-icon-h: 55px;
  --flow-icon-w: 65px;
}

.flow-step--03 {
  --flow-head-w: 77px;
  --flow-icon-h: 55px;
  --flow-icon-w: 65px;
}

.flow-step--04 {
  --flow-head-w: 78px;
  --flow-icon-h: 55px;
  --flow-icon-w: 65px;
}

.flow-step--05 {
  --flow-head-w: 77px;
  --flow-icon-h: 55px;
  --flow-icon-w: 65px;
}

.flow-step--06 {
  --flow-head-w: 79px;
  --flow-icon-h: 55px;
  --flow-icon-w: 65px;
}

.flow-step--07 {
  --flow-head-w: 76px;
  --flow-icon-h: 55px;
  --flow-icon-w: 65px;
}

.flow-step__label {
  display: block;
  font-family: "Mulish", "Muli", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  color: #231815;
}

.flow-step__num {
  display: block;
  margin-top: 6px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(48px, 6.5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #231815;
}

.flow-step__content {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 28px 10px 0 0;
  margin-top: -18px;
  border-top: 3px solid #231815;
  border-right: 3px solid #231815;
}


.flow-step__title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: #231815;
  margin-bottom: 10px;
}

.flow-step__text {
  font-size: 15px;
  line-height: 1.85;
  color: #231815;
}

.flow-step__icon {
  margin-top: auto;
  padding-top: 28px;
  line-height: 0;
}

.flow-step__icon img {
  display: block;
  height: var(--flow-icon-h, 55px);
  width: var(--flow-icon-w, 65px);
  max-width: 100%;
  object-fit: contain;
}


.flow-step__sep {
  flex: 0 0 var(--flow-sep-w);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;

  color: #231815;
}

.icon-arrow--flow {
  width: 8px;
  height: 8px;
}

.icon-arrow--flow::after {
  width: 14px;
  height: 14px;
  left: 25px;
  border-right-width: 2px;
  border-bottom-width: 2px;
}

/* ------ PRICING ------ */
.section--pricing {
  --pricing-bar-w: clamp(52px, 11%, 60px);
  padding: 88px 11% 80px 0;
  overflow: hidden;
}

.section--pricing .section-inner {
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
}

.section--pricing .section-header {
  margin-bottom: 0;
}

.section--pricing .section-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.section--pricing .section-title__text {
  font-family: "Mulish", "Muli", sans-serif;
  font-size: clamp(41px, 5.5vw, 40px);
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  margin: 0;
}

.section--pricing .section-title__bar {
  display: block;
  width: var(--pricing-bar-w);
  height: 8px;
  background: #231815;
  flex-shrink: 0;
}

.section--pricing .section-body {
  padding-left: calc(var(--pricing-bar-w) + 14px);
  max-width: 690px;
  box-sizing: border-box;
}

.section--pricing .section-title-ja {
  margin-top: 0;
  font-size: clamp(19px, 2.4vw, 31px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #231815;
  line-height: 1.45;
}

.section--pricing .section-lead {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 2;
  color: #231815;
}

.pricing-tabs {
  display: flex;
  gap: 45px;
  margin-top: 45px;
  margin-bottom: 0;
}

.pricing-tab {
  flex: 1;
  font-size: 17px;
  padding: 8px 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: #231815;
  background: #fff;
  border: 1px solid #231815;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pricing-tab.is-active {
  background: #231815;
  color: #fff;
  border-color: #231815;
}

.pricing-tab:hover:not(.is-active) {
  background: #f5f5f5;
}

.pricing-panel {
  margin-top: 28px;
}

.pricing-panel[hidden] {
  display: none;
}

.pricing-price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  margin-bottom: 0;
  padding: 14px 0 16px 80px;
  border-top: 2px solid #231815;
  border-bottom: 2px solid #231815;
}

.pricing-price__label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #231815;
  line-height: 1;
}

.pricing-price__amount {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #231815;
  text-align: center;
}

.pricing-price__num {
  font-size: clamp(48px, 7vw, 64px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin-right: 5px;
  vertical-align: -5px;
}

.pricing-specs {
  margin: 0;
}

.pricing-specs > div {
  display: grid;
  grid-template-columns: 26% 1fr;
  gap: 11px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 2px solid #231815;
  font-size: 19px;
  line-height: 1.6;
}

.pricing-specs dt {
  color: #231815;
  font-weight: 400;
}

.pricing-specs dd {
  margin: 0;
  font-weight: 500;
  text-align: center;
  color: #231815;
  padding-right: 20px;
}

.pricing-specs dd.pricing-specs__check {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  color: #231815;
}

.pricing-footer {
  margin-top: 24px;
}

.section--pricing .section-note {
  min-width: 200px;
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  color: #231815;
}

.btn-pricing-compare {
  padding: 10px 20px;
  margin-top: 20px;
  background: #231815;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-left: auto;
  display: block;
  margin-right: 0;
}

.btn-pricing-compare:hover {
  opacity: 0.88;
}

.pricing-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.pricing-link-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 45px;
  padding: 12px 36px 12px 20px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #231815;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #231815;
  cursor: pointer;
  transition: background 0.2s;
  box-sizing: border-box;
}

.pricing-link-btn:hover {
  background: #f8f8f8;
}

.pricing-link-btn .btn__arrow {
  right: 18px;
}

/* ------ COMPANY ------ */
.section--company {
  --company-bar-w: clamp(52px, 11%, 60px);
  padding: 88px 11% 80px 0;
  overflow: hidden;
}

.section--company .section-inner {
  width: 90%;
  max-width: 90%;
  box-sizing: border-box;
}

.section--company .section-header {
  margin-bottom: 0;
}

.section--company .section-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.section--company .section-title__text {
  font-family: "Mulish", "Muli", sans-serif;
  font-size: clamp(41px, 5.5vw, 40px);
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  margin: 0;
}

.section--company .section-title__bar {
  display: block;
  width: var(--company-bar-w);
  height: 8px;
  background: #231815;
  flex-shrink: 0;
}

.section--company .section-body {
  padding-left: calc(var(--company-bar-w) + 14px);
  max-width: 690px;
  box-sizing: border-box;
}

.section--company .section-title-ja {
  margin-top: 0;
  font-size: clamp(19px, 2.4vw, 31px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #231815;
  line-height: 1.45;
}

.company-list {
  margin-top: 28px;
}

.company-list > div {
  padding: 11px 0px 0px;
  font-size: 17px;
  line-height: 2;
  color: #231815;
}

.company-list dt {
  display: inline;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.company-list dt::after {
  content: "／";
  font-weight: 500;
}

.company-list dd {
  display: inline;
  margin: 0;
  font-weight: 400;
}

.company-list__item--multi dd {
  display: inline;
}

.company-list__item--multi dd br {
  display: block;
  margin: 0;
  line-height: 2;
}

.company-list__indent {
  display: inline-block;
  padding-left: 4.5em;
}

.company-list__indent2 {
  display: inline-block;
  padding-left: 5.4em;
}

.company-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  min-width: 290px;
  min-height: 52px;
  padding: 12px 42px 12px 24px;
  border: 1px solid #231815;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #231815;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s;
}

.company-more-btn:hover {
  background: #f8f8f8;
}

.company-more-btn .btn__arrow {
  right: 20px;
}

/* ------ CTA / Footer ------ */
.lp-cta {
}

.lp-cta-bar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 405px;
  min-height: 56px;
  padding: 25px 42px 25px 155px;
  background-color: #231815;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-sizing: border-box;
}

.lp-cta-bar:hover {
  opacity: 0.88;
  color: #fff;
}

.lp-cta-bar .btn__arrow {
  right: 22px;
}

.lp-cta-bar .icon-arrow::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}

.site-footer {
  --company-bar-w: clamp(52px, 11%, 60px);
  padding: 36px 11% 30px 0;
  padding-left: calc(var(--company-bar-w) + 14px);
  max-width: calc(690px + var(--company-bar-w) + 14px);
}

.site-footer a {
  display: inline-block;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 12px;
  line-height: 1.85;
  color: #231815;
  font-weight: 500;
  margin-bottom: 50px;
}

.footer-copy {
  font-size: 13px;
  color: #231815;
  letter-spacing: 0.04em;
  font-weight: bold;
}

/* ------ Modal ------ */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: block;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.modal[hidden] {
  display: none;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: #fff;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  overflow: auto;
  background: #fff;
  color: #231815;
  padding: 72px max(24px, calc((100% - 1000px) / 2)) 64px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.modal.is-open .modal__dialog {
  opacity: 1;
  transform: translateY(0);
}

.modal__dialog--wide,
.modal__dialog--cancel {
  width: 100%;
  padding: 72px max(24px, calc((100% - 1000px) / 2)) 64px;
}

@media (prefers-reduced-motion: reduce) {
  .modal,
  .modal__dialog {
    transition: none;
  }

  .modal__dialog {
    transform: none;
  }
}

.modal__close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 2;
  font-size: 32px;
  line-height: 1;
  font-weight: 300;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.modal__close:hover {
  color: #231815;
}

.modal__title {
  font-family: "Mulish", "Muli", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin: 0 0 8px;
  color: #231815;
}

.modal__sub {
  font-size: clamp(15px, 2vw, 23px);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 28px;
  color: #231815;
}

.modal__lead {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.9;
  color: #231815;
}

.modal-block + .modal-block {
  margin-top: 28px;
}

.modal-block__title {
  font-size: 20px;
  letter-spacing: 0.04em;
  margin: 0px 0px 8px -8px;
  color: #231815;
  font-weight: 700;
}

.modal__body p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #231815;
}

.modal-notes {
  margin-top: 28px;
  list-style: none;
}

.modal-notes li {
  font-size: 12px;
  line-height: 1.9;
  color: #231815;
}

.cancel-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 0;
  font-size: 14px;
}

.cancel-table th,
.cancel-table td {
  padding: 10px 16px 10px 0;
  border-bottom: 1px solid #231815;
  text-align: left;
  vertical-align: top;
  font-weight: 500;
  line-height: 1.7;
  color: #231815;
}

.cancel-table th {
  width: 29%;
  padding-right: 20px;
}

.cancel-table td {
  width: 71%;
}

.cancel-table__note {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.75;
  color: #231815;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  align-items: start;
}

.compare-col__title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #231815;
  text-align: center;
}

/* 料金・明細はフロントの .pricing-price / .pricing-specs と同じ見た目を使う */

.compare-note {
  margin: 36px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  color: #231815;
}

body.is-locked {
  overflow: hidden;
}

/* ------ Responsive ------ */
@media screen and (max-width: 960px) {
  .lp {
    display: block;
  }

  .lp-visual {
    display: none;
  }

  .lp-content {
    width: 100%;
    overflow-x: hidden;
  }

  .section-sp-visual {
    display: block;
    /* セクション左右余白(5.4%)と揃える。-8%だと右側に隙・はみ出しが出る */
    margin: 0 -5.4% 32px;
  }

  .section-sp-visual img,
  .section-sp-visual video {
    width: 100%;
    height: 42vw;
    min-height: 200px;
    max-height: 320px;
    object-fit: cover;
    display: block;
  }

  .section-hero {
    min-height: auto;
    display: block;
    padding-top: 0;
  }

  .section-hero .section-sp-visual {
    /* Heroは左右paddingなし → 負マージン不要。ヘッダー下から開始 */
    margin: 0;
    padding-top: 72px;
  }

  .site-header {
    padding: 18px 5%;
  }

  .site-header.is-fixed {
    left: 0;
    right: 0;
    width: 100%;
  }

  .menu-btn {
    margin-right: 0;
  }

  .hero-inner {
    min-height: auto;
    padding: 0 5% 28px;
  }

  .hero-copy {
    justify-content: flex-start;
    padding: 38px 0 20px;
    max-width: none;
  }

  .hero-title {
    font-size: clamp(64px, 18vw, 88px);
  }

  .hero-catch {
    margin-top: 16px;
    font-size: 13px;
  }

  .hero-sub {
    font-size: clamp(18px, 5vw, 24px);
  }

  .btn-hero-cta,
  .btn-hero-cta.is-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    width: 100%;
    max-width: none;
    min-height: 52px;
    justify-content: center;
    padding: 16px 48px 16px 24px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    font-size: 13px;
    border-radius: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .btn-hero-cta.is-away {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }

  .btn-hero-cta .btn__arrow {
    right: 20px;
  }

  /* Common section titles (SP) */
  .section--user .section-title-row,
  .section--results .section-title-row,
  .section--service .section-title-row,
  .section--area .section-title-row,
  .section--flow .section-title-row,
  .section--pricing .section-title-row,
  .section--company .section-title-row {
    margin-left: -5.4%;
    gap: 10px;
  }

  .section--user .section-title__text,
  .section--results .section-title__text,
  .section--service .section-title__text,
  .section--area .section-title__text,
  .section--flow .section-title__text,
  .section--pricing .section-title__text,
  .section--company .section-title__text {
    font-size: clamp(28px, 7.7vw, 38px);
    letter-spacing: 0.04em;
    flex-shrink: 1;
    min-width: 0;
  }

  .section--user .section-title-ja,
  .section--results .section-title-ja,
  .section--service .section-title-ja,
  .section--area .section-title-ja,
  .section--flow .section-title-ja,
  .section--pricing .section-title-ja,
  .section--company .section-title-ja {
    font-size: clamp(18px, 4.5vw, 22px);
  }

  .section--user {
    --user-bar-w: clamp(36px, 12vw, 56px);
    padding: 0 5.4% 56px;
  }

  .section--user .section-inner {
    width: 100%;
    max-width: 100%;
  }

  .section--user .section-body {
    padding-left: 0;
    max-width: none;
  }

  .section--user .section-title__bar {
    width: var(--user-bar-w);
    height: 7px;
  }

  .section--user .section-title-row {
    margin-bottom: 14px;
  }

  .section--user .section-lead {
    margin-top: 18px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 2;
  }

  .section--user .section-lead br {
    display: none;
  }

  .section--user .user-grid {
    gap: 28px 14px;
  }

  .user-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }

  .user-grid img {
    border-radius: 12px;
  }

  .user-grid p {
    font-size: 12px;
  }

  .section--results {
    --results-bar-w: clamp(36px, 12vw, 56px);
    --results-slide-w: 100%;
    --results-slide-gap: 0px;
    padding: 0 5.4% 56px;
  }

  .section--results .section-inner {
    width: 100%;
    max-width: 100%;
  }

  .section--results .section-body {
    padding-left: 0;
    max-width: none;
  }

  .results-slider-wrap {
    margin-top: 24px;
    margin-bottom: 20px;
    padding-bottom: 0;
  }

  .results-slider .slick-list {
    overflow: hidden;
  }

  .results-slide {
    width: 100%;
    margin-right: 0;
  }

  .results-slide__client {
    padding-right: 72px;
  }

  .results-slider__nav {
    left: auto;
    right: 0;
    bottom: 0;
    gap: 0;
  }

  .results-slider__arrow {
    width: 36px;
    height: 36px;
  }

  .btn-results-more {
    max-width: 270px;
    width: 100%;
    padding: 11px 26px;
  }

  .section--service {
    --service-bar-w: clamp(36px, 12vw, 56px);
    padding: 0 5.4% 56px;
  }

  .section--service .section-inner {
    width: 100%;
    max-width: 100%;
  }

  .section--service .section-body {
    padding-left: 0;
    max-width: none;
  }

  .section--service .section-title__bar {
    width: var(--service-bar-w);
    height: 7px;
  }

  .section--service .section-title-row {
    gap: 10px;
  }

  .service-list > .section-title-ja + .service-block {
    margin-top: 24px;
  }

  .service-block {
    margin-bottom: 40px;
  }

  /* SP: 画像上 → タイトル・テキスト下 */
  .service-block--stack {
    display: flex;
    flex-direction: column;
  }

  .service-block--stack .service-block__img {
    order: -1;
    margin-bottom: 16px;
  }

  .service-block--stack .service-block__text {
    margin-bottom: 0;
  }

  .service-block--row .service-block__body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-block--row .service-block__img {
    order: -1;
  }

  .service-block__title {
    font-size: 16px;
  }

  .service-block__text,
  .service-block--stack > .service-block__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .service-block--row .service-block__text p {
    font-size: 14px;
  }

  .section--area {
    --area-bar-w: clamp(36px, 9vw, 56px);
    padding: 0 5.4% 56px;
  }

  .section--area .section-inner {
    width: 100%;
    max-width: 100%;
  }

  .section--area .section-body {
    padding-left: 0;
    max-width: none;
  }

  .section--area .section-title__bar {
    width: var(--area-bar-w);
    height: 4px;
  }

  .section--area .section-title-row {
    gap: 10px;
    margin-bottom: 14px;
  }

  .section--area .section-lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 2;
  }

  .section--area .area-cities {
    margin-top: 22px;
    padding: 13px 14px;
    font-size: 15px;
    line-height: 1.55;
    border: 2px solid #231815;
  }

  .section--area .area-cities__bold {
    font-weight: bold;
    font-size: 18px;
  }

  .section--area .section-note {
    margin-top: 12px;
    font-size: 11px;
  }

  .section--area .link-text {
    margin-top: 14px;
    font-size: 12px;
  }

  .section--pricing {
    --pricing-bar-w: clamp(36px, 12vw, 56px);
    padding: 0 5.4% 56px;
  }

  .section--pricing .section-inner {
    width: 100%;
    max-width: 100%;
  }

  .section--pricing .section-body {
    padding-left: 0;
    max-width: none;
  }

  .section--pricing .section-title__bar {
    width: var(--pricing-bar-w);
    height: 7px;
  }

  .section--pricing .section-title-row {
    gap: 10px;
    margin-bottom: 14px;
  }

  .section--pricing .section-lead {
    margin-top: 18px;
  }

  .pricing-tabs {
    margin-top: 24px;
    gap: 8px;
  }

  .pricing-tab {
    padding: 12px 8px;
    font-size: 12px;
  }

  .pricing-panel {
    margin-top: 18px;
  }

  .pricing-price {
    min-height: 60px;
    padding: 10px 0 12px 48px;
  }

  .pricing-price__label {
    font-size: 13px;
  }

  .pricing-price__amount {
    font-size: 19px;
  }

  .pricing-price__num {
    font-size: clamp(32px, 8.8vw, 52px);
    vertical-align: -3px;
  }

  .pricing-specs > div {
    grid-template-columns: minmax(96px, 34%) 1fr;
    gap: 10px;
    padding: 12px 0;
    font-size: 13px;
  }

  .pricing-specs dd {
    text-align: center;
    padding-right: 27px;
  }

  .pricing-specs dd.pricing-specs__check {
    font-size: 20px;
  }

  .pricing-footer {
    flex-direction: column;
    align-items: stretch;
    margin-top: 18px;
  }

  .btn-pricing-compare {
    align-self: flex-end;
    margin-top: 16px;
  }

  .pricing-links {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .pricing-link-btn {
    min-height: 48px;
    font-size: 13px;
  }

  .section--flow {
    --flow-bar-w: clamp(36px, 12vw, 56px);
    --flow-step-w: 168px;
    padding: 0 5.4% 56px;
  }

  .section--flow .section-inner {
    width: 100%;
    max-width: 100%;
  }

  .section--flow .section-body {
    padding-left: 0;
    max-width: none;
  }

  .section--flow .section-title__bar {
    width: var(--flow-bar-w);
    height: 7px;
  }

  .section--flow .section-title-row {
    margin-bottom: 14px;
  }

  .section--flow .section-lead {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.9;
  }

  .section--flow .flow-wrap {
    margin-top: 28px;
    margin-right: -5.4%;
    padding-left: 0;
    padding-right: 5.4%;
    padding-bottom: 36px;
  }

  .flow-step {
    margin-left: 20px;
  }

  .flow-step:first-child {
    margin-left: 0;
  }

  .flow-step__content {
    min-height: 176px;
    padding-right: 12px;
  }

  .flow-step__title {
    font-size: 15px;
  }

  .flow-step__text {
    font-size: 13px;
    line-height: 1.7;
  }

  .flow-step__title br,
  .flow-step__text br {
    display: none;
  }

  .flow-step__head img {
    width: calc(var(--flow-head-w, 80px) * 0.8);
  }

  .flow-step__icon img {
    height: calc(var(--flow-icon-h, 55px) * 0.7);
    width: calc(var(--flow-icon-w, 65px) * 0.7);
  }

  .flow-step__sep {
    flex-basis: 16px;
    margin-top: 56px;
  }

  .icon-arrow--flow::after {
    width: 11px;
    height: 11px;
    left: 12px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .compare-col__title {
    font-size: 17px;
  }

  .nav-overlay__brand {
    display: none;
  }

  .section--company {
    --company-bar-w: clamp(36px, 9vw, 56px);
    padding: 0 5.4% 56px;
  }

  .section--company .section-inner {
    width: 100%;
    max-width: 100%;
  }

  .section--company .section-body {
    padding-left: 0;
    max-width: none;
  }

  .section--company .section-title__bar {
    width: var(--company-bar-w);
    height: 4px;
  }

  .section--company .section-title-row {
    gap: 10px;
    margin-bottom: 14px;
  }

  .company-list {
    margin-top: 18px;
  }

  .company-list > div {
    display: grid;
    grid-template-columns: 5.5em 1fr;
    gap: 10px 12px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid #d8d8d8;
    font-size: 13px;
    line-height: 1.85;
  }

  .company-list > div:first-child {
    border-top: 1px solid #d8d8d8;
  }

  .company-list dt {
    display: block;
    font-weight: 700;
  }

  .company-list dt::after {
    content: none;
  }

  .company-list dd {
    display: block;
    margin: 0;
  }

  .company-list__item--multi dt {
    display: block;
  }

  .company-list__item--multi dd {
    display: block;
    margin-top: 0;
  }

  .company-list__indent,
  .company-list__indent2 {
    display: block;
    padding-left: 0;
  }

  .company-list__indent + .company-list__indent {
    margin-top: 10px;
  }

  .company-more-btn {
    margin-top: 24px;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .lp-cta {
    padding: 0 5.4% 24px;
  }

  .lp-cta-bar {
    max-width: none;
    min-height: 52px;
    padding: 16px 42px 16px 20px;
    font-size: 14px;
    justify-content: center;
  }

  .site-footer {
    padding: 28px 5.4% 44px;
    max-width: none;
  }

  .footer-logo {
    height: 56px;
  }

  .footer-address {
    font-size: 12px;
    margin-bottom: 32px;
  }

  .modal__title {
    font-size: clamp(24px, 6vw, 32px);
    word-break: break-word;
  }

  .modal__dialog,
  .modal__dialog--wide,
  .modal__dialog--cancel {
    padding: 64px max(20px, calc((100% - 1000px) / 2)) 40px;
  }

  .cancel-table th,
  .cancel-table td {
    display: block;
    width: 100%;
    padding: 4px 0;
  }

  .cancel-table th {
    padding-top: 14px;
    font-weight: 700;
  }

  .cancel-table td {
    padding-bottom: 14px;
  }

  .cancel-table tr {
    border-bottom: 1px solid #d8d8d8;
  }

  .cancel-table th,
  .cancel-table td {
    border-bottom: none;
  }
}

@media screen and (max-width: 560px) {
  .section-sp-visual {
    margin-left: -5.4%;
    margin-right: -5.4%;
  }

  .section-hero .section-sp-visual {
    margin-left: 0;
    margin-right: 0;
    padding-top: 68px;
  }

  .section-sp-visual img,
  .section-sp-visual video {
    height: 65vw;
    min-height: 180px;
    max-height: 260px;
  }

  .hero-title {
    font-size: clamp(56px, 17vw, 72px);
  }

  .user-grid {
    gap: 20px 12px;
  }

  .pricing-tabs {
    gap: 6px;
  }

  .pricing-tab {
    padding: 11px 6px;
    font-size: 11px;
  }

  .pricing-price {
    padding-left: 67px;
  }

  .pricing-specs > div {
    grid-template-columns: minmax(93px, 27%) 1fr;
    font-size: 14px;
  }

  .pricing-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn:not(.btn-hero-cta):not(.btn-results-more):not(.pricing-link-btn) {
    width: 100%;
  }

  .modal__dialog,
  .modal__dialog--wide,
  .modal__dialog--cancel {
    padding: 56px 18px 36px;
  }

  .modal__close {
    top: 14px;
    right: 14px;
    font-size: 28px;
  }

  .modal__title {
    font-size: 22px;
    padding-right: 28px;
  }

  .modal__sub {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .modal-block__title {
    font-size: 14px;
  }

  .modal__body p {
    font-size: 13px;
    line-height: 1.9;
  }
}
