

/* ---------- ---------- ヘッダー ---------- ---------- */ 

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;
}


/* ----- リンク ----- */ 

.links {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.links h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: #222;
}

.links ul {
  list-style: disc;     /* デフォルトの点付きリスト */
  padding-left: 20px;   /* インデント */
  margin: 0;
}

.links li {
  margin-bottom: 8px;   /* 項目間の間隔 */
}

.links a {
  color: #0077cc;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline; /* ホバーで下線 */
}





/* ---------- ---------- フッター ---------- ---------- */ 


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;
}








