/* 全体のレイアウト */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
  }
  
  /* ヘッダー */
  header {
    background-color: #ADEBB3;
    color: #fff;
    padding: 0.3rem;
    text-align: center;
    font-family: "Zen Kurenaido", sans-serif;
  }

  header h1 {
  margin: 0; /* ブラウザのデフォルト余白を削除 */
  font-size: 1.8rem;
  line-height: 1.4; /* 行間をやや詰める */
}

  
  /* アクセス情報セクション */
  .access-info {
    margin: 1rem;
  }
  
  .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;
  }
}

/* --- ホームボタン --- */
.home-button {
    position: fixed;
    top: 25px;
    right: 30px;
    background: rgba(255, 255, 255, 0.8);
    color: #2c5aa0; /* ミントと合う落ち着いた青系 */
    font-size: 1rem;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.home-button:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
