/* =========================================================
   Water Vision LP
========================================================= */

/* Common Reset
---------------------------------------------------------- */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* 既存テーマの余白・幅制限を解除 */
body.water-vision-lp,
body.water-vision-lp #wrapper,
body.water-vision-lp #container,
body.water-vision-lp #content,
body.water-vision-lp .container,
body.water-vision-lp .inner,
body.water-vision-lp .content,
body.water-vision-lp .main,
body.water-vision-lp main {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* LP全体を画面幅いっぱいにする */
.wv-lp {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: hidden;
  background: #ffffff;
  color: #3e3a39;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

.wv-lp *,
.wv-lp *::before,
.wv-lp *::after {
  box-sizing: border-box;
}

.wv-lp img,
.wv-lp svg {
  max-width: 100%;
}

.wv-lp img {
  height: auto;
}

.wv-lp a {
  color: inherit;
}

.wv-lp h1,
.wv-lp h2,
.wv-lp h3,
.wv-lp p {
  word-break: normal;
  overflow-wrap: break-word;
}

.wv-header,
.wv-hero,
.wv-tech-base,
.wv-problems-section,
.wv-key-benefits,
.wv-faq {
  width: 100%;
  max-width: 100%;
}


/* Header
---------------------------------------------------------- */
.wv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.wv-header__inner {
  width: 100%;
  max-width: 1400px;
  height: 64px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wv-header__logo {
  min-width: 0;
}

.wv-header__logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 220px;
}


/* Button
---------------------------------------------------------- */
.wv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.wv-button:hover {
  transform: translateY(-1px);
}

.wv-lp a.wv-button--orange,
.wv-button--orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f08300;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.wv-lp a.wv-button--orange:hover,
.wv-button--orange:hover {
  background: #d97300;
  color: #ffffff;
}

.wv-button--large {
  padding: 16px 32px;
  font-size: 18px;
  box-shadow:
    0 10px 7.5px rgba(0, 0, 0, 0.1),
    0 4px 3px rgba(0, 0, 0, 0.1);
}


/* Hero
---------------------------------------------------------- */
.wv-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 90px 32px 72px;
  background-color: #eef9f7;
  background-image: url("../img/water-vision/hero-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.wv-hero__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.wv-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.wv-hero__grid > * {
  min-width: 0;
}

.wv-hero__content {
  width: 100%;
  max-width: 684px;
  min-width: 0;
}

/* Badge */
.wv-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #007b49;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.wv-hero__badge-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.wv-hero__badge-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  width: 2px;
  height: 5px;
  background: #ffffff;
  border-radius: 999px;
  transform: translateX(-50%);
}

.wv-hero__badge-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transform-origin: left center;
  transform: rotate(25deg);
}

/* Text */
.wv-hero__title {
  margin: 0 0 32px;
  color: #3e3a39;
  font-size: clamp(42px, 3.8vw, 56px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.wv-hero__lead {
  margin-bottom: 40px;
}

.wv-hero__lead-main {
  margin-bottom: 24px;
}

.wv-hero__lead-main p {
  margin: 0 0 4px;
  color: #007b49;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.wv-hero__lead-main .wv-hero__lead-sub {
  color: #3e3a39;
  font-size: 18px;
  font-weight: 400;
}

.wv-hero__service-name {
  padding-left: 20px;
  border-left: 4px solid #007b49;
}

.wv-hero__service-name p {
  margin: 0;
  color: #3e3a39;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.wv-hero__cta p {
  margin: 0 0 16px;
  color: #3e3a39;
  font-size: 16px;
  line-height: 1.6;
}

/* Visual */
.wv-hero__visual {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.wv-hero__visual-label {
  margin: 0 0 15px;
  width: 100%;
  max-width: 640px;
  color: #00b7ce;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.wv-hero__visual img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
}

/* PC / SP切り替え */
.wv-hero__visual--sp {
  display: none;
}

.wv-hero__visual--pc {
  display: flex;
}

@media (max-width: 768px) {
  .wv-lp a.wv-button--orange,
  .wv-button--orange {
    padding: 9px 16px;
    font-size: 14px;
  }

  .wv-button--large {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 16px;
  }
}

.wv-lp a.wv-button--orange:hover,
.wv-button--orange:hover {
  background: #d97300;
  color: #ffffff;
}

/* Responsive
---------------------------------------------------------- */
@media (max-width: 1024px) {
  .wv-hero {
    padding: 104px 28px 64px;
  }

  .wv-hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wv-hero__content {
    max-width: 760px;
    margin: 0 auto;
  }

  .wv-hero__visual--pc {
    display: none;
  }

  .wv-hero__visual--sp {
    display: flex;
    align-items: center;
    margin: 32px 0 24px;
  }

  .wv-hero__visual-label {
    max-width: 100%;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
  }

  .wv-hero__visual img {
    max-width: 640px;
    margin: 0 auto;
  }

  .wv-hero__title {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .wv-hero {
    padding: 96px 20px 56px;
    background-position: top center;
    background-size: cover;
  }

  .wv-hero__badge {
    margin-bottom: 28px;
    padding: 10px 16px;
    font-size: 14px;
    gap: 8px;
  }

  .wv-hero__badge-icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
  }

  .wv-hero__badge-icon::before {
    top: 3px;
    height: 5px;
  }

  .wv-hero__badge-icon::after {
    width: 5px;
  }

  .wv-hero__title {
    margin-bottom: 24px;
    font-size: 34px;
    line-height: 1.4;
  }

  .wv-hero__lead {
    margin-bottom: 32px;
  }

  .wv-hero__lead-main p {
    font-size: 18px;
  }

  .wv-hero__lead-main .wv-hero__lead-sub {
    font-size: 16px;
  }

  .wv-hero__service-name p {
    font-size: 20px;
  }

  .wv-hero__visual--sp {
    margin: 28px 0 22px;
  }

  .wv-hero__visual-label {
    font-size: 18px;
  }

  .wv-button--large {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .wv-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wv-hero__title {
    font-size: 30px;
  }

  .wv-hero__badge {
    align-items: center;
  }

  .wv-hero__visual-label {
    font-size: 16px;
  }
}

/* Technology Base
---------------------------------------------------------- */
.wv-tech-base {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 48px 24px;
  background: rgba(0, 0, 0, 0.06);
}

.wv-tech-base__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.wv-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  padding: 10px 32px;
  border-radius: 999px;
  background: #007b49;
}

.wv-section-badge span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.wv-tech-base__content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  color: #3e3a39;
  font-size: 20px;
  line-height: 1.75;
}

.wv-tech-base__content p {
  margin: 0 0 8px;
}

.wv-tech-base__content p:last-child {
  margin-bottom: 0;
}

.wv-tech-base__content strong {
  font-weight: 900;
}

.wv-tech-base__logo {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.wv-tech-base__logo img {
  display: block;
  height: 76px;
  width: auto;
  max-width: 100%;
}


/* Problems Section
---------------------------------------------------------- */
.wv-problems-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 64px 24px 0;
  background: #ffffff;
}

.wv-problems-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.8;
}

.wv-problems-section__bg img {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 100%;
  min-width: 1200px;
  height: 140%;
  max-width: none;
  transform: translateX(-50%);
  object-fit: cover;
}

.wv-problems-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.wv-problems-section__heading {
  margin-bottom: 40px;
  text-align: center;
}

.wv-problems-section__heading h2 {
  margin: 0 0 16px;
  color: #3e3a39;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.wv-problems-section__lead {
  color: #000000;
  font-size: 20px;
  line-height: 1.5;
}

.wv-problems-section__lead p {
  margin: 0;
}

.wv-problems-info {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 896px;
  margin: 0 auto 56px;
}

.wv-problems-info__item {
  min-width: 0;
  height: 100px;
  padding: 16px 8px;
  border-radius: 14px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wv-problems-info__icon {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wv-problems-info__icon img {
  display: block;
  width: 48px;
  height: 48px;
  max-width: 100%;
  object-fit: contain;
}

.wv-problems-info__item p {
  margin: 0;
  color: #3e3a39;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
}

.wv-problems-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  align-items: end;
}

.wv-problems-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  align-items: end;
}

.wv-problems-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wv-problems-card__box {
  width: 100%;
  height: 108px;
  min-height: 108px;
  padding: 24px 16px;
  border: 2px solid #007b49;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wv-problems-card__box p {
  margin: 0;
  color: #3e3a39;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.wv-problems-card__box strong {
  font-weight: 900;
}

.wv-problems-card__person {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 0;
  margin-top: 24px;
}

.wv-problems-card__person img {
  display: block;
  width: 100px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0;
  vertical-align: bottom;
}

.wv-sp-only {
  display: none;
}



/* Key Benefits
---------------------------------------------------------- */
.wv-key-benefits {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 80px 24px;
  background: linear-gradient(135deg, #007b49 0%, #00b7ce 100%);
}

.wv-key-benefits__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.wv-key-benefits__heading {
  margin-bottom: 48px;
  text-align: center;
}

.wv-key-benefits__heading h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.wv-key-benefits__heading p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.8;
}

.wv-key-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 48px;
}

