/* 全体のレイアウト */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
  }
  
  /* ヘッダー */
  header {
    background-color: #ADEBB3;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 2rem;
  }
  
  /* アクセス情報セクション */
  .access-info {
    margin: 20px;
  }
  
  .access-info h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: "Zen Kurenaido", sans-serif;
  }
  
  .access-info p {
    font-size: 1.2rem;
    color: #333;
    font-family: "Zen Kurenaido", sans-serif;
  }
  
  /* Googleマップセクション */
  .map {
    margin: 20px;
    font-family: "Zen Kurenaido", sans-serif;
  }
  
  .map-container {
    position: relative;
    width: 70%;
    padding-bottom: 56.25%; /* アスペクト比16:9の維持 */
    height: 70%;
    overflow: hidden;
    margin: 0 auto; /* 中央揃え */
    text-align: center;
  }
  
  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* フッター */
  footer {
    background-color: #ADEBB3;
    color: #fff;
    text-align: center;
    padding: 10px;
  }
  

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .access {
      flex-direction: column;
      padding: 1rem;
  }

  .map-container, .info {
      width: 90%;
      margin: 0.5rem auto;
  }

  header {
      padding: 0.5rem;
  }

  h1 {
      font-size: 1.5rem;
  }

  h2 {
      font-size: 1.2rem;
  }
}