@charset "UTF-8";

/* リスト初期化 */
ul, ul ul, ul li, dl, dl dt, dl dd {
  padding: 0;
  list-style: none;
  margin: 0;
}
li::marker {
  display: none;
}

/* カスタムプロパティ */
:root {
  --main-color: #000;
  --h2-fontSize: 17px;
  --link-bg-Color: #d2000f;
  --border-radius: 5px;
  --fontSize: 14px;
  --color: #fff;
}
.note {
  color: red;
}
/* テキスト系 */
.l-Small {
  color: var(--main-color);
  font-family: "Meiryo";
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 30px;
}
.l-section h2 {
  color: var(--main-color);
  font-size: var(--h2-fontSize);
  font-weight: 700;
  line-height: 18px;
}

/* テイクアウトメニューのリンクボタン */
.storeSearch {
  background-color: var(--link-bg-Color);
  border-radius: var(--border-radius);
  margin-left: 0;
  margin-bottom: 10px;
}
.storeSearch a {
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: var(--h2-fontSize);
  font-weight: 700;
  line-height: 140%;
  padding: 11px 0;
}
.storeSearch:hover {
  opacity: 0.8;
}
.sp-only {
  display: none;
}
.storeSearch-wrapper dl {
  font-size: 14px;
    margin-bottom: 10px;
}
.storeSearch-wrapper dt {
      font-weight: bold;
}
.storeSearch-wrapper dd {
    margin-left: 10px;
}
/* レスポンシブ：PC向け調整 */
@media screen and (min-width: 768px) {
  :root {
    --h2-fontSize: 23px;
  }

  .l-Small {
    font-size: 1rem;
  }

  .l-contents-wrapper {
    width: 97%;
    margin: 0 auto;
  }
  .sp-only {
    display: block
  }
  .storeSearch {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
  }

  .storeSearch a {
    font-size: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .storeSearch-wrapper h2 {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .storeSearch-wrapper dl {
  font-size: 16px;
}
}
/* 初期状態（モバイル）：縦並び */
.storeSearch-grid {
  display: block;
}

@media screen and (min-width: 768px) {
  .storeSearch-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .storeSearch {
    width: calc(50% - 5px);
    box-sizing: border-box;

    /* ↓ 高さを揃えるためにflex化 */
    display: flex;
  }

  .storeSearch a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* ↓ 高さを100%にすることで親に合わせる */
    height: 100%;
    width: 100%;

    /* ↓ 最低の高さ（通常の単行ボタンに揃える） */
    min-height: 60px;

    /* ↓ 複数行でも余白確保 */
    padding: 10px;
    box-sizing: border-box;
  }
}
/* 「メニューを見る」セクションの下部に余白を追加 */
.storeSearch-wrapper:first-of-type {
  margin-bottom: 30px; /* 必要に応じてpx値を調整してください */
}