.wv-key-benefits__grid > * {
  min-width: 0;
}

.wv-benefit-card {
  min-width: 0;
  padding: 24px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.wv-benefit-card__visual {
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wv-benefit-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.wv-benefit-card h3 {
  margin: 0 0 12px;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.wv-benefit-card p {
  margin: 0;
  color: #444444;
  font-size: 14px;
  line-height: 1.8;
}

.wv-key-benefits__message {
  text-align: center;
}

.wv-key-benefits__message p {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}


/* Responsive
---------------------------------------------------------- */
@media (max-width: 1024px) {
  .wv-hero__grid {
    grid-template-columns: 1fr;
  }

  .wv-hero__visual {
    justify-content: center;
  }

  .wv-hero__title {
    font-size: 44px;
  }

  .wv-problems-info {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wv-problems-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 32px;
  }

  .wv-key-benefits__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .wv-header__inner {
    padding: 0 16px;
  }

  .wv-header__logo img {
    height: 32px;
    max-width: 180px;
  }

  .wv-button--orange {
    padding: 9px 16px;
    font-size: 14px;
  }

  .wv-hero {
    padding: 88px 20px 56px;
  }

  .wv-hero__grid {
    gap: 32px;
  }

  .wv-hero__badge {
    margin-bottom: 28px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .wv-hero__title {
    margin-bottom: 24px;
    font-size: 34px;
    line-height: 1.4;
  }

  .wv-hero__lead-main p {
    font-size: 18px;
  }

  .wv-hero__lead-main .wv-hero__lead-sub {
    font-size: 16px;
  }

  .wv-hero__service-name p {
    font-size: 20px;
  }

  .wv-button--large {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 16px;
  }

  .wv-tech-base {
    padding: 40px 20px;
  }

  .wv-section-badge {
    margin-bottom: 24px;
    padding: 9px 24px;
  }

  .wv-section-badge span {
    font-size: 14px;
  }

  .wv-tech-base__content {
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
  }

  .wv-tech-base__logo img {
    height: 56px;
  }

  .wv-problems-section {
    padding: 48px 16px 32px;
  }

  .wv-problems-section__bg img {
    top: 0;
    width: 100%;
    min-width: 760px;
    height: 100%;
  }

  .wv-problems-section__heading {
    margin-bottom: 32px;
  }

  .wv-problems-section__heading h2 {
    font-size: 24px;
    line-height: 1.6;
  }

  .wv-problems-section__lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .wv-problems-info {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 40px;
  }

  .wv-problems-info__item {
    height: 92px;
    padding: 12px 6px;
  }

  .wv-problems-info__icon {
    height: 40px;
  }

  .wv-problems-info__icon img {
    width: 40px;
    height: 40px;
  }

  .wv-problems-info__item p {
    font-size: 11px;
    line-height: 1.35;
  }

  .wv-problems-card__box {
    min-height: 104px;
    padding: 24px 14px;
  }

  .wv-problems-card__person {
    margin-top: 18px;
  }

  .wv-problems-card__person img {
    width: 96px;
    height: 96px;
  }

  .wv-sp-only {
    display: inline;
  }

  .wv-key-benefits {
    padding: 64px 20px;
  }

  .wv-key-benefits__heading {
    margin-bottom: 36px;
  }

  .wv-key-benefits__heading h2 {
    font-size: 24px;
  }

  .wv-key-benefits__heading p {
    font-size: 15px;
  }

  .wv-key-benefits__heading p br {
    display: none;
  }

  .wv-benefit-card {
    padding: 20px;
  }

  .wv-benefit-card__visual {
    height: 170px;
    margin-bottom: 20px;
  }

  .wv-key-benefits__message p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .wv-header__inner {
    padding: 0 12px;
  }

  .wv-header__logo img {
    height: 28px;
    max-width: 150px;
  }

  .wv-button--orange {
    padding: 8px 12px;
    font-size: 13px;
  }

  .wv-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wv-hero__title {
    font-size: 30px;
  }

  .wv-hero__badge {
    align-items: flex-start;
  }

  .wv-problems-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .wv-problems-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wv-problems-section__lead p {
    display: inline;
  }

  .wv-problems-section__lead p + p::before {
    content: "";
    display: block;
  }
}



/* Features
---------------------------------------------------------- */
.wv-features {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 48px 24px 88px;
}

.wv-features__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wv-features__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wv-features::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.wv-features__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.wv-features__heading {
  margin-bottom: 32px;
  text-align: center;
}

.wv-features__lead {
  max-width: 1120px;
  margin: 0 auto;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  text-align: left;
}

.wv-features__lead p {
  margin: 0;
}

.wv-features__diagram {
  margin: 0 auto 58px;
  width: 100%;
}

.wv-features__diagram img {
  display: block;
  width: 100%;
  height: auto;
}

/* Feature Group
---------------------------------------------------------- */
.wv-feature-group {
  margin-bottom: 54px;
}

.wv-feature-group__heading {
  margin-bottom: 20px;
}

.wv-feature-group__heading h2 {
  margin: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.wv-feature-group__heading h2 span {
  font-size: 24px;
}

.wv-feature-group__accent {
  font-size: 32px;
  font-weight: 900;
}

.wv-feature-group__accent--blue {
  color: #00b7ce;
}

.wv-feature-group__accent--green {
  color: #007b49;
}

.wv-feature-group__accent--orange {
  color: #f08300;
}

.wv-feature-group__heading p {
  margin: 4px 0 0;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.wv-feature-group__heading--left {
  text-align: left;
}

/* Feature Cards
---------------------------------------------------------- */
.wv-feature-cards {
  display: grid;
  gap: 18px;
}

.wv-feature-cards--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wv-feature-card {
  min-width: 0;
  min-height: 160px;
  padding: 20px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
}

.wv-feature-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.wv-feature-card__label--blue {
  background: #00b7ce;
}

.wv-feature-card__label--green {
  background: #007b49;
}

.wv-feature-card__label--orange {
  background: #f08300;
}

.wv-feature-card p {
  margin: 0;
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.75;
}

.wv-feature-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.wv-feature-card__tags {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wv-feature-card__tags span {
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.wv-feature-card__bottom img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* Bottom Grid
   3. 変化を見逃さない / 特徴
   上段1・2のカード幅に合わせる
---------------------------------------------------------- */
.wv-feature-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0 0 68px;
}

.wv-feature-bottom-grid .wv-feature-group {
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 14px;
  min-width: 0;
  margin-bottom: 0;
}

/* 左：3. 変化を見逃さない */
.wv-feature-bottom-grid .wv-feature-group:nth-child(1) {
  grid-column: 1 / 2;
}

/* 右：特徴 */
.wv-feature-bottom-grid .wv-feature-group:nth-child(2) {
  grid-column: 3 / 4;
}

.wv-feature-bottom-grid .wv-feature-group__heading {
  margin-bottom: 0;
  min-height: auto;
  display: block;
}

.wv-feature-bottom-grid .wv-feature-group__heading h2 {
  margin: 0;
}

.wv-feature-group--small {
  margin-bottom: 0;
}

.wv-feature-card--small {
  width: 100%;
  min-height: 182px;
}

/* CTA
---------------------------------------------------------- */
.wv-features__cta {
  text-align: center;
}

.wv-features__cta h2 {
  margin: 0 0 34px;
  color: #3e3a39;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5;
}

.wv-features__cta p {
  margin: 0 0 18px;
  color: #3e3a39;
  font-size: 16px;
  line-height: 1.8;
}

.wv-features__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 15px 36px;
  border-radius: 8px;
  background: #f08300;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  box-shadow:
    0 10px 7.5px rgba(0, 0, 0, 0.1),
    0 4px 3px rgba(0, 0, 0, 0.1);
}

.wv-features__button:hover {
  background: #d97300;
}

.wv-lp a.wv-features__button,
.wv-features__button {
  color: #ffffff;
}

.wv-lp a.wv-features__button:hover,
.wv-features__button:hover {
  color: #ffffff;
}

/* Responsive
---------------------------------------------------------- */
@media (max-width: 1024px) {
  .wv-feature-cards--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wv-feature-bottom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .wv-feature-bottom-grid .wv-feature-group:nth-child(1),
  .wv-feature-bottom-grid .wv-feature-group:nth-child(2) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .wv-features {
    padding: 48px 20px 72px;
  }

  .wv-features__lead {
    font-size: 14px;
    line-height: 1.9;
  }

.wv-features__diagram {
    margin-bottom: 42px;
    overflow-x: hidden;
    -webkit-overflow-scrolling: auto;
  }

  .wv-features__diagram img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .wv-feature-group {
    margin-bottom: 44px;
  }

  .wv-feature-group__heading h2,
  .wv-feature-group__heading h2 span {
    font-size: 25px;
  }

  .wv-feature-group__accent {
    font-size: 32px;
  }

  .wv-feature-group__heading p {
    font-size: 15px;
  }

  .wv-feature-cards--four {
    grid-template-columns: 1fr;
  }

  .wv-feature-card {
    min-height: auto;
  }

  .wv-feature-bottom-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-bottom: 56px;
  }

  .wv-feature-bottom-grid .wv-feature-group {
    display: block;
  }

  .wv-feature-bottom-grid .wv-feature-group__heading {
    margin-bottom: 20px;
  }

  .wv-features__cta h2 {
    font-size: 22px;
    line-height: 1.6;
  }

  .wv-features__cta h2 br {
    display: none;
  }
}

@media (max-width: 480px) {
  .wv-features {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wv-feature-card__bottom img {
    width: 64px;
    height: 64px;
  }
}


/* Benefits Timeline
---------------------------------------------------------- */
.wv-benefits-timeline {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 84px 24px 92px;
  background: #f8f8f8;
}

.wv-benefits-timeline__inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.wv-benefits-timeline__heading {
  margin-bottom: 34px;
}

.wv-benefits-timeline__heading h2 {
  margin: 0 0 14px;
  color: #3e3a39;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.wv-benefits-timeline__heading p {
  margin: 0;
  color: #3e3a39;
  font-size: 16px;
  line-height: 1.8;
}

/* タイムライン本体 */
.wv-benefits-timeline__bar-wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 46px;
}

.wv-benefits-timeline__main {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

/* 左側アイコン */
.wv-benefits-timeline__icons--left {
  position: absolute;
  left: -120px;
  bottom: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.wv-benefits-timeline__icons--left img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* 上部アイコン・バー・下テキストを同じ3分割にする */
.wv-benefits-timeline__top-icons,
.wv-benefits-timeline__bar,
.wv-benefits-timeline__subtitles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wv-benefits-timeline__top-icons {
  align-items: end;
  margin-bottom: 8px;
}

.wv-benefits-timeline__top-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px;
}

.wv-benefits-timeline__top-icon img {
  display: block;
  object-fit: contain;
}

.wv-benefits-timeline__top-icon--rain img {
  width: 50px;
  height: 50px;
}

.wv-benefits-timeline__top-icon--gear img {
  width: 48px;
  height: 48px;
}

.wv-benefits-timeline__top-icon--shield img {
  width: 48px;
  height: 48px;
}

.wv-benefits-timeline__bar {
  height: 38px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #8bd6dc 0%, #a5d4c8 48%, #f7c382 100%);
}

.wv-benefits-timeline__phase {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.wv-benefits-timeline__phase span {
  display: block;
  width: 100%;
  color: #25323f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.wv-benefits-timeline__subtitles {
  margin-top: 14px;
}

.wv-benefits-timeline__subtitles p {
  margin: 0;
  color: #3e3a39;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/* 下のリスト：タイムラインと同じ幅・同じ3分割 */
.wv-benefits-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 76px;
}

.wv-benefits-actions__group {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.wv-benefits-action {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wv-benefits-action__check {
  flex: 0 0 auto;
  color: #00b7ce;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.wv-benefits-actions__group--before .wv-benefits-action__check {
  color: #007b49;
}

.wv-benefits-actions__group--day .wv-benefits-action__check {
  color: #f08300;
}

.wv-benefits-action h3 {
  margin: 0 0 2px;
  color: #3e3a39;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.wv-benefits-action p {
  margin: 0;
  color: #4a5565;
  font-size: 12px;
  line-height: 1.6;
}

/* Before / After */
.wv-benefits-compare {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.wv-benefits-compare__card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-width: 0;
  min-height: 232px;
  padding: 32px 34px;
  border-radius: 14px;
  background: #ffffff;
}

.wv-benefits-compare__card--before {
  border: 1px solid #ffc9c9;
}

.wv-benefits-compare__card--after {
  border: 2px solid #007b49;
  background: linear-gradient(155deg, #e7f9f3 0%, #d5f2e9 100%);
}

.wv-benefits-compare__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.wv-benefits-compare__label--before {
  background: #ffecec;
  color: #e7000b;
}

.wv-benefits-compare__label--after {
  background: #007b49;
  color: #ffffff;
}

.wv-benefits-compare__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wv-benefits-compare__list li {
  position: relative;
  padding-left: 32px;
  color: #3e3a39;
  font-size: 17px;
  line-height: 1.5;
}

.wv-benefits-compare__list li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.wv-benefits-compare__list--before li::before {
  content: "×";
  background: #ffe2e2;
  color: #e7000b;
}

.wv-benefits-compare__list--after li {
  font-weight: 700;
}

.wv-benefits-compare__list--after li::before {
  content: "✓";
  background: #007b49;
  color: #ffffff;
}

.wv-benefits-compare__image {
  min-width: 0;
}

.wv-benefits-compare__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.wv-benefits-compare__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #007b49;
  color: #ffffff;
  transform: translate(-50%, -50%);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.08);
}

.wv-benefits-compare__arrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.wv-benefits-compare__arrow::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateX(7px) rotate(45deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .wv-benefits-timeline__bar-wrap {
    max-width: 900px;
  }

  .wv-benefits-timeline__main {
    max-width: 900px;
  }

  .wv-benefits-timeline__icons--left {
    position: static;
    justify-content: flex-start;
    margin-bottom: 12px;
  }

  .wv-benefits-actions {
    max-width: 900px;
    gap: 28px;
  }

  .wv-benefits-compare {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .wv-benefits-compare__arrow {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .wv-benefits-compare__arrow::before {
    width: 2px;
    height: 22px;
    background: #ffffff;
    border-radius: 999px;
  }

  .wv-benefits-compare__arrow::after {
    width: 9px;
    height: 9px;
    border-top: none;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateY(7px) rotate(45deg);
  }
}

@media (max-width: 768px) {
  .wv-benefits-compare__arrow {
    width: 42px;
    height: 42px;
  }

  .wv-benefits-compare__arrow::before {
    width: 2px;
    height: 18px;
  }

  .wv-benefits-compare__arrow::after {
    width: 8px;
    height: 8px;
    transform: translateY(6px) rotate(45deg);
  }

  .wv-benefits-timeline {
    padding: 64px 20px 72px;
  }

  .wv-benefits-timeline__heading h2 {
    font-size: 27px;
  }

  .wv-benefits-timeline__heading p {
    font-size: 15px;
  }

  .wv-benefits-timeline__bar-wrap {
    margin-bottom: 36px;
  }

  .wv-benefits-timeline__icons--left {
    justify-content: center;
  }

  .wv-benefits-timeline__icons--left img {
    width: 30px;
    height: 30px;
  }

  .wv-benefits-timeline__top-icon {
    height: 44px;
  }

  .wv-benefits-timeline__top-icon--rain img,
  .wv-benefits-timeline__top-icon--gear img,
  .wv-benefits-timeline__top-icon--shield img {
    width: 38px;
    height: 38px;
  }

  .wv-benefits-timeline__bar {
    height: 34px;
  }

  .wv-benefits-timeline__phase span {
    font-size: 14px;
  }

  .wv-benefits-timeline__subtitles p {
    font-size: 12px;
  }

  .wv-benefits-actions {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }

  .wv-benefits-actions__group {
    gap: 18px;
  }

  .wv-benefits-compare__card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 22px 16px;
  }

  .wv-benefits-compare__content {
    min-width: 0;
  }

  .wv-benefits-compare__image {
    min-width: 0;
  }

  .wv-benefits-compare__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .wv-benefits-compare__label {
    margin-bottom: 14px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .wv-benefits-compare__list {
    gap: 10px;
  }

  .wv-benefits-compare__list li {
    padding-left: 26px;
    font-size: 13px;
    line-height: 1.45;
  }

  .wv-benefits-compare__list li::before {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .wv-benefits-timeline__heading h2 {
    font-size: 24px;
  }

  .wv-benefits-timeline__subtitles {
    gap: 4px;
  }

  .wv-benefits-timeline__subtitles p {
    font-size: 11px;
  }
}




/* Use Case
---------------------------------------------------------- */
.wv-usecase {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

/* 上部ビジュアル */
.wv-usecase-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 405px;
  overflow: hidden;
  background: #000000;
}

.wv-usecase-hero__image {
  position: relative;
  min-width: 0;
  min-height: 405px;
  overflow: hidden;
}

.wv-usecase-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 405px;
  object-fit: cover;
}

.wv-usecase-hero__image--storm img {
  object-position: center center;
}

.wv-usecase-hero__image--dashboard img {
  object-position: center center;
}

.wv-usecase-hero__message {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(700px, calc(100% - 48px));
  padding: 32px 48px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.68);
  color: #ffffff;
  text-align: center;
  transform: translate(-50%, -50%);
}

.wv-usecase-hero__message h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.wv-usecase-hero__message p {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

/* 下部コンテンツ */
.wv-usecase__body {
  padding: 60px 24px 70px;
  background: #ffffff;
}

.wv-usecase__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 58px;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  align-items: start;
}

.wv-usecase__left,
.wv-usecase__right {
  min-width: 0;
}

.wv-usecase__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  margin-bottom: 24px;
  padding: 10px 30px;
  border-radius: 999px;
  background: #007b49;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

/* 活用例カード */
.wv-usecase-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.wv-usecase-card {
  min-width: 0;
  min-height: 144px;
  padding: 18px 14px 16px;
  border-radius: 10px;
  background: #e5f5f1;
}

.wv-usecase-card__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
}

.wv-usecase-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wv-usecase-card h3 {
  margin: 0 0 12px;
  color: #3e3a39;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.wv-usecase-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wv-usecase-card li {
  position: relative;
  margin: 0 0 4px;
  padding-left: 0.8em;
  color: #3e3a39;
  font-size: 14px;
  line-height: 1.55;
}

.wv-usecase-card li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* 右側おすすめ */
.wv-usecase__right {
  position: relative;
  padding-top: 2px;
  padding-right: 170px;
}

.wv-usecase__right h3 {
  margin: 0 0 26px;
  color: #3e3a39;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.wv-usecase-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wv-usecase-checklist li {
  position: relative;
  padding-left: 38px;
  color: #3e3a39;
  font-size: 16px;
  line-height: 1.75;
}

.wv-usecase-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #00b7ce;
}

.wv-usecase-checklist li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: calc(0.22em + 7px);
  width: 11px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

/* 右下人物 */
.wv-usecase__advisor {
  position: absolute;
  right: 0;
  bottom: -76px;
  width: 146px;
}

.wv-usecase__advisor img {
  display: block;
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .wv-usecase-hero {
    min-height: 340px;
  }

  .wv-usecase-hero__image,
  .wv-usecase-hero__image img {
    min-height: 340px;
  }

  .wv-usecase-hero__message h2 {
    font-size: 30px;
  }

  .wv-usecase__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 760px;
  }

  .wv-usecase__right {
    padding-right: 150px;
  }
}

@media (max-width: 768px) {
  .wv-usecase-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 260px;
  }

  .wv-usecase-hero__image {
    min-height: 260px;
  }

  .wv-usecase-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
  }

  .wv-usecase-hero__image--storm {
    display: block;
  }

  .wv-usecase-hero__image--dashboard {
    display: block;
  }

  .wv-usecase-hero__image--storm img {
    object-position: center center;
  }

  .wv-usecase-hero__image--dashboard img {
    object-position: center center;
  }

  .wv-usecase-hero__message {
    width: calc(100% - 32px);
    padding: 22px 18px;
  }

  .wv-usecase-hero__message h2 {
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.55;
  }

  .wv-usecase-hero__message p {
    font-size: 13px;
  }

  .wv-usecase__body {
    padding: 48px 20px 0;
  }

  .wv-usecase__inner {
    gap: 40px;
  }

  .wv-usecase-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wv-usecase-card {
    min-height: 136px;
    padding: 16px 12px;
  }

  .wv-usecase-card__icon {
    width: 32px;
    height: 32px;
  }

  .wv-usecase-card h3 {
    font-size: 18px;
  }

  .wv-usecase-card li {
    font-size: 13px;
  }

  .wv-usecase__right {
    padding-right: 0;
  }

  .wv-usecase__right h3 {
    font-size: 22px;
  }

  .wv-usecase-checklist li {
    font-size: 15px;
  }

  .wv-usecase__advisor {
    position: static;
    width: 120px;
    margin: 32px 0 0 auto;
  }
}

@media (max-width: 480px) {
  .wv-usecase-hero {
    min-height: 260px;
  }

  .wv-usecase-hero__image,
  .wv-usecase-hero__image img {
    min-height: 260px;
  }

  .wv-usecase-hero__message h2 {
    font-size: 21px;
  }

  .wv-usecase-cards {
    grid-template-columns: 1fr;
  }
}




/* Positioning Map
---------------------------------------------------------- */
.wv-positioning-map {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 88px 24px;
  background: linear-gradient(180deg, #eaf8fb 0%, #f7fcfd 100%);
}

.wv-positioning-map__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.wv-positioning-map__heading {
  margin-bottom: 40px;
  text-align: center;
}

.wv-positioning-map__heading h2 {
  margin: 0 0 12px;
  color: #3e3a39;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.wv-positioning-map__heading p {
  margin: 0;
  color: #3e3a39;
  font-size: 16px;
  line-height: 1.8;
}

.wv-positioning-map__image {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wv-positioning-map__image img {
  display: block;
  width: 100%;
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
}

/* スマホでは横スクロールで図を見やすくする */
@media (max-width: 768px) {
  .wv-positioning-map {
    padding: 64px 16px;
  }

  .wv-positioning-map__heading {
    margin-bottom: 28px;
  }

  .wv-positioning-map__heading h2 {
    font-size: 24px;
  }

  .wv-positioning-map__heading p {
    font-size: 15px;
    text-align: left;
  }

  .wv-positioning-map__image img {
    width: 900px;
    max-width: none;
  }
}



/* Flow Section
---------------------------------------------------------- */
.wv-flow {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 80px 24px;
  background: #f8f8f8;
}

.wv-flow__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.wv-flow__heading {
  margin-bottom: 64px;
  text-align: center;
}

.wv-flow__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 10px 30px;
  border-radius: 999px;
  background: #007b49;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.wv-flow__heading h2 {
  margin: 0 0 16px;
  color: #3e3a39;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.wv-flow__heading p {
  margin: 0;
  color: #3e3a39;
  font-size: 18px;
  line-height: 1.8;
}

/* Steps
---------------------------------------------------------- */
.wv-flow__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 56px;
}

.wv-flow-card {
  position: relative;
  min-width: 0;
  min-height: 230px;
  padding: 26px 24px 28px;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 1px 1.5px rgba(0, 0, 0, 0.1),
    0 1px 1px rgba(0, 0, 0, 0.1);
}

.wv-flow-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  z-index: 2;
  width: 24px;
  height: 48px;
  transform: translateY(-50%);
  background: #00b7ce;
  clip-path: polygon(
    0 0,
    100% 50%,
    0 100%,
    0 calc(100% - 3px),
    calc(100% - 5px) 50%,
    0 3px
  );
}

.wv-flow-card__number {
  margin-bottom: 8px;
  color: #00b7ce;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  opacity: 0.22;
}

.wv-flow-card__title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.wv-flow-card__check {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  border-radius: 50%;
  background: #007b49;
}

.wv-flow-card__check::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 8px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.wv-flow-card h3 {
  margin: 0;
  color: #3e3a39;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.wv-flow-card p {
  margin: 0;
  color: #3e3a39;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: -0.01em;
}

/* CTA
---------------------------------------------------------- */
.wv-flow__cta {
  text-align: center;
}

.wv-flow__cta p {
  margin: 0 0 20px;
  color: #3e3a39;
  font-size: 16px;
  line-height: 1.8;
}

.wv-flow__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.wv-flow__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 224px;
  padding: 16px 32px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  box-shadow:
    0 10px 7.5px rgba(0, 0, 0, 0.1),
    0 4px 3px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.wv-flow__button:hover {
  transform: translateY(-1px);
}

/* .wv-lp a { color: inherit; } 対策 */
.wv-lp a.wv-flow__button,
.wv-flow__button {
  color: #ffffff;
}

.wv-lp a.wv-flow__button:hover,
.wv-flow__button:hover {
  color: #ffffff;
}

.wv-flow__button--orange {
  background: #f08300;
}

.wv-flow__button--orange:hover {
  background: #d97300;
}

.wv-flow__button--green {
  background: #007b49;
}

.wv-flow__button--green:hover {
  background: #006838;
}

/* Responsive
---------------------------------------------------------- */
@media (max-width: 1024px) {
  .wv-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }

  .wv-flow-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
    

  .wv-flow {
    padding: 64px 20px;
  }

  .wv-flow__heading {
    margin-bottom: 40px;
  }

  .wv-flow__label {
    padding: 9px 26px;
    font-size: 14px;
  }

  .wv-flow__heading h2 {
    font-size: 28px;
  }

  .wv-flow__heading p {
    font-size: 16px;
  }

  .wv-flow__steps {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 20px;
    margin-bottom: 40px;
  }

  .wv-flow-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .wv-flow-card__number {
    font-size: 44px;
  }

  .wv-flow-card h3 {
    font-size: 19px;
  }

  .wv-flow__buttons {
    flex-direction: column;
    gap: 16px;
  }

  .wv-flow__button {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    padding: 15px 24px;
    font-size: 17px;
  }
  
  .wv-benefits-actions {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 420px;
    margin: 0 auto 56px;
    padding-left: 24px;
  }

  .wv-benefits-actions::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    width: 2px;
    background: linear-gradient(
      180deg,
      #00b7ce 0%,
      #007b49 50%,
      #f08300 100%
    );
  }

  .wv-benefits-actions__group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
  }

  .wv-benefits-actions__group::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -23px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #00b7ce;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #00b7ce;
  }

  .wv-benefits-actions__group--before::before {
    background: #007b49;
    box-shadow: 0 0 0 2px #007b49;
  }

  .wv-benefits-actions__group--day::before {
    background: #f08300;
    box-shadow: 0 0 0 2px #f08300;
  }

  .wv-benefits-actions__sp-heading {
    display: block;
    margin: 0 0 4px;
  }

  .wv-benefits-actions__sp-title {
    margin-bottom: 4px;
    color: #3e3a39;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
  }

  .wv-benefits-actions__sp-subtitle {
    color: #3e3a39;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .wv-flow {
    padding: 56px 16px;
  }

  .wv-flow__heading h2 {
    font-size: 26px;
  }

  .wv-flow-card {
    padding: 22px 20px;
  }

  .wv-flow-card__title {
    gap: 10px;
  }

  .wv-flow-card__check {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .wv-flow-card__check::before {
    top: 8px;
    left: 7px;
    width: 12px;
    height: 7px;
  }
}

