
  /* --------------------------------------------------
   ヒーローヘッダー
-------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  top: 50px;
  height: 450px; /* 少し高さを増やして迫力を出す */
  overflow: hidden; /* ズームではみ出した部分をカット */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  background-color: #333; /* 画像読み込み前の保険の色 */
}

/* 背景画像（動かすために別レイヤーにします） */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://event21.co.jp/pic/campyouhin_back.jpg"); /* ★画像パスはそのまま */
  background-size: cover;
  background-position: center;
  z-index: 1;
  /* 魔法の動き：ゆっくりズームアウト */
  animation: zoomEffect 20s linear infinite alternate;
}
/* タイトル文字の設定（ふわっと出す） */
.hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  text-align: center;
  /* 文字がふわっと浮き出るアニメーション */
  animation: fadeUp 1.5s ease-out forwards;
  opacity: 0; /* 最初は隠しておく */
}

.hero-content h1 {
  color: #ffffff !important;
  font-size: 2.4rem; /* 文字サイズ微調整 */
  font-weight: bold;
  line-height: 1.6;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
  margin: 0;
  letter-spacing: 0.05em; /* 文字の間隔を少し広げて優雅に */
}
  
/* ▼ アニメーションの定義（ここもコピーしてください） ▼ */
@keyframes zoomEffect {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); } /* 1.15倍までゆっくり拡大 */
}

@keyframes fadeUp {
  0% { 
    opacity: 0; 
    transform: translateY(20px); /* 少し下から */
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); /* 元の位置へ */
  }
}


/* ヘッダーここまで */


/* スマホ用の調整 */
@media (max-width: 768px) {
  .hero-section { height: 300px; }
  .hero-content h1 { font-size: 1.3rem; line-height: 1.5; }
}

  .message_box1 { text-align: center; }
  .message_box1 h2 { font-size: 2rem; font-weight: 600; padding: 0; margin: 5% 0 0; }
  .message_box1 h3 { font-size: 2rem; line-height: 3.5rem; padding: 1rem; }
  .message_box1 p {
    margin: 5% 0 3%;
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
  /* ボタン */


  
  /* キャンプ用テント 4カラムカードレイアウト用CSS */
  .tent-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* PC時は4カラム均等 */
    gap: 20px; /* カード間の余白 */
    margin: 20px 0;
  }
  
  .tent-card {
    border: 1px solid #C0C0C0; /* 枠線あり */
    border-radius: 0; /* 角丸なし */
    padding: 15px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center; /* 要素を中央寄せ */
    text-align: center; /* テキスト中央寄せ */
  }

  .tent-card-img {
    margin-bottom: 15px;
  }

  .tent-card-img img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .tent-card-text {
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
  }

  .tent-card-text a {
    font-weight: bold;
    text-decoration: none;
    color: #333; /* 既存のリンク色に合わせて適宜変更してください */
  }

  .tent-card-text a:hover {
    text-decoration: underline;
  }

  /* タブレットサイズ（992px以下）は2カラムに自動変更 */
  @media screen and (max-width: 992px) {
    .tent-grid-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* スマホサイズ（576px以下）は1カラムに自動変更 */
  @media screen and (max-width: 576px) {
    .tent-grid-container {
      grid-template-columns: 1fr;
    }
  }

  /* ★新しく追加：セクション全体を中央に寄せ、左右に余白を作る設定 */
  .atarget {
    max-width: 1200px;       /* コンテンツが広がりすぎない最大幅（会社規定の幅に調整してください） */
    margin-left: auto;       /* 左右中央寄せ */
    margin-right: auto;      /* 左右中央寄せ */
    padding-left: 30px;      /* 画面端と中身の間に開ける左の余白 */
    padding-right: 30px;     /* 画面端と中身の間に開ける右の余白 */
    box-sizing: border-box;  /* 余白を含めたサイズ計算にする設定 */
  }

  /* ――― 以下は前回のコード（そのまま連動します） ――― */
  .tent-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
  }
  
  .tent-card {
    border: 1px solid #C0C0C0;
    border-radius: 0;
    padding: 15px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tent-card-img {
    margin-bottom: 15px;
  }

  .tent-card-img img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .tent-card-text {
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
  }

  .tent-card-text a {
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }

  .tent-card-text a:hover {
    text-decoration: underline;
  }

  @media screen and (max-width: 992px) {
    .tent-grid-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (max-width: 576px) {
    .tent-grid-container {
      grid-template-columns: 1fr;
    }
    /* スマホ時は少し余白を狭めて画面を広く使う */
    .atarget {
      padding-left: 15px;
      padding-right: 15px;
    }
  }

  /* ★【新設】メニューが画面幅に入り切らなくなる環境（目安：1450px以下）では、
     左詰めに自動で切り替えて、正常にスワイプ・スクロールできるようにする設定 */
  @media screen and (max-width: 1450px) {
    #alinklist ul {
      justify-content: flex-start;
    }
  }

  #alinklist li {
    flex: 0 0 auto;            /* 各メニューの幅が縮まないように固定 */
    margin-right: 50px;        /* メニュー同士の横の隙間（サイズに合わせて広げました） */
  }

  #alinklist li:last-child {
    margin-right: 0;           /* 一番最後の要素の右側の隙間は無しにする */
  }

  #alinklist li a {
    display: flex;
    align-items: center;       /* 画像と文字を縦中央で綺麗に揃える */
    text-decoration: none;
    color: #333;
    font-size: 32px;           /* ★【2倍】文字サイズを 16px → 32px に変更 */
    font-weight: bold;
  }

  #alinklist img {
    margin-right: 20px;        /* 画像と文字の間の隙間 */
    height: 100px;             /* ★【2倍】画像の縦幅を 50px → 100px に変更 */
    width: auto;
  }


  /* 挿入したバナーを中央寄せにして余白を作る設定 */
  .middle-banner-container {
    text-align: center;      /* 画像を中央寄せ */
    margin: 40px 0;          /* 上下に40pxの程よい余白を開ける */
    width: 100%;
  }

  .middle-banner-container img {
    max-width: 100%;         /* 画面からはみ出さないようにする */
    height: auto;            /* 縦横比を維持 */
    display: inline-block;
  }
  
  /* スマホの時は上下の余白を少し狭める調整 */
  @media screen and (max-width: 576px) {
    .middle-banner-container {
      margin: 25px 0;
    }
  }
  
  /* ==========================================
     区切り線 ＆ メイン見出しパーツの専用CSS
     ========================================== -->
  .custom-section-divider {
    width: 100%;
    margin-top: 40px;        
    margin-bottom: 25px;     
    box-sizing: border-box;
  }

  /* 1. 右上の注釈テキスト */
  .custom-section-divider .divider-note {
    text-align: right;       /* 右寄せ */
    font-size: 13px;         /* 文字の大きさ */
    color: #666;             /* 文字の色（不透明なグレー） */
    margin-bottom: 6px;
    font-family: sans-serif;
  }
  
  .custom-section-divider .divider-note a {
    color: #0066cc;
    text-decoration: underline;
  }

  /* 2. 太い横線 */
  .custom-section-divider .divider-line {
    border: none;
    border-top: 2px solid #555; /* ★ここの「2px」で太さ、「#555」で線の色を自由に変えられます */
    margin: 0 0 15px 0;
    width: 100%;
  }

  /* 3. 左下のメイン見出し */
  .custom-section-divider .divider-title {
    display: flex;
    align-items: center;     /* 画像と文字の縦の中心をぴったり揃える */
    justify-content: flex-start; /* 左寄せ */
    margin: 0;
    padding: 0;
    text-align: left;
  }

  /* 見出しの横のチェックマーク画像 */
  .custom-section-divider .title-icon {
    height: 24px;            /* ★チェックマークのサイズ（見栄えに合わせて調整可） */
    width: auto;
    margin-right: 10px;      /* 画像と文字の間の隙間 */
    display: inline-block;
    vertical-align: middle;
  }

  /* カテゴリ名のテキスト */
  .custom-section-divider .title-text {
    font-size: 22px;         /* カテゴリ名の文字の大きさ */
    font-weight: bold;
    color: #333;
    font-family: sans-serif;
  }

  /* スマホ表示の時の微調整 */
  @media screen and (max-width: 576px) {
    .custom-section-divider .title-text {
      font-size: 18px;       /* スマホでは文字を少し小さくして収まりを良くする */
    }
    .custom-section-divider .divider-note {
      font-size: 11px;
    }
  }

  .product-list-button-container {
  text-align: center;      /* 画像と同じく中央寄せ */
  margin: 40px 0;          /* バナーの上下に40pxの程よい余白を開ける */
}

