@charset "utf-8";

/*全体の設定*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}

/*メニューの中身*/
nav {
  background: #1b9aaa;
}
.gnav {
  margin-inline: auto;
  padding: 0.2em 0.5em;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gnav-logo {
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}
.gnav-list {
  text-align: center;
  background: #1b9aaa;
  padding: 0;
  display: flex;
  gap: 10px;
}
.gnav-list li a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.gnav-list li span {
  font-size: 12px;
  display: block;
}