.wv-benefits-actions__sp-heading {
  display: none;
}






/* FAQ
---------------------------------------------------------- */
.wv-faq {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 80px 24px;
  background: #ffffff;
}

.wv-faq__inner {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
}

.wv-faq__heading {
  margin-bottom: 64px;
  text-align: center;
}

.wv-faq__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 24px;
  border-radius: 999px;
  background: #007b49;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.wv-faq__heading h2 {
  margin: 0 0 16px;
  color: #3e3a39;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}

.wv-faq__heading p {
  margin: 0;
  color: #3e3a39;
  font-size: 18px;
  line-height: 1.8;
}

.wv-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wv-faq__item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.wv-faq__item:hover,
.wv-faq__item.is-open {
  border-color: #007b49;
}

.wv-faq__question {
  width: 100%;
  min-height: 72px;
  padding: 20px 24px;
  border: 0;
  background: #ffffff;
  color: #3e3a39;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.wv-faq__question:hover {
  background: #f8f8f8;
}

.wv-faq__question span:first-child {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.wv-faq__icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.wv-faq__icon::before,
.wv-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #007b49;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.wv-faq__icon::before {
  width: 18px;
  height: 2px;
}

.wv-faq__icon::after {
  width: 2px;
  height: 18px;
}

.wv-faq__item.is-open .wv-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.wv-faq__answer {
  display: none;
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
  background: #f8f8f8;
}