/* バナー本体（リンクタグ） */
.product-list-button {
  display: inline-block;   /* 横幅、高さ、パディングを指定できるようにする */
  background-color: #f5f5f5; /* 画像から抽出した非常に明るいグレーの背景色 */
  color: #333;             /* 画像から抽出したダークグレーの文字色 */
  border: 1px solid #ccc;  /* 画像と同じく、細いライトグレーの実線の枠線 */
  border-radius: 0;        /* 画像と同じく、角は丸くしない */
  padding: 10px 40px;      /* 画像のテキスト周囲の余白を見て調整（上下に少し、左右に多め） */
  font-family: sans-serif; /* 画像に合わせた、シンプルでモダンなゴシック体 */
  font-size: 16px;         /* 標準的なバナーテキストサイズ（見え方に合わせて微調整可） */
  text-decoration: none;   /* リンクの下線を消す */
  text-align: center;      /* テキストを中央寄せ */
  cursor: pointer;         /* インタラクティブであることを示す指マーク */
  transition: all 0.3s ease; /* ホバー効果を滑らかにする設定 */
}

/* ★ホバー効果（カーソルを合わせたときの見た目） */
.product-list-button:hover {
  background-color: #e0e0e0; /* ホバー時に少し背景色を暗くする */
  border-color: #aaa;      /* ホバー時に少し枠線の色を暗くする */
  color: #000;             /* ホバー時に文字色を黒にする */
  text-decoration: none;   /* ホバー時も下線は消したまま */
}


/* 親コンテナ (4カラム均等Grid) */
.tent-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC時は4カラム */
  gap: 20px; /* カード間の余白 */
  margin: 20px 0;
  max-width: 1200px; /* 適切な最大幅 */
  margin-left: auto; /* 中央寄せ */
  margin-right: auto;
}

