/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 24 2025 | 09:41:03 */
/* ハンバーガーボタン */
.hamburger {
  position: fixed;
  top: 40px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.hamburger img {
  width: 100%;
  height: auto;
  display: block;
}

/* メニュー画面 */
.full-screen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
  overflow-y: auto;
}

/* 表示状態 */
.full-screen-menu.menu-active {
  transform: translateY(0);
}

/* メニューリスト */
.full-screen-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.full-screen-menu li {
  margin: 20px 0;
}

.full-screen-menu a {
  font-size: 24px;
  color: #333;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: inline-block;
}

.full-screen-menu a:hover {
  background-color: rgba(0, 115, 170, 0.1);
  color: #0073aa;
  transform: scale(1.05);
}

/* モバイル調整 */
@media (max-width: 991px) {
  .hamburger {
    top: 60px;
  }
}

/* スクロールロック時の body */
body.menu-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}