.wv-faq__item.is-open .wv-faq__answer {
  display: block;
}

.wv-faq__answer p {
  margin: 0;
  color: #3e3a39;
  font-size: 16px;
  line-height: 1.8;
}

.wv-faq__contact {
  margin-top: 48px;
  padding: 32px;
  border-radius: 12px;
  background: #e7f9f3;
  text-align: center;
}

.wv-faq__contact p {
  margin: 0 0 16px;
  color: #3e3a39;
  font-size: 18px;
  line-height: 1.8;
}

.wv-faq__contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 6px;
  background: #007b49;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.wv-faq__contact-button:hover {
  background: #006838;
}

.wv-lp a.wv-faq__contact-button,
.wv-faq__contact-button {
  color: #ffffff;
}

.wv-lp a.wv-faq__contact-button:hover,
.wv-faq__contact-button:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .wv-faq {
    padding: 64px 20px;
  }

  .wv-faq__heading {
    margin-bottom: 40px;
  }

  .wv-faq__label {
    font-size: 14px;
  }

  .wv-faq__heading h2 {
    font-size: 32px;
  }

  .wv-faq__heading p {
    font-size: 16px;
  }

  .wv-faq__question {
    min-height: auto;
    padding: 18px 16px;
  }

  .wv-faq__question span:first-child {
    font-size: 16px;
  }

  .wv-faq__answer {
    padding: 18px 16px;
  }

  .wv-faq__answer p {
    font-size: 15px;
  }

  .wv-faq__contact {
    padding: 28px 20px;
  }

  .wv-faq__contact p {
    font-size: 16px;
  }
}

