@charset "UTF-8";

/* ===== 共通メニューバー ===== */

body {
  padding-top: 50px;
}

/* WP管理バーを非表示 */
#wpadminbar { display: none !important; }
body.admin-bar { margin-top: 0 !important; }

.menu {
  width: 100%;
  height: 50px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: space-between;
  align-items: center;
  z-index: 9000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* ハンバーガーボタン */
.menu-toggle {
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* 左ハンバーガーのみ三本線 */
.menu-toggle-left .menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  position: relative;
}

.menu-toggle-left .menu-bar::before,
.menu-toggle-left .menu-bar::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  position: absolute;
  left: 0;
}
.menu-toggle-left .menu-bar::before { top: -7px; }
.menu-toggle-left .menu-bar::after  { top:  7px; }

/* サイドバー内の閉じるボタン */
.menu-toggle-left-close,
.menu-toggle-right-close,
.menu-toggle-search-close {
  width: 100%;
  height: 40px;
  cursor: pointer;
  background-size: 28px;
  background-repeat: no-repeat;
  background-position: center;
}
.menu-toggle-left-close {
  background-image: url('../svg/arrow_left_FILL0_wght400_GRAD0_opsz24.svg');
}
.menu-toggle-right-close,
.menu-toggle-search-close {
  background-image: url('../svg/arrow_right_FILL0_wght400_GRAD0_opsz24.svg');
}

/* 記事ページ専用：TOPリンク */
.menu-top-link {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: #bf0000;
  text-decoration: none;
  white-space: nowrap;
  margin-left: auto;
}
.menu-top-link:hover { opacity: 0.7; }