/* 各カード (リンクタグ) */
.tent-card {
  border: 2px solid #ccc; /* ★より太く、はっきりしたグレーの枠線 */
  border-radius: 10px; /* ★角丸 */
  padding: 20px;
  background-color: #fff; /* カード背景は白 */
  display: flex;
  flex-direction: column;
  align-items: center; /* ★要素を中央揃え */
  text-align: center; /* ★テキスト中央寄せ */
  text-decoration: none; /* リンクの下線を消す */
  color: #333; /* 文字色 */
  box-sizing: border-box; /* 余白を含めたサイズ計算 */
  transition: all 0.3s ease; /* ホバー効果を滑らかにする */
}

/* ★ホバー時の効果 */
.tent-card:hover {
  border-color: #aaa; /* ホバー時に枠線の色を少し濃く */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* 影をつける */
}

/* 画像コンテナ */
.tent-card-img {
  margin-bottom: 15px;
}

/* 画像 */
.tent-card-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* テキストコンテナ */
.tent-card-text {
  font-size: 14px;
  line-height: 1.6;
  width: 100%;
}

/* 商品名と型番 */
.tent-card-text .itemname_model {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
}

/* 説明文 */
.tent-card-text .itemdes {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  /* ★3行で省略する設定 */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 料金 */
.tent-card-text .itemprice {
  font-weight: bold;
  color: #FF0000; /* 赤色 */
  margin-top: auto; /* ★説明文の下に料金を配置 */
}

/* スクリプト呼び出し部分のプレースホルダー */
.itemprice .tax10 {
  color: #FF0000;
}

/* スマホ表示の調整 (レスポンス) */
@media screen and (max-width: 992px) {
  .tent-grid-container {
    grid-template-columns: repeat(2, 1fr); /* 2カラムに変更 */
  }
}

@media screen and (max-width: 576px) {
  .tent-grid-container {
    grid-template-columns: 1fr; /* 1カラムに変更 */
  }
}
.tent-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC時は4カラム均等 */
  gap: 20px;                             /* カード同士の隙間 */
  margin: 20px auto;
  max-width: 1200px;                     /* 全体の最大横幅 */
  box-sizing: border-box;
}

/* 各カード（外側のdiv） */
.tent-card {
  border: 2px solid #ccc;       /* しっかりとしたグレーの枠線 */
  border-radius: 10px;          /* 綺麗な角丸 */
  padding: 20px;
  background-color: #fff;       /* カードの背景色 */
  display: flex;
  flex-direction: column;       /* 中身を上から順に縦並びにする */
  align-items: center;          /* 中身を横方向の中央に揃える */
  text-align: center;           /* テキストを中央寄せ */
  box-sizing: border-box;
  transition: all 0.3s ease;    /* マウスホバー時の動きを滑らかに */
}

/* カードにマウスを乗せたときの効果 */
.tent-card:hover {
  border-color: #aaa;           /* 枠線を少し濃くする */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* ほんのり影をつけて浮かす */
}

/* ==========================================
   カード内部のパーツ設定
   ========================================== */

/* 画像エリア */
.tent-card-img {
  margin-bottom: 15px;
  width: 100%;
}

.tent-card-img a {
  display: block;
}

.tent-card-img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;               /* 画像自体を中央寄せ */
}

/* テキストエリア全体 */
.tent-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;                  /* 説明文などの文字色 */
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;                 /* 料金を一番下に固定するための設定 */
}

/* テキスト内の「商品名リンク」 */
.tent-card-text a {
  font-weight: bold;
  font-size: 16px;
  color: #000;                  /* 商品名はキリッと黒色に */
  text-decoration: none;        /* 最初は下線を消しておく */
}

/* 商品名リンクにマウスを乗せたとき */
.tent-card-text a:hover {
  text-decoration: underline;   /* リンクらしく下線を出す */
}

/* 料金表示部分（自動的にカードの最下部に配置されます） */
.tent-card-text .tax10 {
  font-weight: bold;
  color: #FF0000;               /* 料金は目立つ赤色に */
  font-size: 15px;
}

/* ==========================================
   画面サイズに応じた自動切り替え（レスポンシブ）
   ========================================== */

/* タブレットサイズ（992px以下）は2カラムに */
@media screen and (max-width: 992px) {
  .tent-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマートフォンサイズ（576px以下）は1カラムに */
@media screen and (max-width: 576px) {
  .tent-grid-container {
    grid-template-columns: 1fr;
  }
  .tent-card {
    padding: 15px;              /* スマホ時は中の余白を少し狭くしてスッキリさせる */
  }
}

/* ==========================================
   4カラム・カードレイアウト（共通CSS）
   ========================================== */

/* 親コンテナ（4列のグリッド） */
.tent-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC時は4カラム均等 */
  gap: 20px;                             /* カード同士の隙間 */
  margin: 20px auto;
  max-width: 1200px;                     /* 全体の最大横幅 */
  box-sizing: border-box;
}

/* 各カード（外側のdiv） */
.tent-card {
  border: 2px solid #ccc;       /* はっきりしたグレーの枠線 */
  border-radius: 10px;          /* 角丸 */
  padding: 20px;
  background-color: #fff;       /* カードの背景色 */
  display: flex;
  flex-direction: column;       /* 中身を上から順に縦並び */
  align-items: center;          /* 横方向の中央に揃える */
  text-align: center;           /* テキストを中央寄せ */
  box-sizing: border-box;
  transition: all 0.3s ease;    /* マウスホバー時の動きを滑らかに */
}

/* カードにマウスを乗せたときの効果 */
.tent-card:hover {
  border-color: #aaa;           /* 枠線を少し濃く */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* ほんのり影をつけて浮かす */
}

