

/* ---------- ---------- ヘッダー ---------- ---------- */ 

header {
  display: flex;
  width: 100%;
  top: 0;
  height: 80px;
  background-color: #cccccc;
  align-items: center;
  position: fixed;

}

 
.title {
  margin-left: auto;
  margin-right: auto;
}

.title h1 {
  margin: 0;
}

.title p {
  margin: 0;
}


.nav{
  margin-left: auto;
  margin-right: auto;
}


.menu-item {
  list-style: none;
  display: inline-block;
  padding: 10px;
}



/* ---------- ---------- メイン ---------- ---------- */ 


main {
  background-color: #ffffff;
  padding-top: 80px;
  width: 100%;
  height: auto;
}


/* ----- アクセス ----- */ 

.access {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.access h2 {
  text-align: center;
  margin-bottom: 24px;
}

.access-info {
  margin-bottom: 24px;
  line-height: 1.6;
}

/* 地図 */
.map {
  width: 100%;
  height: auto;
  margin-top: 30px;
  margin-bottom: 16px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Googleマップリンク */
.map-link {
  text-align: center;
}

.map-link a {
  color: #0077cc;
  text-decoration: none;
}

.map-link a:hover {
  text-decoration: underline;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .map {
    height: 300px;
  }
}






/* ---------- ---------- フッター ---------- ---------- */ 


footer {
  display: flex;             /* 横並び */
  justify-content: space-between; /* 左右に広げる */
  align-items: center;       /* 縦中央揃え */
  padding: 16px 20px;
  background-color: #333;
  color: #fff;
  font-size: 0.9rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-left,
.footer-right {
  /* それぞれ特別な指定は不要 */
  margin-left: auto;
  margin-right: auto;
}