/* CTA Section
---------------------------------------------------------- */
.wv-cta-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 80px 24px;
  background: linear-gradient(135deg, #e7f9f3 0%, #ffffff 50%, #d5f2e9 100%);
}

.wv-cta-section__inner {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
}

.wv-cta-box {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.wv-cta-box__header {
  padding: 48px 32px;
  background: linear-gradient(90deg, #007b49 0%, #00b7ce 100%);
  text-align: center;
}

.wv-cta-box__header h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
}

.wv-cta-box__header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

.wv-cta-box__body {
  padding: 48px;
}

.wv-cta-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.wv-cta-card {
  min-width: 0;
  padding: 24px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.wv-cta-card:hover {
  border-color: #007b49;
}

.wv-cta-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.wv-cta-card__heading h3 {
  margin: 0;
  color: #3e3a39;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.wv-cta-card__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #e7f9f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wv-cta-card__icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.wv-cta-card ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.wv-cta-card li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 1em;
  color: #3e3a39;
  font-size: 14px;
  line-height: 1.7;
}

.wv-cta-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

.wv-cta-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: 6px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.wv-cta-card__button:hover {
  transform: translateY(-1px);
}

.wv-cta-card__button--orange {
  background: #f08300;
}

.wv-cta-card__button--orange:hover {
  background: #d97300;
}

.wv-cta-card__button--green {
  background: #007b49;
}

.wv-cta-card__button--green:hover {
  background: #006838;
}


.wv-lp a.wv-cta-card__button,
.wv-cta-card__button {
  color: #ffffff;
}

.wv-lp a.wv-cta-card__button:hover,
.wv-cta-card__button:hover {
  color: #ffffff;
}

.wv-cta-tel {
  padding: 24px;
  border-radius: 12px;
  background: #f8f8f8;
  text-align: center;
}

.wv-cta-tel__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #3e3a39;
  font-size: 16px;
  font-weight: 700;
}

.wv-cta-tel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #007b49;
  font-size: 20px;
  line-height: 1;
}

