/* Wall Painting Page Styles */
.wp-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: sans-serif;
    color: #333;
  }
  
  .wp-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 1.8;
  }
  
  .wp-section {
    margin-bottom: 80px;
    padding: 40px 20px;
    border-radius: 8px;
  }
  
  .wp-bg-light {
    background-color: #f9f9f9;
  }
  
  .wp-title {
    color: #26BDE2;
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
  }
  
  .wp-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #26BDE2;
  }
  
  .wp-text {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 16px;
  }
  
  .wp-image-center {
    text-align: center;
  }
  
  .wp-image-center img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 4px;
  }
  
  .wp-flex-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .wp-flex-images img {
    width: calc(50% - 10px);
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 4px;
  }
  
  .wp-mt-40 {
    margin-top: 40px;
  }
  
  /* CTA Section */
  .wp-cta {
    background-color: #26BDE2;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 8px;
    margin-top: 60px;
  }
  
  .wp-cta-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .wp-cta-text {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .wp-btn {
    display: inline-block;
    background-color: #fff;
    color: #26BDE2;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .wp-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }
  
  /* レスポンシブ対応 */
  @media (max-width: 768px) {
    .wp-flex-images {
      flex-direction: column;
    }
    .wp-flex-images img {
      width: 100%;
    }
    .wp-intro {
      font-size: 16px;
    }
    .wp-title {
      font-size: 22px;
    }
    .wp-cta-title {
      font-size: 20px;
    }
  }

  /* Wall Painting Layout Styles */
.wp-container { max-width: 1000px; margin: 0 auto; padding: 40px 20px; color: #333; line-height: 1.8; }
.wp-intro { text-align: center; margin-bottom: 60px; font-size: 18px; }
.wp-section { margin-bottom: 80px; padding: 40px 20px; border-radius: 8px; }
.wp-bg-light { background-color: #f9f9f9; }

/* タイトル周り */
.wp-title { color: #26BDE2; font-size: 26px; margin-bottom: 40px; text-align: center; position: relative; padding-bottom: 15px; }
.wp-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: #26BDE2; }
.wp-text { text-align: center; margin-bottom: 40px; font-size: 16px; }

/* グリッドレイアウト（役割・理由） */
.wp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }

.wp-card { background: #fff; padding: 30px 20px; border-radius: 8px; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.05); position: relative; }
.wp-step-label { display: block; color: #26BDE2; font-size: 20px; font-weight: bold; margin-bottom: 10px; }
.wp-card h3 { font-size: 18px; margin-bottom: 15px; border-bottom: 1px dashed #ccc; padding-bottom: 10px; }

.wp-reason-card { background: #fff; padding: 20px; border-radius: 8px; border-top: 4px solid #26BDE2; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.wp-reason-card h3 { color: #26BDE2; font-size: 18px; margin-bottom: 10px; text-align: center; }

/* 2カラムレイアウト（保険・助成金） */
.wp-flex-2 { display: flex; gap: 30px; }
.wp-box { flex: 1; border: 2px solid #e0e0e0; padding: 30px; border-radius: 8px; background: #fff; }
.wp-box-title { background: #f0f0f0; display: inline-block; padding: 5px 15px; border-radius: 20px; margin-bottom: 15px; font-size: 16px; }

/* 画像エリア */
.wp-image-center { text-align: center; }
.wp-image-center img { max-width: 100%; height: auto; border-radius: 4px; }
.wp-flex-images { display: flex; gap: 20px; justify-content: center; }
.wp-image-box { flex: 1; text-align: center; }
.wp-image-box h4 { margin-bottom: 15px; font-size: 16px; color: #555; }
.wp-image-box img { width: 100%; height: auto; border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.wp-mt-40 { margin-top: 40px; }

/* CTA */
.wp-cta { background-color: #26BDE2; color: #fff; text-align: center; padding: 60px 20px; border-radius: 8px; }
.wp-cta-title { font-size: 24px; margin-bottom: 20px; }
.wp-cta-text { font-size: 16px; margin-bottom: 30px; }
.wp-btn { display: inline-block; background-color: #fff; color: #26BDE2; font-size: 18px; font-weight: bold; padding: 15px 40px; border-radius: 30px; text-decoration: none; transition: 0.3s; }
.wp-btn:hover { background-color: #e0f7fa; transform: translateY(-2px); }

/* レスポンシブ */
@media (max-width: 768px) {
  .wp-grid-3, .wp-grid-4, .wp-flex-2, .wp-flex-images { grid-template-columns: 1fr; display: flex; flex-direction: column; }
}