@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;700&display=swap');
/* ===========================
   ハッスル倶楽部 style.css
   =========================== */

/* カラー定義 */
:root {
  --orange: #FF8A00;
  --orange-light: #FFF0DC;
  --orange-dark: #C86E00;
  --brown: #5B3A1E;
  --bg: #FAFAF8;
  --border: #E8E6DF;
  --text: #2C2C2A;
  --text-sub: #5F5E5A;
}

/* リセット */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.8;
  font-size: 16px;
}
a { color: var(--orange-dark); text-decoration: none; }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; display: block; }

/* レイアウト */
.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }

/* ===== ヘッダー ===== */
#Header {
  background: #fff;
  border-bottom: 2px solid var(--orange);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
#Header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#Header .logo img { height: 52px; width: auto; }
#Header .logo a { display: block; }

/* グローバルナビ */
#GlobalNav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}
#GlobalNav ul li a {
  font-size: 13px;
  color: var(--text-sub);
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
#GlobalNav ul li a:hover,
#GlobalNav ul li.current a {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ===== ハンバーガーボタン ===== */
#MenuToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 300;
}
#MenuToggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}
#MenuToggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#MenuToggle.active span:nth-child(2) {
  opacity: 0;
}
#MenuToggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== ヒーロー ===== */
#Hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
#Hero .hero-copy {
  background: var(--orange);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#Hero .hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 16px;
}
#Hero .hero-main {
  font-family: 'Shippori Mincho', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 12px;
}
#Hero .hero-sub {
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  color: #fff;
  opacity: 0.95;
  margin-bottom: 32px;
  line-height: 1.9;
}
#Hero .hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
#Hero .btn-white {
  padding: 8px 20px;
  border-radius: 6px;
  background: #fff;
  color: var(--brown);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
#Hero .btn-outline {
  padding: 8px 20px;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  border: 1.5px solid rgba(255,255,255,0.7);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
#Hero .hero-photo {
  overflow: hidden;
  min-height: 480px;
}
#Hero .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
}

/* ===== セクション共通 ===== */
.section { padding: 48px 0; }
.section-alt { padding: 28px 0; background: var(--bg); }
.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brown);
}
.section-sub {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 28px;
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}
.link-more { font-size: 13px; color: var(--orange-dark); }

/* ===== カードグリッド ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.card-img { height: 140px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 14px 10px; }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--orange-light);
  color: var(--brown);
  margin-bottom: 8px;
}
.card-title {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text);
}

/* ===== ショップカード ===== */
.shop-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  align-items: center;
}
.shop-thumb {
  width: 70px;
  height: 70px;
  background: var(--orange-light);
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}
.shop-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shop-name { font-size: 15px; font-weight: 600; }
.shop-sub { font-size: 12px; color: var(--text-sub); margin-top: 2px; }
.shop-link { font-size: 12px; color: var(--orange-dark); margin-top: 6px; }

/* ===== 夢中のススメカード ===== */
.muschu-card { padding: 20px; }
.muschu-icon { font-size: 32px; margin-bottom: 10px; }
.muschu-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.muschu-desc { font-size: 13px; color: var(--text-sub); line-height: 1.7; }

/* ===== 倶楽部についてバナー ===== */
#AboutBanner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: var(--orange-light);
  border-radius: 10px;
  margin: 48px 0;
}
#AboutBanner .about-text .title { font-size: 16px; font-weight: 600; }
#AboutBanner .about-text .sub { font-size: 13px; color: var(--text-sub); margin-top: 4px; }
#AboutBanner .banner-logo {
  width: auto;
  height: auto;
  max-height: 36px;
  display: block;
}
#AboutBanner .btn-ghost {
  padding: 8px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 138, 0, 0.35);
  color: var(--brown);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

