/* =========================
   H2O LP 共通レイアウト
   ========================= */

.h2o-lp {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.7;
  background-color: #f7f8fb;
}

.h2o-lp .lp-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.h2o-lp .u-sp {
  display: none;
}

/* セクション共通 */

.h2o-lp section {
  padding: 64px 0;
}

.h2o-lp .lp-section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.h2o-lp .lp-section-lead {
  text-align: center;
  margin-bottom: 32px;
  font-size: 16px;
}

.h2o-lp .lp-section-text {
  font-size: 15px;
  margin-bottom: 16px;
}

.h2o-lp .lp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.h2o-lp .lp-list li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 4px;
  font-size: 14px;
}

.h2o-lp .lp-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.h2o-lp .lp-list.lp-list-check li::before {
  content: "✔";
  color: #0072c6;
  font-size: 0.9em;
}

/* ボタン */

.h2o-lp .lp-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.h2o-lp .lp-btn-primary {
  background-color: #0072c6;
  color: #fff;
  border-color: #0072c6;
}

.h2o-lp .lp-btn-primary:hover {
  background-color: #005b9c;
  border-color: #005b9c;
}

.h2o-lp .lp-btn-outline {
  background-color: #fff;
  color: #0072c6;
  border-color: #0072c6;
}

.h2o-lp .lp-btn-outline:hover {
  background-color: #e6f2fb;
}

/* リンク（矢印付き） */

.h2o-lp .lp-link-arrow {
  display: inline-block;
  font-size: 14px;
  color: #0072c6;
  text-decoration: none;
  margin-top: 8px;
}

.h2o-lp .lp-link-arrow::after {
  content: " ＞";
}

/* 2カラム共通 */