/* 画像エリア */
.tent-card-img {
  margin-bottom: 15px;
  width: 100%;
}

.tent-card-img a {
  display: block;
}

.tent-card-img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;               /* 画像自体を中央寄せ */
}

/* テキストエリア全体 */
.tent-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #444;                  /* 説明文などの文字色 */
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;                 /* 料金を一番下に固定する設定 */
}

/* テキスト内の「商品名リンク」 */
.tent-card-text a {
  font-weight: bold;
  font-size: 16px;
  color: #000;                  /* 商品名は黒色に */
  text-decoration: none;        /* 最初は下線を消しておく */
}

/* 商品名リンクにマウスを乗せたとき */
.tent-card-text a:hover {
  text-decoration: underline;   /* マウスホバー時に下線を出す */
}

/* 料金表示部分 */
.tent-card-text .tax10 {
  font-weight: bold;
  color: #FF0000;               /* 料金は赤色に */
  font-size: 15px;
}

/* ==========================================
   画面サイズに応じたレスポンシブ設定
   ========================================== */

/* タブレット（992px以下）は2カラム */
@media screen and (max-width: 992px) {
  .tent-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ（576px以下）は1カラム */
@media screen and (max-width: 576px) {
  .tent-grid-container {
    grid-template-columns: 1fr;
  }
  .tent-card {
    padding: 15px;              /* スマホ時は余白を狭めてスッキリさせる */
  }
}


tent-grid-container {
  display: grid;
  /* ↓ 変更ポイント：1枚あたり最低でも「220px」の幅を保証し、入り切らないと自動で下へ回り込む */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 20px;                             /* カード同士の隙間 */
  margin: 20px auto;
  max-width: 1200px;                     /* 全体の最大横幅 */
  width: 100%;                           /* 横幅いっぱいに広げる */
  box-sizing: border-box;
}

/* 各カード（外側のdiv） */
.tent-card {
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  min-width: 0;                          /* Grid内での予期せぬはみ出しを防止 */
  transition: all 0.3s ease;
}

.tent-grid-container {
  display: grid;
  /* ↓ 変更ポイント：1枚あたり最低でも「220px」の幅を保証し、入り切らないと自動で下へ回り込む */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 20px;                             /* カード同士の隙間 */
  margin: 20px auto;
  max-width: 1200px;                     /* 全体の最大横幅 */
  width: 100%;                           /* 横幅いっぱいに広げる */
  box-sizing: border-box;
}

/* 各カード（外側のdiv） */
.tent-card {
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  min-width: 0;                          /* Grid内での予期せぬはみ出しを防止 */
  transition: all 0.3s ease;
}
.product-list-button-container {
    display: block;        /* ★念のため追加：確実なブロック要素にする */
    width: 100%;           /* ★念のため追加：横幅を100%に広げる */
    text-align: center;    /* 中にあるボタンを中央寄せにする */
    margin: 30px 0;        /* ボタンの上下の隙間（適宜変えてください） */
    clear: both;           /* 周りのまわり込みを解除するお守り */
  }

  /* ボタン本体のデザイン（前回と同じです） */
  .product-list-button {
    display: inline-block;
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 8px;      /* 角丸 */
    padding: 10px 40px;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* ホバー効果 */
  .product-list-button:hover {
    background-color: #f9f9f9;
    border-color: #aaa;
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* 浮き上がる影 */
    transform: translateY(-2px);             /* 少し上に持ち上げる */
  }
  <style>
  /* 電池の注意書きカード専用の設定 */
  .battery-notice-card {
    background-color: #fffde6;  /* ★注意書きだと分かりやすいように、ごく薄い黄色に */
    border: 2px dashed #ff9900; /* ★ここだけ親切に「オレンジ色の点線枠」にして目立たせます */
    justify-content: center;    /* 中の文章を上下の真ん中に配置 */
  }

  /* blockquoteタグのブラウザ標準の邪魔な余白（マージン）を消す設定 */
  .battery-notice-card blockquote {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
  }

  /* 「電池について」の見出し部分 */
  .battery-notice-card blockquote strong {
    font-size: 18px;            /* 文字を少し大きく */
    color: #d32f2f;             /* 警告・注意を促す落ち着いた赤色 */
    display: inline-block;
    margin-bottom: 10px;        /* 下の文章との間に隙間を作る */
  }

<style>
  /* 有事の際の備えカード専用の設定 */
  .emergency-notice-card {
    background-color: #fff5f5;  /* ★防災・安全の注意書きとして優しい薄赤色に */
    border: 2px dashed #d32f2f; /* ★赤色の点線枠でしっかり目立たせます */
    justify-content: center;    /* 中の文章を上下の真ん中に配置 */
  }

  /* blockquoteタグの不要な余白（マージン）を消す設定 */
  .emergency-notice-card blockquote {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
  }

  /* 「有事の際の備えに」の見出し部分 */
  .emergency-notice-card blockquote strong {
    font-size: 18px;            /* 文字を少し大きく */
    color: #c62828;             /* 信頼感のある濃い赤色 */
    display: inline-block;
    margin-bottom: 10px;        /* 下の文章との間に隙間を作る */
  }

  <style>
  /* ==========================================
     全体の土台（すべての要素の左右ラインを揃える）
     ========================================== */
  .atarget {
    max-width: 1200px;        /* ★コンテンツ全体の最大横幅 */
    margin-left: auto;        /* 左右中央寄せ */
    margin-right: auto;
    padding-left: 20px;       /* 画面端に張り付かないためのクッション */
    padding-right: 20px;
    box-sizing: border-box;
    font-family: sans-serif;
  }

  /* ① パンくずリストの綺麗で上品な配置 */
  .breadcrumb {
    display: flex;
    justify-content: flex-end; /* ★右寄せにする */
    flex-wrap: wrap;
    list-style: none;
    padding: 15px 0 0 0;
    margin: 0;
    font-size: 13px;
    color: #666;
  }
  .breadcrumb li + li::before {
    content: "＞";             /* 区切り文字 */
    padding: 0 8px;
    color: #ccc;
  }
  .breadcrumb a {
    color: #333;
    text-decoration: none;
  }
  .breadcrumb a:hover {
    text-decoration: underline;
  }

  /* ② メインタイトルエリア */
  .page-header-area {
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: left;         /* 左寄せ */
  }
  .page-main-title {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin: 0 0 8px 0;
  }
  .page-sub-title {
    font-size: 15px;
    color: #666;
    margin: 0;
  }

  /* ③ オレンジバー（既存の装飾を活かしつつ余白調整） */
  .orangebar {
    margin-top: 20px;
    margin-bottom: 25px;
  }

  /* ④ メニューの案内テキスト */
  .nav-guide-text {
    text-align: center;       /* 中央寄せ */
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-guide-text img {
    margin-right: 8px;
    vertical-align: middle;
  }
  #alinklist li {
    flex: 0 0 auto;
    margin-right: 45px;       /* メニューごとの程よい隙間 */
  }
  #alinklist li:last-child {
    margin-right: 0;
  }

  /* メニュー内のリンクと大きな文字設定 */
  #alinklist li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #111;
    font-size: 26px;          /* ★文字サイズを見やすく大きく調整 */
    font-weight: bold;
    transition: color 0.2s;
  }
  #alinklist li a:hover {
    color: #ff9900;           /* ホバー時にブランドカラーへ */
  }
  #alinklist img {
    margin-right: 15px;
    height: 70px;             /* ★画像のサイズを美しく統一 */
    width: auto;
    object-fit: contain;
  }

  /* ⑥ メニューの下のグレーの線 */
  .menu-bottom-line {
    border: none;
    border-top: 3px solid #dddddd; /* 線を少し太くしてスタイリッシュに */
    margin: 10px 0 40px 0;
    width: 100%;
  }

  /* ==========================================
     スマホ表示の時の微調整
     ========================================== */
  @media screen and (max-width: 576px) {
    .atarget {
      padding-left: 15px;
      padding-right: 15px;
    }
    .page-main-title {
      font-size: 22px;
    }
    .page-sub-title {
      font-size: 13px;
    }
    #alinklist li a {
      font-size: 18px;        /* スマホではメニュー文字を少しコンパクトに */
    }
    #alinklist img {
      height: 45px;           /* スマホでは画像もコンパクトに */
    }
    .breadcrumb {
      font-size: 11px;
    }
  }
  <style>
  /* ==========================================
     横スクロールメニュー（茶色バーと横幅を100%完全同期）
     ========================================== */
  #alinklist {
    /* ★重要：親の1200px制限を突破して、画面の左端から右端（100vw）まで強制的に引き延ばす指定 */
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    
    overflow-x: auto;          /* 横スクロールを許可 */
    white-space: nowrap;       /* 自動折り返しを禁止 */
    -webkit-overflow-scrolling: touch; /* スマホで滑らかに */
    cursor: grab;              /* マウスを掴める手のアイコンに */
    padding: 15px 0;           /* 上下の程よい余白 */
    margin: 0;
    user-select: none;         /* ドラッグ時のテキスト選択を防止 */
    box-sizing: border-box;
    background-color: #fff;    /* 背景を白にして下の要素を遮る */
  }
  #alinklist:active {
    cursor: grabbing;          /* クリック中は掴んでいる手に */
  }

  /* スクロールバーのデザイン（目立ちすぎない薄いグレー） */
  #alinklist::-webkit-scrollbar {
    height: 6px;
  }
  #alinklist::-webkit-scrollbar-thumb {
    background: #dddddd;
    border-radius: 3px;
  }

  /* メニューアイテムのコンテナ（引き延ばしつつ、文字の開始位置を茶色バーと同期） */
  #alinklist ul {
    display: flex;
    flex-wrap: nowrap;         /* 絶対に折り返さない */
    
    /* ★最重要：中のアイテムの並びは1200pxの中央寄せに制限することで、
       下段のコンテンツや茶色バーの文字の左端と、縦のラインを1ミリのズレもなくピッタリ揃えます！ */
    max-width: 1200px;
    margin: 0 auto;            /* 中央寄せ */
    padding: 0 20px;           /* 画面端のクッションを同期 */
    
    list-style: none;
    justify-content: flex-start; /* 左詰めベースで文字切れを防止 */
    box-sizing: border-box;
  }

  #alinklist li {
    flex: 0 0 auto;            /* 各メニューの幅が絶対に縮まないように固定 */
    margin-right: 50px;        /* 幅が広がった分、メニュー同士の隙間を広げてゆったり横並びに */
  }
  #alinklist li:last-child {
    margin-right: 0;           /* 一番最後の要素の右隙間は無し */
  }

  /* メニュー内のリンクと大きな文字設定 */
  #alinklist li a {
    display: flex;
    align-items: center;       /* 画像と文字の縦中心を綺麗に揃える */
    text-decoration: none;
    color: #111;
    font-size: 24px;           /* 文字をハッキリ大きく */
    font-weight: bold;
    transition: color 0.2s;
  }
  #alinklist li a:hover {
    color: #ff9900;            /* マウスを乗せたらオレンジに */
  }
  
  /* メニュー内の画像サイズ調整 */
  #alinklist img {
    margin-right: 15px;        /* 画像と文字の間の隙間 */
    height: 65px;              /* 画像の縦幅を美しく統一 */
    width: auto;
    object-fit: contain;
    display: block;
  }

  /* ⑥ メニューの下のグレーの線（ここも茶色バーと同じく画面いっぱいに引き延ばす） */
  .menu-bottom-line {
    border: none;
    border-top: 3px solid #dddddd; 
    margin: 10px 0 40px 0;
    
    /* ★同じく画面幅いっぱいに引き延ばす指定 */
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  /* スマホ表示の時のサイズ微調整 */
  @media screen and (max-width: 576px) {
    #alinklist ul {
      padding: 0 15px;         /* スマホの画面端の余白に合わせる */
    }
    #alinklist li a {
      font-size: 18px;         /* スマホでは文字を少しコンパクトに */
    }
    #alinklist img {
      height: 45px;            /* スマホでは画像も少しコンパクトに */
    }
    #alinklist li {
      margin-right: 30px;      /* スマホでは隙間を少し詰める */
    }
  }