/* ===== フッター ===== */
#Footer {
  background: var(--brown);
  color: rgba(255,255,255,0.8);
  padding: 32px 0;
}
#Footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
#Footer .footer-logo { font-size: 16px; font-weight: 600; color: #fff; }
#Footer .footer-nav { display: flex; gap: 20px; }
#Footer .footer-nav a { font-size: 12px; color: rgba(255,255,255,0.7); }
#Footer .footer-nav a:hover { color: #fff; }
#Footer .copyright { font-size: 11px; color: rgba(255,255,255,0.5); width: 100%; text-align: center; margin-top: 16px; }

/* ===== ブログ ===== */
#Blog { padding: 48px 0; }
.blog-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-article .card-img { height: 180px; }
.blog-article .date { font-size: 12px; color: var(--text-sub); margin-bottom: 4px; }

/* ===== トップページ お知らせセクション ===== */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
}
.news-list .blog-article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}
.news-list .blog-article .card-img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--orange-light);
}
.news-list .blog-article .card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.news-list .blog-article .date {
  font-size: 13px;
  line-height: 1;
  color: var(--text-sub);
  margin: 0;
  flex-shrink: 0;
}
.news-list .blog-article .card-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin: -10px 0 0;
}
.news-list .blog-article .card-body {
  padding: 0;
}

/* ===== 固定ページ ===== */
#Contents { padding: 48px 0; }
#Contents h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brown);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 12px;
}
#Contents p { margin-bottom: 20px; line-height: 1.9; }

/* ===== 固定ページタイトル ===== */
.pageTitleBody {
  background: var(--orange-light);
  padding: 32px 0;
  margin-bottom: 40px;
}
.pageTitleBody h1 {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 26px;
  font-weight: 600;
  color: var(--brown);
  border-left: 4px solid var(--orange);
  padding-left: 16px;
}

/* ===== 固定ページ h1 ===== */
#Wrap h1 {
  font-size: 26px;
  font-weight: 600;
  color: var(--brown);
  border-left: 4px solid var(--orange);
  padding-left: 16px;
  margin: 40px auto 32px;
  max-width: 960px;
  padding-right: 20px;
}

/* ===== 作成日・更新日を非表示 ===== */
.update-info {
  display: none;
}

/* ===== 固定ページ本文 ===== */
#Wrap {
  padding-bottom: 48px;
}
#Wrap p,
#Wrap h2 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
#Wrap p {
  margin-bottom: 20px;
  line-height: 1.9;
}
#Wrap h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  padding: 14px 20px;
  margin: 40px auto 24px;
  max-width: 960px;
  scroll-margin-top: 90px;
}
#Wrap h3 {
  max-width: 960px;
  margin: 32px auto 12px;
  padding: 0 20px;
  font-size: 19px;
  font-weight: 600;
  color: var(--brown);
  scroll-margin-top: 90px;
}

/* ===== 商品詳細ページ専用コンテナ ===== */
.product-page {
  max-width: 960px;
  margin: 32px auto 0;
  padding: 0 20px;
}
#Wrap .product-page h4 {
  font-size: 16px;
  color: var(--brown);
  margin: 24px 0 8px;
}
#Wrap .product-page p {
  margin-bottom: 20px;
  line-height: 1.9;
  max-width: none;
  padding: 0;
}

/* ===== ショップ商品写真 ===== */
.product-photo {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 24px;
  display: block;
  border-radius: 10px;
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .blog-list { grid-template-columns: 1fr; }
  #Hero { grid-template-columns: 1fr; }
  #Hero .hero-photo { height: 200px; min-height: 200px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-2 { grid-template-columns: 1fr; }
  #AboutBanner { flex-direction: column; gap: 10px; padding: 16px 20px; text-align: center; }
  #AboutBanner .banner-logo { max-height: 28px; margin: 0 auto; }

  #MenuToggle { display: flex; }

  #GlobalNav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0,0,0,0.1);
    transition: right 0.3s;
    z-index: 250;
    padding: 80px 24px 24px;
  }
  #GlobalNav.active { right: 0; }
  #GlobalNav ul {
    flex-direction: column;
    gap: 20px;
  }
  #GlobalNav ul li a {
    font-size: 15px;
    color: var(--text);
  }
}