.wv-cta-tel__number {
  margin-bottom: 4px;
  color: #007b49;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.wv-cta-tel__time {
  color: #3e3a39;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .wv-cta-section {
    padding: 64px 20px;
  }

  .wv-cta-box__header {
    padding: 40px 24px;
  }

  .wv-cta-box__header h2 {
    font-size: 28px;
  }

  .wv-cta-box__header p {
    font-size: 16px;
  }

  .wv-cta-box__body {
    padding: 32px 20px;
  }

  .wv-cta-cards {
    grid-template-columns: 1fr;
  }

  .wv-cta-card {
    padding: 22px;
  }

  .wv-cta-card__icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .wv-cta-card__icon img {
    width: 28px;
    height: 28px;
  }

  .wv-cta-tel__number {
    font-size: 24px;
  }
}

/* Footer
---------------------------------------------------------- */
.wv-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 48px 24px;
  background: #3e3a39;
  color: #ffffff;
}

.wv-footer__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.wv-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}

.wv-footer__top .wv-footer__column:last-child {
  justify-self: end;
  text-align: left;
}

.wv-footer__column {
  min-width: 0;
}

.wv-footer__logo {
  margin-bottom: 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.wv-footer__column p {
  margin: 0;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.8;
}

.wv-footer__column h4 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.wv-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wv-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.6;
}