</style>
<style>
  /* ==========================================
     中央寄せ・デカ文字・スライドなしメニュー
     ========================================== */
  #alinklist {
    width: 100%;
    max-width: 1200px;         /* コンテンツの基本横幅に合わせる */
    margin: 0 auto;            /* 全体の中央寄せ */
    padding: 25px 10px;        /* 上下にゆったりとした余白 */
    box-sizing: border-box;
  }

  #alinklist ul {
    display: flex;
    flex-wrap: wrap;           /* ★スライドなし：画面幅に入り切らない時は綺麗に折り返す */
    justify-content: center;   /* ★最重要：すべての項目を常に中央寄せにする */
    align-items: center;       /* 縦方向の中心を揃える */
    gap: 25px 50px;            /* ★項目同士の隙間（縦に25px、横に50pxの間隔を開ける） */
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #alinklist li {
    flex: 0 1 auto;            /* 画面幅に合わせて柔軟に配置 */
  }

  /* メニュー内のリンクとさらに大きくした文字設定 */
  #alinklist li a {
    display: flex;
    align-items: center;       /* 画像と文字の縦中心をピシッと揃える */
    text-decoration: none;
    color: #111;
    font-size: 28px;           /* ★【さらにデカく】文字サイズを 24px → 28px に拡大 */
    font-weight: bold;
    transition: color 0.2s;
  }
  
  #alinklist li a:hover {
    color: #ff9900;            /* マウスを乗せたらブランドカラーのオレンジに */
  }
  
  /* メニュー内のさらに大きくした画像サイズ調整 */
  #alinklist img {
    margin-right: 18px;        /* 画像と文字の間の隙間を少し広げる */
    height: 85px;              /* ★【さらにデカく】画像の縦幅を 65px → 85px に拡大 */
    width: auto;
    object-fit: contain;
    display: block;
  }

  /* メニューの下のグレーの区切り線 */
  .menu-bottom-line {
    border: none;
    border-top: 3px solid #dddddd; 
    margin: 15px auto 40px auto;
    max-width: 1200px;
    width: 100%;
  }

  /* ==========================================
     スマートフォン表示（画面がかなり狭い時）の微調整
     ========================================== */
  @media screen and (max-width: 600px) {
    #alinklist ul {
      gap: 15px 30px;          /* スマホでは項目同士の隙間を少しきゅっと詰める */
    }
    #alinklist li a {
      font-size: 20px;         /* スマホでは文字サイズを少しコンパクトに */
    }
    #alinklist img {
      height: 55px;            /* スマホでは画像サイズも少しコンパクトに */
      margin-right: 10px;
    }
  }