.h2o-lp .lp-two-col {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.h2o-lp .lp-two-col > * {
  flex: 1;
}

/* =========================
   ヒーロー
   ========================= */

.h2o-lp .lp-hero {
  background: linear-gradient(135deg, #0b4f8a 0%, #0090c7 100%);
  color: #fff;
  padding: 72px 0 56px;
}

.h2o-lp .lp-hero-inner {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.h2o-lp .lp-hero-text {
  flex: 3;
}

.h2o-lp .lp-hero-side {
  flex: 2;
}

.h2o-lp .lp-hero-label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  margin-bottom: 12px;
}

.h2o-lp .lp-hero-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
}

.h2o-lp .lp-hero-title span {
  border-bottom: 3px solid #ffeb3b;
}

.h2o-lp .lp-hero-subtitle {
  font-size: 15px;
  margin-bottom: 16px;
}

.h2o-lp .lp-hero-badges {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.h2o-lp .lp-hero-badges li {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.h2o-lp .lp-hero-cta {
  margin-top: 12px;
}

.h2o-lp .lp-hero-note {
  font-size: 11px;
  margin-top: 8px;
  opacity: 0.9;
}

.h2o-lp .lp-hero-box {
  background-color: #fff;
  color: #333;
  border-radius: 16px;
  padding: 20px 20px 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.h2o-lp .lp-hero-box-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.h2o-lp .lp-hero-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.h2o-lp .lp-hero-steps li {
  font-size: 13px;
  margin-bottom: 4px;
}

.h2o-lp .lp-hero-steps a {
  color: #0072c6;
  text-decoration: none;
}

/* =========================
   セグメントカード
   ========================= */

.h2o-lp .lp-segment {
  background-color: #f7f8fb;
}

.h2o-lp .lp-segment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.h2o-lp .lp-segment-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.h2o-lp .lp-segment-label {
  font-size: 12px;
  font-weight: 700;
  color: #0072c6;
  margin-bottom: 8px;
}

.h2o-lp .lp-segment-heading {
  font-size: 16px;
  margin-bottom: 8px;
}

.h2o-lp .lp-segment-lead {
  font-size: 13px;
  margin-top: 8px;
}

/* =========================
   業種
   ========================= */

.h2o-lp .lp-industries {
  background-color: #fff;
}

.h2o-lp .lp-industry-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.h2o-lp .lp-industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #e6f2fb;
  font-size: 13px;
}

.h2o-lp .lp-industry-badge .emoji {
  font-size: 16px;
}

/* =========================
   about・support
   ========================= */

.h2o-lp .lp-about,
.h2o-lp .lp-support {
  background-color: #f7f8fb;
}

.h2o-lp .lp-about-points .lp-point-block,
.h2o-lp .lp-support-block {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 16px;
}

/* =========================
   フロー
   ========================= */

.h2o-lp .lp-flow {
  background-color: #fff;
}

.h2o-lp .lp-flow-box {
  background-color: #f7f8fb;
  border-radius: 16px;
  padding: 20px 20px 24px;
  box-sizing: border-box;
}

.h2o-lp .lp-flow-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.h2o-lp .lp-flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.h2o-lp .lp-flow-list li {
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 6px;
  font-size: 14px;
}

.h2o-lp .lp-flow-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6em;
  height: 1.6em;
  border-radius: 999px;
  background-color: #0072c6;
  color: #fff;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.h2o-lp .lp-flow-note {
  font-size: 12px;
  margin-top: 8px;
}

/* =========================
   強み
   ========================= */

.h2o-lp .lp-strengths {
  background-color: #f7f8fb;
}

.h2o-lp .lp-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.h2o-lp .lp-strength-item {
  background-color: #fff;
  border-radius: 16px;
  padding: 16px 16px 20px;
  box-sizing: border-box;
  font-size: 13px;
}

.h2o-lp .lp-strength-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: #0072c6;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.h2o-lp .lp-strength-item h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

/* =========================
   お客様の声
   ========================= */

.h2o-lp .lp-voices {
  background-color: #fff;
}

.h2o-lp .lp-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.h2o-lp .lp-voice-item {
  background-color: #f7f8fb;
  border-radius: 12px;
  padding: 16px;
  box-sizing: border-box;
  font-size: 13px;
}

.h2o-lp .lp-voice-company {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 12px;
}

.h2o-lp .lp-voice-text {
  font-size: 13px;
}

/* =========================
   FAQ
   ========================= */

.h2o-lp .lp-faq {
  background-color: #f7f8fb;
}

.h2o-lp .lp-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.h2o-lp .lp-faq-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 8px;
  padding: 10px 14px;
  box-sizing: border-box;
  font-size: 14px;
}

.h2o-lp .lp-faq-item summary {
  cursor: pointer;
  list-style: none;
}

.h2o-lp .lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.h2o-lp .lp-faq-item summary::after {
  content: "＋";
  float: right;
}

.h2o-lp .lp-faq-item[open] summary::after {
  content: "－";
}

.h2o-lp .lp-faq-body {
  margin-top: 8px;
  border-top: 1px solid #eee;
  padding-top: 8px;
}

/* =========================
   最終CTA
   ========================= */

.h2o-lp .lp-cta-final {
  background: linear-gradient(135deg, #0b4f8a 0%, #0090c7 100%);
  color: #fff;
}

.h2o-lp .lp-cta-inner {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.h2o-lp .lp-cta-text .lp-section-title {
  color: #fff;
}

.h2o-lp .lp-cta-box {
  background-color: #fff;
  color: #333;
  border-radius: 16px;
  padding: 20px 20px 24px;
  box-sizing: border-box;
  min-width: 280px;
}

.h2o-lp .lp-cta-box-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.h2o-lp .lp-cta-contact {
  font-size: 14px;
  margin-bottom: 12px;
}

.h2o-lp .lp-cta-phone {
  font-size: 18px;
  font-weight: 700;
}

.h2o-lp .lp-cta-note {
  font-size: 11px;
}

.h2o-lp .lp-cta-line {
  font-size: 12px;
  margin-top: 4px;
}

.h2o-lp .lp-contact-form {
  font-size: 12px;
}

.h2o-lp .lp-cta-form-note {
  font-size: 12px;
  margin-bottom: 4px;
}

/* =========================
   フォーム
   ========================= */

.h2o-lp .lp-form {
  margin-top: 4px;
}

.h2o-lp .lp-form-row {
  margin-bottom: 12px;
}

.h2o-lp .lp-form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.h2o-lp .lp-form-row input,
.h2o-lp .lp-form-row textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

.h2o-lp .lp-form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.h2o-lp .lp-required {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 11px;
  color: #fff;
  background-color: #d32f2f;
  border-radius: 999px;
  vertical-align: middle;
}

.h2o-lp .lp-form-privacy label {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
}

.h2o-lp .lp-form-privacy input[type="checkbox"] {
  margin-top: 3px;
}

.h2o-lp .lp-form-privacy a {
  color: #0072c6;
  text-decoration: underline;
}

.h2o-lp .lp-form-actions {
  text-align: center;
  margin-top: 16px;
}

/* =========================
   ヘッダー
   ========================= */

.h2o-lp .lp-site-header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;  /* 画面上部に追従 */
  top: 0;
  z-index: 100;
}

.h2o-lp .lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.h2o-lp .lp-header-logo img {
  height: 40px;
  display: block;
}

.h2o-lp .lp-header-cta {
  font-size: 14px;
  padding: 8px 18px;
}

/* =========================
   フッター
   ========================= */

.h2o-lp .lp-site-footer {
  background-color: #222;
  color: #fff;
  padding: 24px 0;
  font-size: 12px;
}

.h2o-lp .lp-footer-inner {
  text-align: center;
}

.h2o-lp .lp-footer-name {
  font-weight: 700;
  margin-bottom: 4px;
}

.h2o-lp .lp-footer-info {
  margin-bottom: 4px;
  line-height: 1.6;
}

.h2o-lp .lp-footer-copy {
  margin-top: 8px;
  font-size: 11px;
  opacity: 0.7;
}



/* =========================
   レスポンシブ
   ========================= */

@media (max-width: 960px) {
  .h2o-lp .lp-hero-inner,
  .h2o-lp .lp-two-col,
  .h2o-lp .lp-cta-inner {
    flex-direction: column;
  }

  .h2o-lp .lp-hero-side {
    order: -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .h2o-lp .u-sp {
    display: inline;
  }

  .h2o-lp section {
    padding: 40px 0;
  }

  .h2o-lp .lp-section-title {
    font-size: 22px;
  }

  .h2o-lp .lp-hero-title {
    font-size: 22px;
  }

  .h2o-lp .lp-segment-grid,
  .h2o-lp .lp-strength-grid,
  .h2o-lp .lp-voices-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   最終CTA レイアウト調整（縦並び＆中央寄せ）
   ========================= */

.h2o-lp .lp-cta-inner {
  display: flex;
  flex-direction: column;  /* 上：テキスト、下：フォーム */
  align-items: center;     /* 中央寄せ */
  gap: 24px;               /* 上下の間隔 */
}

.h2o-lp .lp-cta-text {
  text-align: center;      /* 見出し・リストを中央揃え */
  max-width: 800px;        /* 長すぎないように幅制限（お好みで調整OK） */
}

.h2o-lp .lp-cta-box {
  max-width: 480px;        /* フォームの横幅 */
  width: 100%;             /* スマホで横幅いっぱい */
  margin: 0 auto;          /* 念のため中央寄せ */
}