.wv-footer__contact-icon {
  flex: 0 0 auto;
  color: #00b7ce;
  font-size: 19px;
  line-height: 1;
}

.wv-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wv-footer__links a {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wv-footer__links a:hover {
  color: #00b7ce;
}

.wv-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #6b7280;
}

.wv-footer__copyright {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.wv-footer__legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.wv-footer__legal a {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wv-footer__legal a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .wv-footer {
    padding: 40px 20px;
  }

@media (max-width: 768px) {
  .wv-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wv-footer__top .wv-footer__column:last-child {
    justify-self: start;
    text-align: left;
  }
}

  .wv-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .wv-footer__legal {
    gap: 18px;
    flex-wrap: wrap;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}






/* Water Vision Contact Page
---------------------------------------------------------- */
body.water-vision-contact-page {
  background: #ffffff;
}

.wv-contact-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

/* FV */
.wv-contact-page__mv {
  width: 100%;
  padding: 140px 24px 64px;
  background: linear-gradient(135deg, #007b49 0%, #00b7ce 100%);
  color: #ffffff;
  text-align: center;
}

.wv-contact-page__mv-inner {
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
}

.wv-contact-page__mv .wv-section-badge {
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.18);
}

.wv-contact-page__mv .wv-section-badge span {
  color: #ffffff;
}

.wv-contact-page__mv h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.wv-contact-page__mv p {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
}

/* 既存フォームデザインを活かす */
.wv-contact-page.contact .cont_wrap {
  background: #f9f9f9;
  margin: 80px auto 96px;
  width: 95%;
  max-width: 1040px;
  padding: 80px;
}

/* Contact Form 7内の余白調整 */
.wv-contact-page .wpcf7 {
  width: 100%;
}

.wv-contact-page .wpcf7 form {
  width: 100%;
}

.wv-contact-page .wpcf7 p {
  margin: 0;
}

/* 既存フォームがdl/dt/dd構造の場合に合わせる */
.wv-contact-page .cont_wrap dl {
  width: 100%;
}

.wv-contact-page .cont_wrap dt {
  color: #242424;
  font-weight: 700;
}

.wv-contact-page .cont_wrap dd {
  color: #242424;
}

/* 入力欄の基本調整：既存CSSがあればそちらを優先しつつ崩れ防止 */
.wv-contact-page .cont_wrap input[type="text"],
.wv-contact-page .cont_wrap input[type="email"],
.wv-contact-page .cont_wrap input[type="tel"],
.wv-contact-page .cont_wrap select,
.wv-contact-page .cont_wrap textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

/* textarea */
.wv-contact-page .cont_wrap textarea {
  min-height: 180px;
}

/* ラジオ・チェックボックスは横幅100%にしない */
.wv-contact-page .cont_wrap input[type="radio"],
.wv-contact-page .cont_wrap input[type="checkbox"] {
  width: auto;
}

/* プライバシー周り */
.wv-contact-page .cont_wrap .privacy,
.wv-contact-page .cont_wrap .privacy_check {
  line-height: 1.8;
}

/* 送信ボタン */
.wv-contact-page .cont_wrap input[type="submit"],
.wv-contact-page .cont_wrap .wpcf7-submit {
  cursor: pointer;
}

/* CF7メッセージ */
.wv-contact-page .wpcf7-response-output {
  margin: 32px 0 0;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.7;
}

.wv-contact-page .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #d93025;
  font-size: 13px;
  line-height: 1.6;
}

/* Header button */
.wv-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wv-lp a.wv-button--orange,
.wv-button--orange {
  color: #ffffff;
}

/* Responsive
---------------------------------------------------------- */
@media (max-width: 768px) {
  .wv-contact-page__mv {
    padding: 112px 20px 48px;
  }

  .wv-contact-page__mv h1 {
    font-size: 28px;
    line-height: 1.5;
  }

  .wv-contact-page__mv p {
    font-size: 15px;
  }

  .wv-contact-page__mv p br {
    display: none;
  }

  .wv-contact-page.contact .cont_wrap {
    width: calc(100% - 32px);
    margin: 56px auto 72px;
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .wv-contact-page__mv {
    padding: 104px 16px 44px;
  }

  .wv-contact-page__mv h1 {
    font-size: 24px;
  }

  .wv-contact-page.contact .cont_wrap {
    width: calc(100% - 28px);
    padding: 32px 18px;
  }
}

/* CTA Pattern Label
---------------------------------------------------------- */
.wv-cta-pattern-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(0, 123, 73, 0.1);
  color: #007b49;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.wv-cta-section--pattern-a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.wv-cta-section--pattern-b {
  background: #f8f8f8;
}


/* CTA Download Form：1カラム版
---------------------------------------------------------- */
.wv-cta-download-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

/* 資料でわかること */
.wv-cta-doc-summary {
  min-width: 0;
  padding: 28px 32px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
}

.wv-cta-doc-summary__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: #e7f9f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wv-cta-doc-summary__icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.wv-cta-doc-summary h3 {
  margin: 0 0 20px;
  color: #3e3a39;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.wv-cta-doc-summary ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wv-cta-doc-summary li {
  position: relative;
  padding-left: 20px;
  color: #3e3a39;
  font-size: 15px;
  line-height: 1.7;
}