</style>

<style>
  /* ==========================================
     【特大サイズ】中央寄せ・スライドなしメニュー
     ========================================== */
  #alinklist {
    width: 100%;
    max-width: 1200px;         /* コンテンツの基本幅に合わせる */
    margin: 0 auto;            /* 全体の中央寄せ */
    padding: 40px 10px;        /* サイズ拡大に合わせて上下の余白をゆったり広げる */
    box-sizing: border-box;
  }

  #alinklist ul {
    display: flex;
    flex-wrap: wrap;           /* 画面幅に入り切らない時は綺麗に折り返す */
    justify-content: center;   /* 常にすべての項目を中央寄せにする */
    align-items: center;       /* 画像と文字の縦の中心を揃える */
    gap: 40px 60px;            /* ★項目同士の隙間（縦に40px、横に60pxの広めの間隔に調整） */
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #alinklist li {
    flex: 0 1 auto;
  }

  /* メニュー内のリンクと【特大】文字設定 */
  #alinklist li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #111;
    font-size: 38px;           /* ★【特大文字】28px から 38px に大幅拡大！ */
    font-weight: bold;
    transition: color 0.2s, transform 0.2s;
  }
  
  /* マウスを乗せたときに少しだけフワッと大きく動く楽しいオマケ効果 */
  #alinklist li a:hover {
    color: #ff9900;            /* オレンジ色に変化 */
    transform: scale(1.03);    /* ほんの少し拡大 */
  }
  
  /* メニュー内の【特大】画像サイズ調整 */
  #alinklist img {
    margin-right: 22px;        /* 文字サイズに合わせて隙間を広く */
    height: 120px;             /* ★【特大画像】縦幅を 85px から 120px に大幅拡大！ */
    width: auto;
    object-fit: contain;
    display: block;
  }

  /* メニューの下のグレーの区切り線 */
  .menu-bottom-line {
    border: none;
    border-top: 3px solid #dddddd; 
    margin: 20px auto 50px auto;
    max-width: 1200px;
    width: 100%;
  }

  /* ==========================================
     タブレット・スマホ表示（画面が狭い時）の自動縮小設定
     ========================================== */
  @media screen and (max-width: 992px) {
    #alinklist li a { font-size: 28px; } /* タブレットでは中デカサイズに */
    #alinklist img { height: 90px; }
    #alinklist ul { gap: 25px 40px; }
  }

  @media screen and (max-width: 576px) {
    #alinklist ul { gap: 15px 20px; }   /* スマホでは隙間をきゅっと詰める */
    #alinklist li a { font-size: 20px; } /* スマホ画面に収まるサイズに自動縮小 */
    #alinklist img {
      height: 60px;
      margin-right: 10px;
    }
  }
