@charset "utf-8";

/*
 * ヘッダー
 * --------------------------------
 */

.header {
  margin-bottom: 60px;
}

/* ロゴ */

.title {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

/*
 * ナビゲーション
 * --------------------------------
 */

/* ナビゲーションバー */
.nav {
  margin: 55px 0;
}

.nav-list {
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  display: flex;
  text-transform: uppercase;
}

.nav-list li {
  margin: 0 18px;
}

.nav-list a {
  color: #000;
  text-decoration: none;
}

/* ナビゲーションドロワー */
.nav-drawer {
  display: none;
}

.nav-drawer-button {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 55px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-drawer-button-image {
  display: block;
  width: 40px;
  height: auto;
}

/*
 * レスポンシブ
 * --------------------------------
 */

/* スマートフォン */
@media screen and (max-width: 768px) {
  /* ヘッダー */
  .header {
    display: none;
  }

  /* ナビゲーションドロワー */
  .nav-drawer {
    display: block;
  }
}