.wv-cta-doc-summary li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #007b49;
}

/* 資料請求フォーム */
.wv-cta-form-card {
  min-width: 0;
  padding: 40px 48px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

.wv-cta-form-card__heading {
  margin-bottom: 28px;
  text-align: center;
}

.wv-cta-form-card__heading h3 {
  margin: 0 0 8px;
  color: #3e3a39;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}

.wv-cta-form-card__heading p {
  margin: 0;
  color: #4a5565;
  font-size: 14px;
  line-height: 1.7;
}

.wv-cta-form-card__form {
  width: 100%;
}

@media (max-width: 768px) {
  .wv-cta-download-layout {
    max-width: 100%;
    gap: 24px;
  }

  .wv-cta-doc-summary {
    padding: 24px 20px;
  }

  .wv-cta-doc-summary ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .wv-cta-form-card {
    padding: 28px 20px;
  }

  .wv-cta-form-card__heading h3 {
    font-size: 22px;
  }
}

/* CTA内 資料請求フォーム調整
---------------------------------------------------------- */
.wv-cta-form-card__form .wpcf7 {
  width: 100%;
}

.wv-cta-form-card__form form {
  width: 100%;
}

.wv-cta-form-card__form p {
  margin: 0;
}

.wv-cta-form-card__form dl {
  margin: 0;
  padding: 0;
}

.wv-cta-form-card__form dt {
  margin: 0 0 8px;
  color: #3e3a39;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.wv-cta-form-card__form dt .red {
  display: inline-block;
  margin-left: 8px;
  color: #de4949;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.wv-cta-form-card__form dd {
  margin: 0 0 22px;
  padding: 0;
}

.wv-cta-form-card__form input[type="text"],
.wv-cta-form-card__form input[type="email"],
.wv-cta-form-card__form input[type="tel"],
.wv-cta-form-card__form select,
.wv-cta-form-card__form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  color: #3e3a39;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.wv-cta-form-card__form select {
  appearance: auto;
  min-height: 52px;
}

.wv-cta-form-card__form textarea {
  min-height: 120px;
  resize: vertical;
}

.wv-cta-form-card__form input[type="checkbox"] {
  width: auto !important;
  margin-right: 8px;
}

.wv-cta-form-card__form .privacy {
  margin: 24px 0 12px;
  color: #3e3a39;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.wv-cta-form-card__form .privacy a {
  color: #007b49;
  text-decoration: underline;
}

.wv-cta-form-card__form .privacy_check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 26px;
  color: #3e3a39;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.wv-cta-form-card__form .privacy_check .red {
  flex: 0 0 auto;
  color: #de4949;
  font-size: 12px;
  font-weight: 700;
}

.wv-cta-form-card__form .wpcf7-list-item {
  margin: 0 !important;
}

.wv-cta-form-card__form .wpcf7-list-item label {
  display: flex !important;
  align-items: center !important;
}

.wv-cta-form-card__form .wpcf7-list-item label input {
  width: auto !important;
  margin-right: 8px !important;
}

.wv-cta-form-card__form .btn_send,
.wv-cta-form-card__form input[type="submit"].btn_send {
  display: block;
  width: 100%;
  max-width: none;
  margin: 32px auto 0;
  padding: 16px 28px;
  border: none;
  border-radius: 8px;
  background: #f08300;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.wv-cta-form-card__form .btn_send:hover,
.wv-cta-form-card__form input[type="submit"].btn_send:hover {
  background: #d97300;
  color: #ffffff;
  transform: translateY(-1px);
}

.wv-cta-form-card__form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #de4949;
  font-size: 12px;
  line-height: 1.6;
}

.wv-cta-form-card__form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.7;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .wv-cta-form-card__form dt {
    font-size: 14px;
  }

  .wv-cta-form-card__form dd {
    margin-bottom: 18px;
  }

  .wv-cta-form-card__form input[type="text"],
  .wv-cta-form-card__form input[type="email"],
  .wv-cta-form-card__form input[type="tel"],
  .wv-cta-form-card__form select,
  .wv-cta-form-card__form textarea {
    padding: 13px 14px;
    font-size: 14px;
  }

  .wv-cta-form-card__form .privacy,
  .wv-cta-form-card__form .privacy_check {
    font-size: 12px;
  }

  .wv-cta-form-card__form .btn_send,
  .wv-cta-form-card__form input[type="submit"].btn_send {
    padding: 15px 20px;
    font-size: 15px;
  }
}

/* CTA下 お問い合わせ導線
---------------------------------------------------------- */
.wv-cta-contact-link {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(62, 58, 57, 0.12);
  text-align: center;
}

.wv-cta-contact-link p {
  margin: 0 0 14px;
  color: #3e3a39;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.wv-lp a.wv-cta-contact-link__button,
.wv-cta-contact-link__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 28px;
  border-radius: 6px;
  background: #007b49;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.wv-lp a.wv-cta-contact-link__button:hover,
.wv-cta-contact-link__button:hover {
  background: #006838;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .wv-cta-contact-link {
    margin-top: 28px;
    padding-top: 24px;
  }

  .wv-cta-contact-link p {
    font-size: 14px;
  }

  .wv-lp a.wv-cta-contact-link__button,
  .wv-cta-contact-link__button {
    width: 100%;
    max-width: 320px;
    padding: 12px 24px;
    font-size: 14px;
  }
}