</style>
<style>
  /* ==========================================
     【完全横一列】大型・中央寄せナビゲーション
     ========================================== */
  #alinklist {
    width: 100%;
    max-width: 1200px;         /* コンテンツの基本横幅 */
    margin: 0 auto;            /* 全体の中央寄せ */
    padding: 30px 10px;        /* 上下にゆったりとした余白を確保 */
    box-sizing: border-box;
  }

  #alinklist ul {
    display: flex;
    flex-wrap: nowrap;         /* ★最重要：絶対に折り返さず、1本の横一列を強制維持 */
    justify-content: space-between; /* ★最重要：左右の端まで7つの項目を等間隔に美しく整列 */
    align-items: center;       /* 画像と文字の縦の中心をピシッと揃える */
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
  }

  #alinklist li {
    flex: 0 0 auto;            /* 各要素の幅が勝手に縮まないように保護 */
  }

  /* メニュー内のリンクと【横一列に入る最大限界】文字サイズ設定 */
  #alinklist li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #111;
    font-size: 22px;           /* ★1列に美しく収まる大迫力サイズの文字 */
    font-weight: bold;
    white-space: nowrap;       /* 文字の途中での自動改行を絶対に禁止 */
    transition: color 0.2s, transform 0.2s;
  }
  
  /* マウスを乗せた時のホバー効果 */
  #alinklist li a:hover {
    color: #ff9900;            /* オレンジ色に変化 */
    transform: scale(1.05);    /* ほんの少しフワッと拡大してクリックを促す */
  }
  
  /* メニュー内の【横一列に入る最大限界】画像サイズ調整 */
  #alinklist img {
    margin-right: 12px;        /* 画像と文字の間の隙間 */
    height: 65px;              /* ★1列に美しく収まる大迫力サイズの縦幅 */
    width: auto;
    object-fit: contain;
    display: block;
  }

  /* メニューの下のグレーの区切り線 */
  .menu-bottom-line {
    border: none;
    border-top: 3px solid #dddddd; 
    margin: 15px auto 40px auto;
    max-width: 1200px;
    width: 100%;
  }

  /* ==========================================
     タブレット・スマートフォン表示（レスポンシブ）
     ※パソコン以下の画面幅では、1列のままだと画面をはみ出すため自動調整します
     ========================================== */
  @media screen and (max-width: 1100px) {
    #alinklist {
      overflow-x: auto;        /* 画面幅が1100px以下になったら自動で快適なスワイプに切り替え */
      -webkit-overflow-scrolling: touch;
    }
    #alinklist ul {
      justify-content: flex-start; /* 左詰めに切り替えてスクロールしやすく */
    }
    #alinklist li {
      margin-right: 40px;      /* スクロール時の項目同士の程よい隙間 */
    }
    #alinklist li:last-child {
      margin-right: 0;
    }
  }

  @media screen and (max-width: 576px) {
    #alinklist li a {
      font-size: 18px;         /* スマホでは文字を読みやすいサイズに調整 */
    }
    #alinklist img {
      height: 45px;            /* スマホでは画像サイズを最適化 */
      margin-right: 8px;
    }
    #alinklist li {
      margin-right: 25px;
    }
  }
</style>
画像を確認しました！右側の「調理器具」が画面からはみ出して切れてしまい、全体が左に寄ってしまっていますね。

これがズレてしまう原因は、7つの項目（画像＋文字）のサイズが大きすぎて、ホームページの基準幅（1200px）を物理的にはみ出してしまっているからです。

1本の綺麗な横一列（単一行）の形を絶対に崩さず、「1200pxの枠内に1ミリの狂いもなくすっぽり収めて、画面のど真ん中にピシッと中央揃えにする黄金比率」に数値を再計算したHTMLとCSSコードを作成しました！

