body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9f7f4;
  }
  
  /* ヒーロー画像 */
  .hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  
  .hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .hero-text {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .hero-text h1 {
    color: #fff;
    font-size: 48px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0;
  }
  
  .hero-text h1 {
    color: white;
    font-size: 48px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    margin: 0;
  }
  
  /* セクション共通 */
  .section {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .section h2 {
    font-size: 28px;
    color: #4a3823;
    margin-bottom: 20px;
  }
  
  .section p, .section ul {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
  }
  
  .section ul {
    list-style: disc;
    padding-left: 20px;
  }
  
  .section.light {
    background: #f2efe9;
  }
  
  /* 申し込みボタン */
  .center {
    text-align: center;
  }
  
  .apply-button {
    display: inline-block;
    background: #a67c52;
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .apply-button:hover {
    background: #926d44;
  }
  
  /* フッター */
  footer {
    background-color: #f0ebe4;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
    color: #4a3823;
    font-size: 14px;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-content img {
    height: 50px;
  }
  
  .footer-info p {
    margin: 3px 0;
  }