
img {
  max-width: 100%;
  height: auto;
}
#header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent; /* 背景を完全に透明に変更 */
  z-index: 1000;
  padding: 10px 0;
}
body {
  padding-top: 120px;
}
@media (max-width: 768px) {
  .right {
    width: 150px !important;
  }
  .logo_name_01 {
    width: 30px !important;
  }
  nav.accordion {
    font-size: 0.9em;
  }
}


/* フェードインアニメーション */
.feedin {
  opacity: 0;
  transition: opacity 1s;
}
.feedin:hover {
  opacity: 1;
}

