p {
  margin-bottom: 0 !important;
}

h1 {
  font-size: 40px;
}

.menu-badge {
  background: #e74c3c;
  color: #fff;
  font-size: 13px;
  border-radius: 50%;
  margin-left: 5px;
  width: 25px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.entry-content.single-content,
.content-area {
  padding: 2rem;
}

/* ヘッダー全体 */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 50px 0;
  position: relative;
  min-height: 100vh;
  position: static;
  z-index: 999;
}

/* 内部を左右に分ける */
.header-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 左右に配置 */
  align-items: center;
  /* 縦位置を中央揃え */
  max-width: 1200px;
  margin: 0 auto;
  position: sticky;
  top: 50px;
}

/* ロゴ */
.site-branding a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #111;
}

/* ナビゲーション */
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  /* 各項目の間隔 */
}

.site-nav li {
  display: inline-block;
}

.site-nav a {
  text-decoration: none;
  color: #3a3a3a;
  font-size: 16px;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: #0073e6;
  /* ホバー時に青色 */
}

.hed-and-main {
  flex-direction: row;
  display: flex;
}

header {
  /* width: 300px; */
  min-width: 300px;
}

.header-inner {
  min-width: 300px;
}

.logout-btn {
  background: #f5f5f5;
  padding: 20px;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #888888;
}

.logout-btn:hover {
  background-color: #b60303;
}

.ttl {
  text-align: center;
}

.ttl a {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  text-align: center;
  text-decoration: none;
}

.pc-nav {
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.pc-nav ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  align-items: center;
  margin: 0;
  width: 100%;
}

.pc-nav li a {
  text-decoration: none;
  color: #000;
  text-align: center;
  display: flex;
}

@media(max-width:1024px) {
  .pc-nav {
    display: none;
  }

  .logout-btn {
    display: none;
  }

  .logout-sp {
    display: block;
  }

  .site-headet-content {
    width: 100%;
    padding: 10px 30px;
  }

  .site-header-tp {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  main#inner-wrap {
    padding-top: 100px;
  }


}

/* ハンバーガーアイコン */
.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #111;
  border-radius: 2px;
}

/* サイドメニュー */
.side-menu {
  position: fixed;
  top: 0;
  right: -200px;
  /* 初期は隠す */
  width: 200px;
  height: 100%;
  background: #111111c9;
  color: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  z-index: 1002;
  padding: 60px 20px 20px;
}

.side-menu.open {
  right: 0;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu ul li {
  text-align: center;
  padding: 16px 0;
}

.side-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.side-menu ul li a:hover {
  text-decoration: underline;
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: 1px solid #ffcc00;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  border-radius: 4px;
}

/* オーバーレイ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1001;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ポイント画面で上部に余白 */
.product-title.product-above {
  margin-top: 50px;
}

/* メディアクエリ */
@media (max-width: 1024px) {
  .hed-and-main {
    flex-direction: column;
  }

  header {
    width: 100%;
    max-width: none;
    padding: 30px;
  }

  .ttl {
    margin: 0;
  }

  .site-header {
    min-height: auto;
    padding: 10px 0;
  }

  .header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    /* position: relative; */
  }

  .menu-toggle {
    display: flex;
    margin: auto 0;
  }

  .site-nav {
    /* 既存の横並びメニュー */
    display: none;
  }

  .entry-content.single-content,
  .content-area {
    padding: 2rem 15px;
  }


}