/* =========================================
   Food page buttons (2 rows x 3 cols on PC)
========================================= */

.c-food-nav {
  width: min(1100px, 100%);
  margin: 24px auto 40px;
  padding: 0 20px;
}

.c-food-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  gap: 12px;
}

/* PC：2行3列（= 3カラム） */
@media (min-width: 1024px) {
  .c-food-nav__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

/* タブレット：2列に（必要なければ削除OK） */
@media (min-width: 600px) and (max-width: 1023px) {
  .c-food-nav__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-food-nav__item {
  margin: 0;
}

.c-food-nav__button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 52px;
  padding: 12px 14px;

  text-decoration: none;
  text-align: center;

  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);

  /* 既存デザインに馴染ませやすい無難な見た目 */
  background: #fff;
  color: #111;

  font-weight: 600;
  letter-spacing: 0.02em;

  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.c-food-nav__button:hover,
.c-food-nav__button:focus-visible {
  background: rgba(0,0,0,0.03);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  transform: translateY(-1px);
  outline: none;
}

/* クリック時 */
.c-food-nav__button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,0.10);
}

/* アンカー遷移時に見出しが隠れないように（固定ヘッダー対策）
   ※必要に応じて数値調整 */
#set-menu,
#saikyoduke,
#single-menu,
#sweets,
#drink,
#faq {
  scroll-margin-top: 110px;
}

/* =========================
   FAQ セクション（全体）
========================= */

.p-food-faq {
  padding: 80px 20px 40px;
}

.p-food-faq__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* タイトルデザイン */
.p-food-faq__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

/* タイトル下線 */
.p-food-faq__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 2px;
  background: #111;
  transform: translateX(-50%);
}

/* =========================
   FAQ 本体（ボックス）
========================= */

.c-faq {
  padding: 0 20px 80px;
}

.c-faq__inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 各FAQをカード化 */
.c-faq__item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  padding: 18px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* 質問 */
.c-faq__question {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

/* ▼ マーカー削除 */
.c-faq__question::-webkit-details-marker {
  display: none;
}

/* ＋アイコン */
.c-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
}

/* 開いたとき − に */
details[open] .c-faq__question::after {
  content: "−";
}

/* 回答 */
.c-faq__answer {
  margin-top: 12px;
  line-height: 1.9;
  color: #333;
}

/* SP調整 */
@media (max-width: 767px) {
  .p-food-faq__title {
    font-size: 22px;
  }

  .c-faq__item {
    padding: 16px;
  }
}

/* =========================
   お客様の声（VOICE）
   - FAQはそのまま、別セクションとして追加用
   - 崩れにくいカードレイアウト
========================= */

.p-food-voice {
  width: 100%;
  padding: 0 16px;
  margin: 60px auto 0;
}

.p-food-voice__inner {
  max-width: 980px;
  margin: 0 auto;
}

.p-food-voice__title {
  margin: 0;
  padding: 14px 18px;
  text-align: center;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  background: #fff;
}

.p-food-voice__lead {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.85;
}

.p-food-voice__note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.75;
}

/* VOICE cards */
.c-voice {
  margin-top: 16px;
}

.c-voice__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.c-voice__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0; /* grid内の崩れ対策 */
}

.c-voice__header {
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.02);
}

.c-voice__tag {
  margin: 0 0 8px;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  opacity: 0.9;
}

.c-voice__headline {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  word-break: break-word;
}

.c-voice__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-voice__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  word-break: break-word;
}

.c-voice__meta {
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.18);
  font-size: 13px;
  opacity: 0.8;
}

/* タブレット */
@media (max-width: 1023px) {
  .c-voice__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* スマホ */
@media (max-width: 767px) {
  .p-food-voice {
    margin-top: 40px;
  }

  .p-food-voice__title {
    font-size: 18px;
  }

  .c-voice__inner {
    grid-template-columns: 1fr;
  }
}

.c-to-top{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  pointer-events: auto;
  touch-action: manipulation;
}

/* タイトル下の画像 */
.p-food-hero{
  max-width: 720px;
  margin: 16px auto 0;
  padding: 0 16px;
}

.p-food-hero img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.c-to-top{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  pointer-events: auto;
  touch-action: manipulation;
}

/* タイトルの上に余白を追加 */
.p-food-set__saikyodukeHeading {
  margin-top: 24px;
}

.p-food-set__saikyodukeHeading.-center {
  text-align: center;
  margin-top: 32px;
}

/* =========================
   FAQ カテゴリ見出し（追加）
   - 既存 .c-faq のデザインに馴染ませる
========================= */

.c-faq__category{
  margin: 26px 0 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #111;
}

/* カテゴリ直後のカードとの間隔を自然に */
.c-faq__category + .c-faq__item{
  margin-top: 0;
}

/* SP調整 */
@media (max-width: 767px){
  .c-faq__category{
    margin: 22px 0 10px;
    font-size: 14px;
  }
}


/* =========================
   FAQ カテゴリ見出し（調整版）
========================= */

.c-faq__category{
  margin: 44px 0 18px;     /* ← カテゴリ間をしっかり空ける */
  font-size: 18px;        /* ← 文字を少し大きく */
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #111;
}

/* 最初のカテゴリだけ上余白を控えめに */
.c-faq__category:first-child{
  margin-top: 0;
}

/* カテゴリ直後のFAQカードとの距離を自然に */
.c-faq__category + .c-faq__item{
  margin-top: 0;
}

/* スマホ調整 */
@media (max-width: 767px){
  .c-faq__category{
    margin: 36px 0 14px;
    font-size: 16px;
  }
}