構造がシンプルなので、これに差し替えるだけで一発で解決します。

🎨 1. 完全に中央揃えにする CSSコード
既存のメニュー用CSS（#alinklist 関連）を、以下のコードに丸ごと上書きしてください。

CSS
<style>
  /* ==========================================
     【完全中央揃え・1列】ナビゲーションCSS
     ========================================== */
  #alinklist {
    width: 100%;
    max-width: 1200px;         /* ホームページの基本横幅 */
    margin: 0 auto;            /* ★最重要：メニューの箱自体を確実中央寄せ */
    padding: 25px 0;           /* 上下のゆったりとした余白 */
    box-sizing: border-box;
  }

  #alinklist ul {
    display: flex;
    flex-wrap: nowrap;         /* ★最重要：絶対に折り返さず、1本の横一列をキープ */
    justify-content: center;   /* ★最重要：すべての要素を画面の「ど真ん中」にギュッと集める */
    align-items: center;       /* 画像と文字の縦の中心をピシッと揃える */
    gap: 20px;                 /* ★項目同士の最適な隙間（広すぎず狭すぎず） */
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
  }

  #alinklist li {
    flex: 0 0 auto;            /* 項目が勝手に縮むのを防ぐお守り */
  }

  /* 7項目がはみ出さずに1列に美しく収まる限界の文字サイズ */
  #alinklist li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #111;
    font-size: 18px;           /* ★1列に収まりつつ、文字がハッキリ太く見えるサイズ */
    font-weight: bold;
    white-space: nowrap;       /* 文字の途中での自動改行を禁止 */
    transition: color 0.2s, transform 0.2s;
  }
  
  /* マウスを乗せたときのホバー効果 */
  #alinklist li a:hover {
    color: #ff9900;            /* オレンジ色に変化 */
    transform: scale(1.05);    /* ほんの少しフワッと拡大 */
  }
  
  /* 1列に美しく収まる限界の大型画像サイズ */
  #alinklist img {
    margin-right: 10px;        /* 画像と文字の間の隙間 */
    height: 55px;              /* ★1列に収まる大迫力サイズの縦幅 */
    width: auto;
    object-fit: contain;
    display: block;
  }

  /* メニューの下のグレーの区切り線（これも1200pxで中央寄せ） */
  .menu-bottom-line {
    border: none;
    border-top: 3px solid #dddddd; 
    margin: 15px auto 40px auto;
    max-width: 1200px;
    width: 100%;
  }

  /* ==========================================
     画面幅が狭い時（タブレット・スマホ）の自動安全装置
     ========================================== */
  @media screen and (max-width: 1200px) {
    #alinklist {
      overflow-x: auto;        /* パソコンより画面が狭くなったら自動で快適なスワイプに切り替え */
      -webkit-overflow-scrolling: touch;
    }
    #alinklist ul {
      justify-content: flex-start; /* スワイプしやすくするために左詰めに自動変更 */
      padding: 0 20px;         /* 画面端に文字が張り付かないためのクッション */
    }
  }


#breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 12px 0;
}

#breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #888;
}

#breadcrumbs li + li::before {
  content: "›";
  color: #ccc;
  font-size: 14px;
}

#breadcrumbs li a {
  color: #888;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 4px;
  transition: background 0.12s, color 0.12s;
}

#breadcrumbs li a:hover {
  background: #f5f5f0;
  color: #1a1a1a;
}

#breadcrumbs li:last-child {
  color: #1a1a1a;
  font-weight: 500;
}



.cnav {
  padding: 1.5rem;
  background: #f5f5f0;
  box-sizing: border-box;
}

.cnav__title {
  font-size: 14px;
  color: #888;
  margin: 0 0 1.25rem;
}

.cnav__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 固定6列 */
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cnav__grid li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 8px;
  background: #fff;
  border: 1px solid #e5e5e0;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.cnav__grid li a:hover {
  background: #f5f5f0;
  border-color: #c0c0b8;
  transform: translateY(-3px);
}

.cnav__icon {
  font-size: 40px;
  line-height: 1;
}

.cnav__label {
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.4;
}
#breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 12px 16px;
  background: #6B2D00;
  border-radius: 6px;
}

#breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

#breadcrumbs li + li::before {
  content: "›";
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

#breadcrumbs li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color 0.12s;
}

#breadcrumbs li a:hover {
  color: #fff;
}

#breadcrumbs li:last-child {
  color: #fff;
  font-weight: 700;
}

/* タブレット */
@media screen and (max-width: 959px) {
  .cnav {
    padding: 1.25rem;
  }

  .cnav__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .cnav__grid li a {
    padding: 20px 8px;
  }

  .cnav__icon {
    font-size: 36px;
  }

  .cnav__label {
    font-size: 12px;
  }
}

/* スマホ */
@media screen and (max-width: 599px) {
  .cnav {
    padding: 1rem;
  }

  .cnav__title {
    font-size: 13px;
    margin-bottom: 1rem;
  }

  .cnav__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cnav__grid li a {
    gap: 8px;
    padding: 16px 6px;
    border-radius: 12px;
  }

  .cnav__icon {
    font-size: 30px;
  }

  .cnav__label {
    font-size: 11px;
    line-height: 1.35;
  }

  #breadcrumbs ol {
    padding: 10px 12px;
    border-radius: 4px;
  }

  #breadcrumbs li {
    font-size: 11px;
  }
}