@charset "UTF-8";
img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none !important;
}

ul {
  list-style-type: none;
}

header {
  position: relative;
}

/* ここから下がハンバーガーメニューに関するCSS */
.nav {
  position: absolute;
  top: 6px;
  right: 10px;
}

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100; /* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fefefe;
  transition: 0.5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  padding-top: 24px;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.nav_list li {
  border-bottom: 1px solid #eee;
}
.nav_list li a {
  display: block;
  width: 100%;
  padding: 21px 14px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0; /* メニューを画面に入れる */
}

@media screen and (min-width: 578px) {
  .tight {
    max-width: 780px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=main.css.map */