h1{
    background: url(/inage-family/wp-content/themes/swell_child/img/kenshin/family.jpg) no-repeat;
      background-size: cover;
      height: 250px;
      color: #555;
      background-position: right center;
      font-family: "Noto Serif Japanese",serif;
      border: 15px solid #fff;
    }
 /* 健診結果のセクションスタイル */
 .result-report-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
  }
  
  .result-report-card {
    flex: 1;
    min-width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .result-report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  .report-header {
    display: flex;
    align-items: center;
    padding: 20px;
    color: white;
  }
  
  
  .report-header {
    background: linear-gradient(135deg, #009a82 0%, #00c4a7 100%);
  }
  
  .report-header i {
    font-size: 28px;
    margin-right: 15px;
  }
  
  .report-header h3 {
    margin: 0;
    font-size: 20px;
  }
  
  .report-content {
    padding: 20px;
    background: white;
  }
  
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
  }
  
  .feature-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  
  .feature-list li i {
    color: #4CAF50;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 16px;
    width: 20px;
    text-align: center;
  }
  
  .result-delivery-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .delivery-time, .delivery-support {
    display: flex;
    align-items: flex-start;
    flex: 1;
    min-width: 280px;
  }
  
  .delivery-time i, .delivery-support i {
    font-size: 24px;
    color: #4caf50;
    margin-right: 15px;
    margin-top: 3px;
  }
  
  .delivery-time p, .delivery-support p {
    margin: 0;
  }
  
  .note {
    font-size: 14px;
    color: #666;
    margin-top: 5px !important;
  }
  
      
      /* レスポンシブ対応 */
      @media (max-width: 768px) {

      .result-report-container {
        flex-direction: column;
      }
      
      .result-report-card {
        width: 100%;
      }
    }
