/* スワイプ型セクション全体調整 */
.section {
    width: 100%;
    height: 100vh !important; /* fullPage で必須 */
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  /* 共通ラッパーを作って中央揃え調整 */
  .section > .inner {
    flex: 1;
    max-width: 1200px;
    margin: auto;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  /* ヘッダー固定＆重ならない高さ設定 */
  .header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }
  .section:first-of-type .inner {
    padding-top: 80px; /* ヘッダーの高さ分を空ける */
  }
  
  /* Hero セクション */
  #hero {
    position: relative;
    background: none;
    padding-top: 80px;
  }
  #hero .hero-content {
    width: 100%;
    height: calc(100vh - 80px);
  }
  

  
  /* 居心地よいテキスト余白 */
  .section h2 {
    margin-top: 0;
    margin-bottom: 1em;
  }
  
  /* フォームセクションを中央寄せ */
  #contact .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  /* コンテナ内ボタンの見栄え調整 */
  .contact-btn {
    width: auto;
    max-width: 300px;
  }
  
  /* フッター調整 */
  footer .footer-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  /* モバイル対応 */

  
  /* smooth scroll for anchor */
  html {
    scroll-behavior: smooth;
  }
  