
/* メインコンテンツを上下左右中央に配置（上から100px） */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    text-align: center;
    margin-top: 100px;
}

  /* タイトル（他とフォント揃え） */
  .title {
    font-size: 1.1em;
    font-weight: 400;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #f5f5f5;
    margin-bottom: 4px;
    margin-top: 0;
  }

  /* タイトル下の地名（他とフォント揃え） */
  main > p {
    font-size: 12px;
    font-weight: 400;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #a0a0a0;
    margin: 0;
    line-height: 1.5;
  }

  
  
  /* サブページ全般のスタイル */
  body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #f5f5f5;
    line-height: 1.2; /* 行間を詰める */

  }


  
  /* サブページ専用: 縦1列の画像リスト（A.html等） */
  .vertical-image-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 20px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .vertical-image-list li {
    margin-bottom: 8px;
    width: 70%;
    background: transparent;
    position: relative;
    overflow: hidden;
    border: none;
  }
  .vertical-image-list li:last-child {
    margin-bottom: 0;
  }
  
  /* 白線・白オーバーレイを出さないよう無効化 */
  .vertical-image-list li::after {
    content: none;
    display: none;
  }
  
  .vertical-image-list img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background: transparent;
    position: relative;
    z-index: 1;
    display: block;
    vertical-align: top;
    line-height: 0;
  }
  
  @keyframes skeleton-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }









/* Aboutセクションをグリッドで配置 */
.about-section {
  display: grid; /* グリッドレイアウトを使用 */
  grid-template-columns: 1fr 1fr; /* 2カラムのグリッド */
  gap: 50px; /* 各グリッドアイテムの間の余白 */
  margin: 0 auto; /* 中央揃え */
  padding: 0 10%; /* 左右に10%の余白 */
  align-items: start; /* 上端揃え */
}

/* 文章部分 */
.about-text {
  grid-column: 1; /* 左カラムに配置 */
  font-size: 16px;
  line-height: 1.8; /* 行間を調整して読みやすく */
  text-align: left; /* 左揃え */
  display: flex;
  flex-direction: column; /* 縦方向に揃える */
  gap: 10px; /* 段落間の余白 */
}

/* 画像部分 */
.about-images {
  grid-column: 2; /* 右カラムに配置 */
  display: flex; /* 画像を縦に並べる */
  flex-direction: column; /* 縦並び */
  gap: 10px; /* 各画像の間に隙間 */
}

.about-images img {
  width: 100%; /* 画像の幅を親要素に合わせる */
  height: auto; /* アスペクト比を維持 */
  object-fit: cover; /* 必要に応じて拡大縮小 */
}

/* about-section2 のスタイル */
.about-section2 {
  width: 80%; /* 幅を全体の80%に設定 */
  margin: 30px auto; /* 上下に間隔を追加して中央揃え */
  text-align: center;
}

.about-section2 img {
  width: 100%; /* 画像の幅を親要素に合わせる */
  height: auto;
  display: block;
  margin: 0 auto;
}


/* about-section3 のスタイル */
.about-section3 {
  width: 40%; /* 幅を全体の80%に設定 */
  margin: 20px auto; /* 上下に間隔を追加して中央揃え */
  text-align: center;
}

.about-section3 img {
  width: 20%; /* 画像の幅を親要素に合わせる */
  height: auto;
  display: block;
  margin: 0 auto;
}









  
  
  /* レスポンシブ対応 */
  @media (max-width: 900px) {
  }


  
  @media (max-width: 600px) {
    .vertical-image-list li {
      width: 90%;
    }
    .title {
      font-size: 1.6em;
    }
    body {
      font-size: 14px;
    }
    .hamburger-menu {
      display: flex; /* 画面幅が小さいときに表示 */
    }
    .nav-left {
      display: none; /* 通常ナビゲーションは非表示 */
    }
    .nav-right {
      justify-content: flex-start; /* 左寄せ */
      margin-right: 0; /* 右側の余白をリセット */
      padding-left: 0px; /* 必要なら左に余白を追加 */
      text-align: left; /* 文字の左揃え */
      display: flex;
      margin-left: -20px; /* ヘッダーの高さ分だけ余白を追加 */
    }
    .nav-right .nav-button {
      text-align: left; /* 各リンクの文字を左揃え */
    }
    .image-list li {
      width: 100%; 
      max-width: 1200px; /* 必要に応じて最大幅を設定 */
      /* width: 80%; 1列表示に変更 */
    }

      /* about-section3 のスタイル */
  .about-section3 {
    width: 60%; /* 幅を全体の80%に設定 */
    margin: 20px auto; /* 上下に間隔を追加して中央揃え */
    text-align: center;
  }

  .about-section3 img {
    width: 20%; /* 画像の幅を親要素に合わせる */
    height: auto;
    display: block;
    margin: 0 auto;
  }





    
  }


  
  @media (max-width: 400px) {
    .vertical-image-list li {
      width: 100%;
    }
    .title{
      font-size: 18px; /* フォントサイズを少し小さく */
    }

    body {
      font-size: 12px;
    }
  }
  




  
