:root {
  --lp-main-color: #2e7d32; /* メインカラー */
  --lp-accent-color: #ff9800; /* アクセントカラー */
  --lp-text-color: #333333; /* 基本文字色 */
  --lp-bg-white: #ffffff; /* セクション背景（白） */
  --lp-bg-gray: #f8f9fa; /* セクション背景（淡いグレー） */
}

/* 全体設定 */
.l-main-lp {
  color: var(--lp-text-color);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--lp-bg-white);
}

.lp-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* セクション共通＆背景色切り替え */
.lp-section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

/* 奇数番目のセクション（1番目、3番目…）は白背景 */
.lp-section:nth-child(odd) {
  background-color: var(--lp-bg-white);
}

/* 偶数番目のセクション（2番目、4番目…）は薄グレー背景 */
.lp-section:nth-child(even) {
  background-color: var(--lp-bg-gray);
}

.lp-section__title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: var(--lp-main-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.lp-section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--lp-accent-color);
  border-radius: 2px;
}

/* 1. ファーストビュー (Hero) */
.lp-hero {
  text-align: center;
  padding: 40px 0 50px;
}

.lp-hero__sub-catch {
  display: inline-block;
  background-color: var(--lp-accent-color);
  color: #fff;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.lp-hero__main-catch {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--lp-main-color);
  line-height: 1.3;
  margin-bottom: 25px;
}

.lp-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 2. 施工前・施工後（workba）設定 */
.workba {
  display: flex !important;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.workba > div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.workba img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

/* モバイル対応（768px以下） */
@media (max-width: 768px) {
  .lp-section {
    padding: 40px 0;
  }

  .lp-hero__main-catch {
    font-size: 1.6rem;
  }

  /* 施工前・施工後をスマホで縦並びにする */
  .workba {
    flex-direction: column !important;
    gap: 15px;
  }
}
