@charset "UTF-8";
:root {
  /* ブランド共通色（指定の青・赤・白は必ずここ経由で参照） */
  --color-blue: #384b70;
  --color-red: #9b0d0d;
  --color-white: #ffffff;
  --primary: var(--color-blue);
  --primary-light: #f3e8f7;
  --primary-dark: #5a1d6a;
  --accent: #e8a838;
  --bg: #f1f1f1;
  --card-bg: var(--color-white);
  --text: #2d2d2d;
  --text-light: #777;
  --border: #e8e0ed;
  --success: #4caf50;
  --error: var(--color-red);
  --radius: 12px;
  /* SP 既定（640px 未満）— ヘッダーツールバー: 上下 / 左右 */
  --fluid-header-padding-y: 5px;
  --fluid-header-padding-x: 10px;
  --fluid-header-btn-w: 103px;
  --fluid-shell-max-h: 100vh;
  /* l-contentsWidth はパディングなし。各セクションが --order-page-gutter-x を使用 */
  --order-page-gutter-x: 16px;
}

@media (min-width: 640px) {
  :root {
    --fluid-header-padding-y: 10px;
    --fluid-header-padding-x: 20px;
    --fluid-header-btn-w: 206px;
    --fluid-shell-max-h: calc(100vh - 40px);
    --order-page-gutter-x: 20px;
    /* PC: カード・入力まわりの視認性 */
    --radius: 14px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg);
  background-image: url("/assets/images/bg01.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 640px) {
  body {
    /* 上下 20px ずつで計 40px の余白 */
    padding: 20px 12px;
  }
}
/* -------------------------------------------------------------------------- */
/* Layout */
/* -------------------------------------------------------------------------- */
.l-pageShell {
  width: 100%;
  max-width: 640px;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 639px) {
  .l-pageShell {
    max-width: none;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
  }
}
@media (min-width: 640px) {
  .l-pageShell {
    flex: 0 1 auto;
    margin-top: auto;
    margin-bottom: auto;
    max-height: var(--fluid-shell-max-h);
    overflow: hidden;
    background: var(--color-white);
    border: 2px solid #dddddd;
    border-radius: 20px;
  }
}

.l-pageCard {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  border: 2px solid #dddddd;
  border-radius: 20px;
  background: var(--color-white);
}
@media (max-width: 639px) {
  .l-pageCard {
    border: none;
    border-radius: 0;
  }
}
@media (min-width: 640px) {
  .l-pageCard {
    border: none;
    border-radius: 0;
    background: transparent;
  }
}

.l-contentsWidth {
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.l-sectionWrapper {
  padding: 0 var(--order-page-gutter-x);
  box-sizing: border-box;
}

@media (max-width: 639px) {
  body {
    padding: 0;
    align-items: stretch;
  }
}
.l-page--home .l-pageCard {
  padding-bottom: 0;
}

/* スマホ: ヘッダー／カートフッターをビューポートに固定（本文は l-pageCard でスクロール） */
@media (max-width: 639px) {
  .l-pageShell > .c-headerSet {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    padding-top: env(safe-area-inset-top, 0px);
    background: var(--color-white);
  }
  .l-pageShell > .c-cartFooterSet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    max-width: none;
    margin-top: 0;
  }
  .l-pageShell .l-pageCard {
    padding-top: calc(env(safe-area-inset-top, 0px) + var(--fluid-header-padding-y) * 2 + 50px + 2px);
  }
  .l-pageShell:has(> .c-cartFooterSet):not(.is-cart-footer-docked-off) .l-pageCard {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 158px);
  }
}
/* -------------------------------------------------------------------------- */
/* c-headerSet */
/* -------------------------------------------------------------------------- */
.c-headerSet {
  flex-shrink: 0;
}
.c-headerSet .block.is-toolbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: var(--fluid-header-padding-y) var(--fluid-header-padding-x);
  border-bottom: 2px solid #dddddd;
  background: var(--color-white);
  width: 100%;
  box-sizing: border-box;
}
.c-headerSet .item.is-linkLogo.m-image, .c-headerSet .item.is-linkOfficial.m-image {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}
.c-headerSet .item {
  /* ヘッダーロゴ: SP 54px / PC（640px〜）108px */
}
.c-headerSet .item.is-linkLogo.m-image .moduleWrapper img {
  display: block;
  width: 54px;
  height: auto;
}
@media (min-width: 640px) {
  .c-headerSet .item.is-linkLogo.m-image .moduleWrapper img {
    width: 108px;
  }
}
.c-headerSet .item.is-linkOfficial.m-image {
  filter: drop-shadow(2px 2px 0 #9c7171);
}
.c-headerSet .item.is-linkOfficial.m-image .moduleWrapper {
  display: block;
  border-radius: 3px;
  overflow: hidden;
  line-height: 0;
}
.c-headerSet .item.is-linkOfficial.m-image .moduleWrapper img {
  display: block;
  width: var(--fluid-header-btn-w);
  height: auto;
}
@media (min-width: 640px) {
  .c-headerSet .item.is-linkOfficial.m-image {
    filter: drop-shadow(3px 3px 0 #9c7171);
  }
  .c-headerSet .item.is-linkOfficial.m-image .moduleWrapper {
    border-radius: 5px;
  }
}
@media (min-width: 640px) {
  .c-headerSet .item.is-linkLogo.m-image, .c-headerSet .item.is-linkOfficial.m-image {
    transition: opacity 0.3s;
  }
  .c-headerSet .item.is-linkLogo.m-image:hover, .c-headerSet .item.is-linkOfficial.m-image:hover {
    opacity: 0.7;
  }
}

/* -------------------------------------------------------------------------- */
/* c-closedBannerSet */
/* -------------------------------------------------------------------------- */
.c-closedBannerSet {
  background: var(--error);
  color: var(--color-white);
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  display: none;
}
.c-closedBannerSet.is-visible {
  display: block;
}

/* -------------------------------------------------------------------------- */
/* c-backNavSet */
/* -------------------------------------------------------------------------- */
.c-backNavSet {
  margin: 0 0 12px;
  padding: 0 var(--order-page-gutter-x);
  font-size: 13px;
  box-sizing: border-box;
}
.c-backNavSet a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (min-width: 640px) {
  .c-backNavSet a:hover {
    opacity: 0.7;
  }
}

/* -------------------------------------------------------------------------- */
/* c-noticeSet */
/* -------------------------------------------------------------------------- */
.c-noticeSet {
  margin-top: 16px;
  padding: 0 var(--order-page-gutter-x);
  box-sizing: border-box;
}
.c-noticeSet[hidden] {
  display: none !important;
}
.c-noticeSet {
  /* カード同士は group 内で並ぶため、ここで縦方向の余白を付ける */
}
.c-noticeSet .group.is-stack {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 640px) {
  .c-noticeSet .group.is-stack {
    gap: 10px;
  }
}
.c-noticeSet .group.is-stack .block.is-noticeCard {
  border: 1px solid var(--error);
  border-radius: 0;
  padding: 12px 14px;
  background: transparent;
  color: var(--error);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}
@media (min-width: 640px) {
  .c-noticeSet .group.is-stack .block.is-noticeCard {
    border-width: 2px;
  }
}
.c-noticeSet .group.is-stack .block.is-noticeCard .item.is-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--error);
}
.c-noticeSet .group.is-stack .block.is-noticeCard .m-text01--notice .moduleWrapper {
  margin: 0;
  font-weight: 800;
  color: var(--error);
}
.c-noticeSet .group.is-stack .block.is-noticeCard .is-em {
  font-weight: 800;
  font-size: 1.05em;
}

/* -------------------------------------------------------------------------- */
/* c-deliveryOptionsSet */
/* -------------------------------------------------------------------------- */
.c-deliveryOptionsSet {
  margin: 10px var(--order-page-gutter-x);
  box-sizing: border-box;
}
.c-deliveryOptionsSet .m-text01 {
  text-align: center;
}
.c-deliveryOptionsSet .m-text01 .moduleWrapper {
  display: block;
  text-align: center;
}
.c-deliveryOptionsSet .componentWrapper.is-paper {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  padding: 16px 14px;
  background-color: #faf8f4;
  background-image: url("/assets/images/texture01_paper01.png");
  background-repeat: repeat;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .c-deliveryOptionsSet .componentWrapper.is-paper {
    border-radius: 20px;
    padding: 22px 20px;
  }
}
.c-deliveryOptionsSet .group.is-main {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.c-deliveryOptionsSet .group.is-main > .block:not(:first-child) {
  margin-top: 20px;
}
.c-deliveryOptionsSet .m-text01--panelTitle {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.c-deliveryOptionsSet .area.is-heading .box {
  text-align: center;
}
.c-deliveryOptionsSet .m-text01--areaAlert {
  margin: 0 0 6px;
  color: var(--error);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
}
.c-deliveryOptionsSet .m-text01--areaLead {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}
.c-deliveryOptionsSet .box.is-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.c-deliveryOptionsSet .area.is-radios {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.c-deliveryOptionsSet .area.is-input {
  margin-top: 8px;
}
.c-deliveryOptionsSet .area.is-input .m-formInput {
  width: 100%;
  box-sizing: border-box;
  height: 44px;
  padding: 10px 15px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-size: 16px;
  background: var(--color-white);
  transition: border-color 0.2s;
}
.c-deliveryOptionsSet .area.is-input .m-formInput:focus {
  outline: none;
  border-color: var(--primary);
}
.c-deliveryOptionsSet {
  /* m-radio01（配達オプション内） */
}
.c-deliveryOptionsSet .m-radio01:not(.m-radio01--store) {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 10px 12px;
  border: 2px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  background: var(--color-white);
  box-sizing: border-box;
  transition: opacity 0.3s;
}
@media (min-width: 640px) {
  .c-deliveryOptionsSet .m-radio01:not(.m-radio01--store) {
    min-width: 140px;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
  }
}
.c-deliveryOptionsSet .m-radio01:not(.m-radio01--store) .moduleWrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}
.c-deliveryOptionsSet .m-radio01:not(.m-radio01--store) input {
  flex-shrink: 0;
  accent-color: var(--color-blue);
}
.c-deliveryOptionsSet .m-radio01:not(.m-radio01--store):has(input:checked) {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
  font-weight: 700;
}
.c-deliveryOptionsSet .m-radio01:not(.m-radio01--store):has(input:disabled), .c-deliveryOptionsSet .m-radio01:not(.m-radio01--store).is-disabled {
  opacity: 1;
  cursor: not-allowed;
  background-color: #ececec;
  border-color: #d8d8d8;
  color: #9a9a9a;
  pointer-events: none;
}
.c-deliveryOptionsSet .m-radio01:not(.m-radio01--store):has(input:disabled) input, .c-deliveryOptionsSet .m-radio01:not(.m-radio01--store).is-disabled input {
  cursor: not-allowed;
}
.c-deliveryOptionsSet .m-radio01:not(.m-radio01--store):has(input:disabled):has(input:checked), .c-deliveryOptionsSet .m-radio01:not(.m-radio01--store).is-disabled:has(input:checked) {
  background-color: #ececec;
  border-color: #d8d8d8;
  color: #9a9a9a;
  font-weight: 600;
}
@media (min-width: 640px) {
  .c-deliveryOptionsSet .m-radio01:not(.m-radio01--store):hover:not(:has(input:checked)):not(:has(input:disabled)):not(.is-disabled) {
    opacity: 0.7;
  }
}
.c-deliveryOptionsSet {
  /* 受け取り店舗ラジオ：最大2列、3件目以降は下段へ */
}
.c-deliveryOptionsSet .block.is-pickup .area.is-radios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}
.c-deliveryOptionsSet .m-radio01.m-radio01--store {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: 2px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  background: var(--color-white);
  box-sizing: border-box;
  transition: opacity 0.3s;
}
@media (min-width: 640px) {
  .c-deliveryOptionsSet .m-radio01.m-radio01--store {
    min-width: 140px;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
  }
}
.c-deliveryOptionsSet .m-radio01.m-radio01--store .moduleWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.c-deliveryOptionsSet .m-radio01.m-radio01--store .m-radio01__photo {
  width: 100%;
  align-self: stretch;
  box-sizing: border-box;
}
.c-deliveryOptionsSet .m-radio01.m-radio01--store .m-radio01__photo.m-image .moduleWrapper img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
@media (min-width: 640px) {
  .c-deliveryOptionsSet .m-radio01.m-radio01--store .m-radio01__photo.m-image .moduleWrapper img {
    border-radius: 8px;
  }
}
.c-deliveryOptionsSet .m-radio01.m-radio01--store .m-radio01__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  align-self: center;
  min-width: 0;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}
.c-deliveryOptionsSet .m-radio01.m-radio01--store .m-radio01__name {
  flex: 0 1 auto;
  min-width: 0;
  line-height: 1.35;
}
.c-deliveryOptionsSet .m-radio01.m-radio01--store input {
  flex-shrink: 0;
  accent-color: var(--color-blue);
}
.c-deliveryOptionsSet .m-radio01.m-radio01--store:has(input:checked) {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
  font-weight: 700;
}
@media (min-width: 640px) {
  .c-deliveryOptionsSet .m-radio01.m-radio01--store:hover:not(:has(input:checked)) {
    opacity: 0.7;
  }
}
.c-deliveryOptionsSet .block.is-pickup .m-radio01.m-radio01--store {
  flex: none;
  width: 100%;
  min-width: 0;
}
.c-deliveryOptionsSet .m-areaResult {
  font-size: 13px;
  margin-top: 6px;
  min-height: 20px;
}
.c-deliveryOptionsSet .m-areaResult.is-ok {
  width: 100%;
  box-sizing: border-box;
  margin-top: 6px;
  padding: 10px;
  border-radius: 0;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  min-height: 0;
}
@media (min-width: 640px) {
  .c-deliveryOptionsSet .m-areaResult.is-ok {
    padding: 15px;
  }
}
.c-deliveryOptionsSet .m-areaResult.is-ng {
  color: var(--error);
  font-weight: 600;
}
.c-deliveryOptionsSet .m-areaResult.is-loading {
  color: var(--text-light);
}

/* メニューページ: 見出し画像（配達方法・メニュー）— SP 高さ35px / PC 70px・左右中央 */
.m-menuTitleImg {
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
.m-menuTitleImg .moduleWrapper {
  display: inline-block;
  line-height: 0;
  vertical-align: top;
}
.m-menuTitleImg .m-menuTitleImg__pic {
  display: block;
  width: auto;
  max-width: 100%;
  height: 35px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}
@media (min-width: 640px) {
  .m-menuTitleImg .m-menuTitleImg__pic {
    height: 70px;
  }
}
.m-menuTitleImg.m-menuTitleImg--panel {
  margin: 0 0 10px;
}
.m-menuTitleImg.m-menuTitleImg--panel .m-menuTitleImg__pic {
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
@media (min-width: 640px) {
  .m-menuTitleImg.m-menuTitleImg--panel .m-menuTitleImg__pic {
    filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.25));
  }
}
.m-menuTitleImg.m-menuTitleImg--menu {
  margin: 0 0 14px;
}
.m-menuTitleImg.m-menuTitleImg--form {
  margin: 24px 0 12px;
}

/* -------------------------------------------------------------------------- */
/* c-menuListSet */
/* -------------------------------------------------------------------------- */
.c-menuListSet {
  background: #f1f1f1;
  margin-top: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 30px 10px;
}
@media (min-width: 640px) {
  .c-menuListSet {
    padding: 60px 20px;
  }
}
.c-menuListSet .block.is-heading .area.is-title .box {
  text-align: center;
}
.c-menuListSet .block.is-deliveryAreaLead .area.is-body .box {
  text-align: center;
}
.c-menuListSet .m-text01--menuAreaLead {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
}
.c-menuListSet .m-text01--menuAreaLead .moduleWrapper {
  display: block;
}
.c-menuListSet .m-text01--menuTitle {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
}
.c-menuListSet .componentWrapper,
.c-menuListSet .group.is-main,
.c-menuListSet .block.is-list,
.c-menuListSet .area.is-products,
.c-menuListSet .box.is-full,
.c-menuListSet .item.is-grid {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.c-menuListSet #productList {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  gap: 5px;
}
@media (min-width: 640px) {
  .c-menuListSet #productList {
    gap: 12px;
  }
}
.c-menuListSet #productList > .m-text01--storeMenuTitle:first-of-type {
  margin-top: 0;
}
.c-menuListSet #productList {
  /* デリバリー時: 店舗見出しをスクロール領域（.l-pageCard）上端＝ヘッダー直下に追従 */
}
.c-menuListSet #productList.is-deliveryMenu > .m-text01--storeMenuTitle {
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: var(--bg);
  padding-top: 8px;
  margin-top: 12px;
  box-shadow: 0 6px 12px -8px rgba(45, 45, 45, 0.2);
}
.c-menuListSet #productList.is-deliveryMenu > .m-text01--storeMenuTitle:first-of-type {
  margin-top: 0;
  padding-top: 2px;
}
.c-menuListSet .m-text01--storeMenuTitle {
  font-size: 15px;
  font-weight: 800;
  margin: 20px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--color-blue);
  color: var(--primary);
}

/* c-menuItemSet */
.c-menuItemSet .componentWrapper {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.c-menuItemSet .group.is-card {
  background: var(--color-white);
  border-radius: 5px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .c-menuItemSet .group.is-card {
    border-radius: 10px;
    padding: 20px;
    gap: 14px;
  }
}
.c-menuItemSet .group.is-card:active {
  transform: scale(0.998);
}
.c-menuItemSet .block.is-mainRow {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.c-menuItemSet .block.is-mainRow .area.is-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.c-menuItemSet .block.is-mainRow .box.is-horizontal {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  flex: 1 1 auto;
  align-self: stretch;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .c-menuItemSet .block.is-mainRow .box.is-horizontal {
    gap: 16px;
  }
}
.c-menuItemSet .block.is-mainRow .box.is-horizontal {
  /* 画像なし: テキストと数量を横並び・縦中央 */
}
.c-menuItemSet .block.is-mainRow .box.is-horizontal:not(:has(> .item.is-thumb.m-image)) {
  align-items: center;
}
.c-menuItemSet .block.is-mainRow .box.is-horizontal:not(:has(> .item.is-thumb.m-image)) .item.is-detail .box.is-infoQty {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: auto;
  gap: 7.5px;
}
@media (min-width: 640px) {
  .c-menuItemSet .block.is-mainRow .box.is-horizontal:not(:has(> .item.is-thumb.m-image)) .item.is-detail .box.is-infoQty {
    gap: 8px;
  }
}
.c-menuItemSet .block.is-mainRow .box.is-horizontal:not(:has(> .item.is-thumb.m-image)) .item.is-detail .box.is-infoQty .item.is-textStack {
  flex: 1 1 auto;
  min-width: 0;
}
.c-menuItemSet .block.is-mainRow .box.is-horizontal:not(:has(> .item.is-thumb.m-image)) .item.is-detail .box.is-infoQty .item.is-qtyRow {
  position: static;
  right: auto;
  bottom: auto;
  z-index: auto;
  flex-shrink: 0;
}
.c-menuItemSet .item.is-thumb.m-image {
  flex: 0 0 90px;
  width: 90px;
  max-width: 90px;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .c-menuItemSet .item.is-thumb.m-image {
    flex-basis: 180px;
    width: 180px;
    max-width: 180px;
  }
}
.c-menuItemSet .item.is-thumb.m-image .moduleWrapper {
  display: block;
  width: 100%;
}
.c-menuItemSet .item.is-thumb.m-image .moduleWrapper img {
  width: 90px;
  height: 90px;
  max-width: 100%;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 6px;
  display: block;
}
@media (min-width: 640px) {
  .c-menuItemSet .item.is-thumb.m-image .moduleWrapper img {
    width: 180px;
    height: 180px;
    border-radius: 8px;
  }
}
.c-menuItemSet .item.is-detail {
  flex: 1 1 0%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.c-menuItemSet .item.is-detail .box.is-infoQty {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.c-menuItemSet .item.is-textStack {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-menuItemSet .item.is-qtyRow {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 7.5px;
  z-index: 1;
}
@media (min-width: 640px) {
  .c-menuItemSet .item.is-qtyRow {
    gap: 8px;
  }
}
.c-menuItemSet .m-text01--productName .moduleWrapper {
  font-size: 12px;
  font-weight: 600;
  display: block;
}
@media (min-width: 640px) {
  .c-menuItemSet .m-text01--productName .moduleWrapper {
    font-size: 15px;
  }
}
.c-menuItemSet .m-text01--productPrice .moduleWrapper {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  margin-top: 4px;
  display: block;
}
@media (min-width: 640px) {
  .c-menuItemSet .m-text01--productPrice .moduleWrapper {
    font-size: 14px;
  }
}
.c-menuItemSet .m-btnQty {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--card-bg);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, background 0.15s;
  color: var(--text);
  padding: 0;
  font-family: inherit;
}
@media (min-width: 640px) {
  .c-menuItemSet .m-btnQty {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
  .c-menuItemSet .m-btnQty:hover {
    opacity: 0.7;
  }
}
.c-menuItemSet .m-btnQty .moduleWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-menuItemSet .m-btnQty:active {
  background: var(--primary-light);
}
.c-menuItemSet .m-btnQty.is-minus {
  color: var(--error);
  border-color: var(--error);
}
.c-menuItemSet .m-btnQty.is-plus {
  color: var(--primary);
  border-color: var(--primary);
}
.c-menuItemSet .m-btnQty.is-hidden {
  visibility: hidden;
}
.c-menuItemSet .m-btnQty__num {
  font-size: 15px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}
@media (min-width: 640px) {
  .c-menuItemSet .m-btnQty__num {
    font-size: 18px;
    min-width: 23px;
  }
}
.c-menuItemSet .m-btnQty__num.is-zero {
  color: var(--text-light);
}
.c-menuItemSet .m-text01--productDesc {
  line-height: 1.3;
}
.c-menuItemSet .m-text01--productDesc .moduleWrapper {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  width: 100%;
}
@media (min-width: 640px) {
  .c-menuItemSet .m-text01--productDesc .moduleWrapper {
    font-size: 13px;
  }
}

/* -------------------------------------------------------------------------- */
/* Loading */
/* -------------------------------------------------------------------------- */
.c-loadingSet .block.is-body .area.is-content .box {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
}

.c-loadingSet--inline .block.is-body .area.is-content .box {
  padding: 20px;
}

.c-loadingSet .m-spinner .moduleWrapper,
.c-loadingSet--inline .m-spinner .moduleWrapper {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* -------------------------------------------------------------------------- */
/* c-orderFormSet */
/* -------------------------------------------------------------------------- */
.c-orderFormSet {
  display: none;
  padding: 0 var(--order-page-gutter-x) 24px;
  box-sizing: border-box;
}
.c-orderFormSet.is-active {
  display: block;
}
.c-orderFormSet .block.is-heading .area.is-title .box {
  text-align: center;
}
.c-orderFormSet .m-text01--sectionTitle {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 12px;
}
.c-orderFormSet .block.is-field {
  margin-bottom: 16px;
}
.c-orderFormSet .block.is-field .area.is-label label,
.c-orderFormSet .block.is-field .area.is-label .m-text01 {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.c-orderFormSet .block.is-field .m-formInput {
  width: 100%;
  box-sizing: border-box;
  height: 44px;
  padding: 10px 15px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-size: 16px;
  background: var(--card-bg);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  font-family: inherit;
}
.c-orderFormSet .block.is-field .m-formInput:focus {
  outline: none;
  border-color: var(--primary);
}
.c-orderFormSet .block.is-field .m-formTextarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 100px;
  padding: 10px 15px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  background: var(--card-bg);
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.2s;
}
.c-orderFormSet .block.is-field .m-formTextarea:focus {
  outline: none;
  border-color: var(--primary);
}
.c-orderFormSet .block.is-field .m-pickupStoreDetail {
  padding: 12px 14px;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 4px;
  box-sizing: border-box;
}
.c-orderFormSet .block.is-field .m-text01--pickupStoreName .moduleWrapper {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.c-orderFormSet .block.is-field .m-text01--pickupStoreAddr .moduleWrapper {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}
.c-orderFormSet .block.is-field .m-text01--pickupStoreAddrHint .moduleWrapper {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-light);
}
.c-orderFormSet .block.is-field .m-text01--hint {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}
.c-orderFormSet .block.is-field .m-text01--error {
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
  display: none;
}
.c-orderFormSet .block.is-field .m-text01--error.is-visible {
  display: block;
}
.c-orderFormSet .block.is-field .m-text01--success {
  width: 100%;
  box-sizing: border-box;
  margin: 4px 0 0;
  padding: 10px;
  border-radius: 0;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  display: none;
}
.c-orderFormSet .block.is-field .m-text01--success .moduleWrapper {
  color: inherit;
  display: block;
  text-align: center;
}
.c-orderFormSet .block.is-field .m-text01--success.is-visible {
  display: block;
}
@media (min-width: 640px) {
  .c-orderFormSet .block.is-field .m-text01--success {
    padding: 15px;
  }
}
.c-orderFormSet .block.is-cart {
  margin: 20px 0;
  padding: 16px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 2px solid var(--border);
}
.c-orderFormSet .m-text01--reservation {
  font-size: 12px;
  color: #e67e22;
  margin: 0 0 8px;
  display: none;
}
.c-orderFormSet .m-text01--reservation.is-visible {
  display: block;
}
.c-orderFormSet .m-text01--businessClosed {
  font-size: 14px;
  font-weight: 700;
  color: var(--error);
  margin: 0 0 10px;
  line-height: 1.55;
  text-align: center;
}
.c-orderFormSet .m-timeSlots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}
.c-orderFormSet .m-timeSlotRadio {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 8px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  background: var(--color-white);
  box-sizing: border-box;
  transition: opacity 0.3s;
  text-align: left;
}
@media (min-width: 640px) {
  .c-orderFormSet .m-timeSlotRadio {
    padding: 12px 10px;
    font-size: 15px;
    border-radius: 8px;
  }
}
.c-orderFormSet .m-timeSlotRadio .moduleWrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}
.c-orderFormSet .m-timeSlotRadio input {
  flex-shrink: 0;
  accent-color: var(--color-blue);
}
.c-orderFormSet .m-timeSlotRadio:has(input:checked) {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
  font-weight: 700;
}
@media (min-width: 640px) {
  .c-orderFormSet .m-timeSlotRadio:hover:not(:has(input:checked)):not(.is-disabled) {
    opacity: 0.7;
  }
}
.c-orderFormSet .m-timeSlotRadio.is-disabled {
  background: #f0f0f0;
  color: #bbb;
  cursor: not-allowed;
  border-color: #e0e0e0;
  pointer-events: none;
}
.c-orderFormSet .m-cartStoreGroup {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--border);
}
.c-orderFormSet .m-cartStoreGroup--first {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.c-orderFormSet .m-cartStoreGroup__title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.35;
}
.c-orderFormSet .m-cartStoreGroup__title .moduleWrapper {
  display: block;
}
.c-orderFormSet .m-cartLine .moduleWrapper {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}
.c-orderFormSet .m-cartTotal .moduleWrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 2px solid var(--border);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  width: 100%;
  box-sizing: border-box;
}
.c-orderFormSet .block.is-formSubmit .area.is-action .box,
.c-orderFormSet .block.is-back .area.is-action .box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-orderFormSet .block.is-formSubmit {
  margin-bottom: 10px;
}
.c-orderFormSet .m-btn01.m-btn01--formSubmit {
  width: auto;
  max-width: 100%;
  min-width: 188px;
  padding: 15px 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 100px;
  background: var(--color-red);
  color: var(--color-white);
  white-space: nowrap;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 0.25s;
}
.c-orderFormSet .m-btn01.m-btn01--formSubmit .moduleWrapper {
  display: block;
  text-align: center;
  color: var(--color-white);
}
.c-orderFormSet .m-btn01.m-btn01--formSubmit:disabled {
  background: #9e9e9e;
  color: var(--color-white);
  cursor: not-allowed;
  opacity: 1;
}
.c-orderFormSet .m-btn01.m-btn01--formSubmit:disabled .moduleWrapper {
  color: var(--color-white);
}
@media (min-width: 640px) {
  .c-orderFormSet .m-btn01.m-btn01--formSubmit:hover:not(:disabled) {
    opacity: 0.92;
  }
}
.c-orderFormSet .block.is-back .m-btn01.m-btn01--sub {
  width: auto;
  max-width: 100%;
  min-width: 150px;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 100px;
  background: var(--color-blue);
  color: var(--color-white);
  white-space: nowrap;
  box-sizing: border-box;
  cursor: pointer;
  transition: opacity 0.25s;
}
.c-orderFormSet .block.is-back .m-btn01.m-btn01--sub .moduleWrapper {
  display: block;
  text-align: center;
  color: var(--color-white);
}
@media (min-width: 640px) {
  .c-orderFormSet .block.is-back .m-btn01.m-btn01--sub:hover {
    opacity: 0.92;
  }
}

.c-cartSummarySet {
  margin: 20px 0;
  padding: 16px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

/* -------------------------------------------------------------------------- */
/* c-cartFooterSet */
/* -------------------------------------------------------------------------- */
/* l-pageShell 直下: フレックスでシェル下端に配置（高さはレイアウトで確保） */
.l-pageShell > .c-cartFooterSet {
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
  background: var(--primary);
  color: var(--color-white);
  padding: 12px var(--order-page-gutter-x) calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .l-pageShell > .c-cartFooterSet {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
}

.c-cartFooterSet .c-cartFooterSet__inner {
  max-width: 640px;
  margin: 0 auto;
}
.c-cartFooterSet .c-cartFooterSet__status {
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.45;
}
.c-cartFooterSet .c-cartFooterSet__status[hidden] {
  display: none !important;
}
.c-cartFooterSet .c-cartFooterSet__panel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--color-white);
  border-radius: 4px;
  box-sizing: border-box;
}
.c-cartFooterSet .c-cartFooterSet__panel[hidden] {
  display: none !important;
}
.c-cartFooterSet .c-cartFooterSet__priceSlot {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-cartFooterSet .c-cartFooterSet__price {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 2px;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.c-cartFooterSet .c-cartFooterSet__yen {
  color: #919191;
  font-size: 16px;
  font-weight: 700;
}
.c-cartFooterSet .c-cartFooterSet__amount {
  color: var(--color-blue);
  font-size: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.c-cartFooterSet .c-cartFooterSet__submit {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 8px 16px;
  border: none;
  border-radius: 100px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.25s;
}
.c-cartFooterSet .c-cartFooterSet__submit .moduleWrapper {
  display: block;
}
.c-cartFooterSet .c-cartFooterSet__submit:disabled {
  background: #9e9e9e;
  color: var(--color-white);
  cursor: not-allowed;
  opacity: 1;
}
@media (min-width: 640px) {
  .c-cartFooterSet .c-cartFooterSet__submit:hover:not(:disabled) {
    opacity: 0.92;
  }
}
.c-cartFooterSet .c-cartFooterSet__minNote {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.5;
}
.c-cartFooterSet .c-cartFooterSet__minNote[hidden] {
  display: none !important;
}

/* -------------------------------------------------------------------------- */
/* c-thanksSet */
/* -------------------------------------------------------------------------- */
.c-thanksSet {
  text-align: center;
  box-sizing: border-box;
  /* 注文状況ページ（c-trackPageSet）と同じ内側余白。横は親の --track-page-inner-pad に任せる */
  padding: 16px 0 0;
}
@media (min-width: 640px) {
  .c-thanksSet {
    padding-top: 20px;
  }
}
.c-thanksSet {
  /* 注文状況のステータスカードに近い紙テクスチャ枠 */
}
.c-thanksSet__statusCard {
  background-color: var(--card-bg);
  background-image: url("/assets/images/texture01_paper01.png");
  background-repeat: repeat;
  border: none;
  border-radius: 10px;
  padding: 20px 10px;
  margin-bottom: 0;
  text-align: center;
  box-sizing: border-box;
}
.c-thanksSet__statusCard .m-text01--trackOrderNum {
  font-size: 13px;
  color: var(--text-light);
  margin: 0 0 4px;
}
.c-thanksSet__statusCard .m-text01--trackOrderNum .moduleWrapper {
  display: block;
}
.c-thanksSet .item.is-emoji.m-thanksStatusHero.m-image {
  width: 72px;
  height: 72px;
  box-sizing: border-box;
  margin: 12px auto 8px;
  padding: 0;
  background: #f8fffd;
  border: 4px solid #d4d4d4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.c-thanksSet .item.is-emoji.m-thanksStatusHero.m-image .moduleWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.c-thanksSet .item.is-emoji.m-thanksStatusHero.m-image .moduleWrapper img {
  display: block;
  width: 52px;
  height: 52px;
  max-width: calc(100% - 4px);
  max-height: calc(100% - 4px);
  object-fit: contain;
}
.c-thanksSet {
  /* m-trackStatusLabel と同型・色は青 */
}
.c-thanksSet .m-text01--thanksTitle {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}
.c-thanksSet .m-text01--thanksTitle .moduleWrapper {
  display: block;
  color: var(--primary);
}
.c-thanksSet {
  /* m-text01--trackStatusSub と同型 */
}
.c-thanksSet .m-text01--thanksMsg {
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  margin: 4px 0 0;
}
.c-thanksSet .m-text01--thanksMsg .moduleWrapper {
  display: block;
  color: #000000;
}
.c-thanksSet .block.is-cash {
  border: 1px solid var(--color-red);
  border-radius: 0;
  padding: 10px;
  background: var(--color-white);
  text-align: center;
  box-sizing: border-box;
  margin-top: 16px;
}
.c-thanksSet .m-text01--cashNotice {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-red);
  text-align: center;
}
.c-thanksSet .m-text01--cashNotice .moduleWrapper {
  display: block;
  font-weight: 700;
  color: var(--color-red);
}
.c-thanksSet .m-text01--cashNotice strong {
  font-weight: 700;
}
.c-thanksSet .block.is-cash[hidden] {
  display: none !important;
}
.c-thanksSet__pickupStoreCard {
  margin-top: 16px;
  padding: 15px;
  background: var(--color-white);
  border-radius: 4px;
  text-align: left;
  box-sizing: border-box;
}
.c-thanksSet__pickupStoreCard[hidden] {
  display: none !important;
}
.c-thanksSet__pickupStoreLine {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
}
.c-thanksSet__pickupStoreLabel {
  flex-shrink: 0;
  font-weight: 700;
  white-space: nowrap;
}
.c-thanksSet__pickupStoreName {
  flex: 1;
  min-width: 0;
  text-align: right;
  word-break: break-word;
  font-weight: 500;
}
.c-thanksSet__pickupStoreRule {
  height: 0;
  margin: 12px 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.c-thanksSet__pickupStoreAddrCol {
  flex: 1;
  min-width: 0;
  text-align: right;
}
.c-thanksSet__pickupStoreAddrText {
  display: block;
  word-break: break-word;
  font-weight: 500;
}
.c-thanksSet__pickupStoreMapLink {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
}
.c-thanksSet__pickupStoreMapLink[hidden] {
  display: none !important;
}
.c-thanksSet__actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.c-thanksSet .m-btn01.m-btn01--thanksTrack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 188px;
  padding: 15px 10px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  background: var(--primary);
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  transition: opacity 0.3s;
}
.c-thanksSet .m-btn01.m-btn01--thanksTrack[hidden] {
  display: none !important;
}
.c-thanksSet .m-btn01.m-btn01--thanksTrack .moduleWrapper {
  display: block;
}
@media (min-width: 640px) {
  .c-thanksSet .m-btn01.m-btn01--thanksTrack:hover {
    opacity: 0.7;
  }
}
.c-thanksSet__cancelNotes {
  width: 100%;
  margin-top: 14px;
  box-sizing: border-box;
  text-align: left;
}
.c-thanksSet__cancelNote {
  margin: 8px 0 0;
}
.c-thanksSet__cancelNote:first-child {
  margin-top: 0;
}
.c-thanksSet {
  /* 折り返し時に「※」の下へ本文が入り込まない（ぶら下げインデント） */
}
.c-thanksSet__cancelNoteText {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  padding-left: 1.15em;
  text-indent: -1.15em;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}
.c-thanksSet {
  /* 親の text-align:center が継承されないよう明細エリアは左寄せ（見出し画像は下記トラック側ルールで中央） */
}
.c-thanksSet__detailShell {
  text-align: left;
}

/* -------------------------------------------------------------------------- */
/* Messages */
/* -------------------------------------------------------------------------- */
.m-msg--error {
  color: var(--error);
  padding: 20px;
}
.m-msg--muted {
  color: var(--text-light);
}
.m-msg--padded {
  padding: 20px;
}
.m-msg--center {
  text-align: center;
}
.m-msg--center .moduleWrapper {
  display: block;
}
.m-msg--orderClosed {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}
.m-msg--orderClosed .moduleWrapper {
  display: block;
}

/* -------------------------------------------------------------------------- */
/* トップ: c-mainvisualSet / c-ctaSet / c-storeInfoSet */
/* -------------------------------------------------------------------------- */
.c-mainvisualSet {
  margin-top: 0;
  padding: 10px 0;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .c-mainvisualSet {
    padding: 20px 0;
  }
}
.c-mainvisualSet .item.is-figure.m-image .moduleWrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.c-ctaSet {
  position: relative;
  margin: 0;
  padding: 30px 10px;
  box-sizing: border-box;
  background-color: #413c33;
}
@media (min-width: 640px) {
  .c-ctaSet {
    padding: 60px 20px;
  }
}
.c-ctaSet::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/texture_japanese01.png");
  background-repeat: repeat;
  opacity: 0.06;
  pointer-events: none;
}
.c-ctaSet .componentWrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.c-ctaSet .group.is-main,
.c-ctaSet .block.is-action,
.c-ctaSet .area.is-button,
.c-ctaSet .box {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.c-ctaSet .item.is-cta {
  width: 100%;
  max-width: 460px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.c-ctaSet .m-btn01.m-btn01--cta {
  display: block;
  width: 100%;
  max-width: 460px;
  min-width: 230px;
  padding: 0;
  margin: 0;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: transparent;
  color: inherit;
  box-sizing: border-box;
  filter: drop-shadow(2.5px 2.5px 0 #9c7171);
}
@media (min-width: 640px) {
  .c-ctaSet .m-btn01.m-btn01--cta {
    min-width: 0;
    filter: drop-shadow(5px 5px 0 #9c7171);
  }
  .c-ctaSet .m-btn01.m-btn01--cta:hover:not(.is-disabled) {
    opacity: 0.7;
  }
}
.c-ctaSet .m-btn01.m-btn01--cta .moduleWrapper {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  line-height: 0;
}
@media (min-width: 640px) {
  .c-ctaSet .m-btn01.m-btn01--cta .moduleWrapper {
    border-radius: 10px;
  }
}
.c-ctaSet .m-btn01.m-btn01--cta .moduleWrapper img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 552px;
  margin: 0 auto;
}
.c-ctaSet .m-btn01.m-btn01--cta:active {
  opacity: 0.7;
}
.c-ctaSet .m-btn01.m-btn01--cta.is-disabled {
  pointer-events: none;
  opacity: 0.45;
  cursor: not-allowed;
}

.c-storeInfoSet {
  /* l-sectionWrapper の左右ガターを相殺し、コンテンツ列いっぱいに背景を敷く */
  width: calc(100% + 2 * var(--order-page-gutter-x));
  max-width: none;
  margin-left: calc(-1 * var(--order-page-gutter-x));
  margin-right: calc(-1 * var(--order-page-gutter-x));
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px 10px;
  box-sizing: border-box;
  background-color: #f1f1f1;
}
@media (min-width: 640px) {
  .c-storeInfoSet {
    padding: 60px 20px;
  }
}
.c-storeInfoSet .m-text01--sectionTitle {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
}
.c-storeInfoSet .componentWrapper,
.c-storeInfoSet .group.is-main,
.c-storeInfoSet .block.is-cards,
.c-storeInfoSet .area.is-grid {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.c-storeInfoSet .box.is-storeGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
  width: 100%;
  box-sizing: border-box;
}
.c-storeInfoSet {
  /* メニュー「店舗受け取り」の店舗ラジオに近いカード（トップ店舗一覧・非インタラクティブ） */
}
.c-storeInfoSet .m-storeCardFront {
  min-width: 0;
  border: none;
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .c-storeInfoSet .m-storeCardFront {
    padding: 12px 16px;
  }
}
.c-storeInfoSet .m-storeCardFront__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}
.c-storeInfoSet .m-storeCardFront__photo {
  width: 100%;
  align-self: stretch;
  box-sizing: border-box;
}
.c-storeInfoSet .m-storeCardFront__photo.m-image .moduleWrapper img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
@media (min-width: 640px) {
  .c-storeInfoSet .m-storeCardFront__photo.m-image .moduleWrapper img {
    border-radius: 8px;
  }
}
.c-storeInfoSet .m-storeCardFront__name {
  width: 100%;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin: 0;
}
.c-storeInfoSet .m-storeCardFront__name .moduleWrapper {
  display: block;
  word-break: break-word;
}
.c-storeInfoSet .block.is-storeInfoMeta {
  margin-top: 16px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .c-storeInfoSet .block.is-storeInfoMeta {
    margin-top: 20px;
  }
}
.c-storeInfoSet .box.is-storeInfoMetaStack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .c-storeInfoSet .box.is-storeInfoMetaStack {
    gap: 18px;
  }
}
.c-storeInfoSet .m-storeInfoRow {
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}
.c-storeInfoSet .m-storeInfoRow__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.c-storeInfoSet .m-storeInfoRow__title .moduleWrapper {
  display: block;
}
.c-storeInfoSet .m-storeInfoRow__body {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
}
.c-storeInfoSet .m-storeInfoRow__body .moduleWrapper {
  display: block;
}

/* -------------------------------------------------------------------------- */
/* 注文状況 track.php（c-trackPageSet / c-trackStatusSet ほか） */
/* -------------------------------------------------------------------------- */
.l-page--track {
  --track-warning: #ff9800;
  --track-info: #1565c0;
}

.c-trackPageSet {
  width: 100%;
  box-sizing: border-box;
  --track-page-inner-pad: 10px;
}
@media (min-width: 640px) {
  .c-trackPageSet {
    --track-page-inner-pad: 20px;
  }
}
.c-trackPageSet > .componentWrapper {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: var(--track-page-inner-pad) var(--track-page-inner-pad) 0;
  box-sizing: border-box;
}
.c-trackPageSet .block.is-back {
  margin-top: 8px;
}
.c-trackPageSet .block.is-back .area.is-action .box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-trackPageSet .block.is-back .item.is-link.m-btn01.m-btn01--sub {
  text-decoration: none;
  text-align: center;
}

.c-trackStatusSet .block.is-statusCard {
  background-color: var(--card-bg);
  background-image: url("/assets/images/texture01_paper01.png");
  background-repeat: repeat;
  border: none;
  border-radius: 10px;
  padding: 20px 10px;
  margin-bottom: 16px;
  text-align: center;
  box-sizing: border-box;
}
.c-trackStatusSet .m-text01--trackOrderNum {
  font-size: 13px;
  color: var(--text-light);
  margin: 0 0 4px;
}
.c-trackStatusSet .m-text01--trackOrderNum .moduleWrapper {
  display: block;
}
.c-trackStatusSet .item.is-emoji.m-trackStatusHero.m-image {
  width: 72px;
  height: 72px;
  box-sizing: border-box;
  margin: 12px auto 8px;
  padding: 0;
  background: #f8fffd;
  border: 4px solid #d4d4d4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.c-trackStatusSet .item.is-emoji.m-trackStatusHero.m-image .moduleWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.c-trackStatusSet .item.is-emoji.m-trackStatusHero.m-image .moduleWrapper img {
  display: block;
  width: 52px;
  height: 52px;
  max-width: calc(100% - 4px);
  max-height: calc(100% - 4px);
  object-fit: contain;
}
.c-trackStatusSet .m-trackStatusLabel {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}
.c-trackStatusSet .m-trackStatusLabel .moduleWrapper {
  display: block;
  color: var(--color-red);
}
.c-trackStatusSet .m-text01--trackStatusSub {
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  margin: 4px 0 0;
}
.c-trackStatusSet .m-text01--trackStatusSub .moduleWrapper {
  display: block;
  color: #000000;
}
.c-trackStatusSet .item.is-progress {
  margin-top: 0;
}

/* -------------------------------------------------------------------------- */
/* c-trackDeliveryInfoSet（注文状況・お届け情報エリア） */
/* -------------------------------------------------------------------------- */
.c-trackDeliveryInfoSet,
.c-thanksSet__detailShell {
  background: #f1f1f1;
  /* l-pageCard 内で親の横パディングを相殺し、カード幅いっぱいに背景を広げる */
  width: calc(100% + 2 * var(--track-page-inner-pad));
  max-width: none;
  margin-left: calc(-1 * var(--track-page-inner-pad));
  margin-right: calc(-1 * var(--track-page-inner-pad));
  margin-top: 20px;
  box-sizing: border-box;
  padding: 30px var(--track-page-inner-pad);
}
@media (min-width: 640px) {
  .c-trackDeliveryInfoSet,
  .c-thanksSet__detailShell {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.c-trackDeliveryInfoSet > .componentWrapper,
.c-thanksSet__detailShell > .componentWrapper {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}
.c-trackDeliveryInfoSet .group.is-stack,
.c-thanksSet__detailShell .group.is-stack {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.c-trackDeliveryInfoSet .block.is-heading .area.is-title .box,
.c-thanksSet__detailShell .block.is-heading .area.is-title .box {
  text-align: center;
}
.c-trackDeliveryInfoSet .m-menuTitleImg--form,
.c-thanksSet__detailShell .m-menuTitleImg--form {
  margin: 0 0 20px;
}
.c-trackDeliveryInfoSet .block.is-infoRow,
.c-thanksSet__detailShell .block.is-infoRow {
  margin: 0 0 16px;
}
.c-trackDeliveryInfoSet .m-text01--trackInfoLabel,
.c-thanksSet__detailShell .m-text01--trackInfoLabel {
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 6px;
}
.c-trackDeliveryInfoSet .m-text01--trackInfoLabel .moduleWrapper,
.c-thanksSet__detailShell .m-text01--trackInfoLabel .moduleWrapper {
  display: block;
  color: #000000;
}
.c-trackDeliveryInfoSet .m-text01--trackInfoValue,
.c-thanksSet__detailShell .m-text01--trackInfoValue {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  word-break: break-word;
}
.c-trackDeliveryInfoSet .m-text01--trackInfoValue .moduleWrapper,
.c-thanksSet__detailShell .m-text01--trackInfoValue .moduleWrapper {
  display: block;
}
.c-trackDeliveryInfoSet .m-text01--trackMapLink,
.c-thanksSet__detailShell .m-text01--trackMapLink {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
}
.c-trackDeliveryInfoSet .m-text01--trackMapLink a,
.c-thanksSet__detailShell .m-text01--trackMapLink a {
  color: var(--primary, #1565c0);
  text-decoration: underline;
}
.c-trackDeliveryInfoSet .m-text01--trackMapLink .moduleWrapper,
.c-thanksSet__detailShell .m-text01--trackMapLink .moduleWrapper {
  display: block;
}
.c-trackDeliveryInfoSet .m-text01--trackOrderHeading,
.c-thanksSet__detailShell .m-text01--trackOrderHeading {
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  margin: 8px 0 12px;
}
.c-trackDeliveryInfoSet .m-text01--trackOrderHeading .moduleWrapper,
.c-thanksSet__detailShell .m-text01--trackOrderHeading .moduleWrapper {
  display: block;
  color: #000000;
}
.c-trackDeliveryInfoSet .box.is-orderCard,
.c-thanksSet__detailShell .box.is-orderCard {
  background: var(--card-bg);
  border: none;
  border-radius: 4px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderStoreGroup,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderStoreGroup {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderStoreGroup:first-child,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderStoreGroup:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderStoreHead,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderStoreHead {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--primary);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
  box-sizing: border-box;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderStoreHead .moduleWrapper,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderStoreHead .moduleWrapper {
  display: block;
  color: inherit;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderLine,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderLine {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 6px 0;
  gap: 12px;
  box-sizing: border-box;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderLine__left,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderLine__left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderLine .m-text01,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderLine .m-text01 {
  margin: 0;
  min-width: 0;
  font-size: 10px;
  line-height: 1.4;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderLine .m-text01 .moduleWrapper,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderLine .m-text01 .moduleWrapper {
  display: block;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderLine__left > .m-text01,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderLine__left > .m-text01 {
  font-weight: 400;
  color: var(--text);
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderLine__price,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderLine__price {
  font-weight: 700;
  flex-shrink: 0;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderStoreGroup .m-trackOrderLine:last-child,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderStoreGroup .m-trackOrderLine:last-child {
  padding-bottom: 0;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderTotal,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderTotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #999999;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  box-sizing: border-box;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderTotal .m-text01,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderTotal .m-text01 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
}
.c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderTotal .m-text01 .moduleWrapper,
.c-thanksSet__detailShell .box.is-orderCard .m-trackOrderTotal .m-text01 .moduleWrapper {
  display: block;
  color: #000000;
}

.m-trackProgress {
  --track-progress-dot-size: 36px;
  --track-progress-line-height: 2px;
  display: flex;
  /* ラベル付きカラム全体ではなく、ドット行に接続線の縦位置を合わせる */
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  gap: 9px;
  margin: 24px 0 8px;
  box-sizing: border-box;
}

.m-trackProgress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
}

.m-trackProgress__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 2;
  transition: background 0.4s, color 0.4s, box-shadow 0.4s;
}
.m-trackProgress__dot.is-active {
  background: var(--primary);
  color: var(--color-white);
  box-shadow: 0 0 0 6px var(--primary-light);
}
.m-trackProgress__dot.is-passed {
  background: var(--success);
  color: var(--color-white);
}
.m-trackProgress__dot {
  /* 進行バー: flow_img（_active / _inactive はファイル名で切替） */
}
.m-trackProgress__dot.m-image {
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  padding: 0;
  border-radius: 50%;
  background: #f8fffd;
  border: 2px solid #d4d4d4;
  box-shadow: none;
}
.m-trackProgress__dot.m-image.is-active, .m-trackProgress__dot.m-image.is-passed {
  background: #f8fffd;
  color: inherit;
  box-shadow: none;
}
.m-trackProgress__dot.m-image .moduleWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.m-trackProgress__dot.m-image .moduleWrapper img {
  display: block;
  width: 26px;
  height: 26px;
  max-width: calc(100% - 4px);
  max-height: calc(100% - 4px);
  object-fit: contain;
}

.m-trackProgress__label {
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  color: #dbdbdb;
}
.m-trackProgress__label .moduleWrapper {
  display: block;
  color: inherit;
}
.m-trackProgress__label.is-active .moduleWrapper {
  color: var(--color-red);
}
.m-trackProgress__label.is-passed .moduleWrapper {
  color: #000000;
}

.m-trackProgress__line {
  flex: 0 0 30px;
  width: 30px;
  min-width: 30px;
  height: var(--track-progress-line-height);
  /* ドット（36px）の上下中央に 2px のラインを置く（ラベル高さは無視） */
  margin: calc((var(--track-progress-dot-size) - var(--track-progress-line-height)) / 2) 0 0;
  flex-shrink: 0;
  background: #dddddd;
  z-index: 1;
  transition: background 0.25s;
}
.m-trackProgress__line.is-passed {
  background: var(--color-blue);
}

.c-trackAutoUpdateSet .m-text01--trackAutoUpdate {
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  margin: 16px 0 0;
}
.c-trackAutoUpdateSet .m-text01--trackAutoUpdate .moduleWrapper {
  display: inline;
}
.c-trackAutoUpdateSet .m-trackAutoUpdate__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
  animation: m-trackAutoUpdate-pulse 2s infinite;
}

@keyframes m-trackAutoUpdate-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.c-trackErrorSet .block.is-body .area.is-content .box {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  box-sizing: border-box;
}
.c-trackErrorSet .m-text01--trackErrorTitle {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}
.c-trackErrorSet .m-text01--trackErrorTitle .moduleWrapper {
  display: block;
}
.c-trackErrorSet .m-text01--trackErrorText {
  font-size: 14px;
  margin: 0;
}
.c-trackErrorSet .m-text01--trackErrorText .moduleWrapper {
  display: block;
}

/* -------------------------------------------------------------------------- */
/* レガシー互換（他ページ・未移行ブロック用に最小限残す） */
/* -------------------------------------------------------------------------- */
.hero-message {
  margin-top: 20px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  white-space: pre-line;
}
.hero-message:empty {
  display: none;
}

.info-box {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
}
.info-box dt {
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
  margin-top: 10px;
}
.info-box dt:first-child {
  margin-top: 0;
}
.info-box dd {
  margin: 0;
  padding-left: 4px;
}
.info-box .area-note {
  color: var(--error);
  font-weight: 600;
}
.info-box .cash-note {
  font-weight: 700;
}

/* ==========================================================================
   PC（640px〜）: 14px 以下中心のタイポ・余白・角丸・線を全体的に調整
   ========================================================================== */
@media (min-width: 640px) {
  .c-closedBannerSet {
    padding: 16px 18px;
    font-size: 16px;
  }
  .c-backNavSet {
    font-size: 15px;
    margin-bottom: 14px;
  }
  .c-noticeSet .group.is-stack .block.is-noticeCard {
    padding: 14px 18px;
    font-size: 16px;
  }
  .c-noticeSet .group.is-stack .block.is-noticeCard .item.is-title {
    font-size: 16px;
  }
  .c-deliveryOptionsSet .m-text01--panelTitle {
    font-size: 17px;
  }
  .c-deliveryOptionsSet .m-text01--areaAlert {
    font-size: 15px;
  }
  .c-deliveryOptionsSet .m-text01--areaLead {
    font-size: 16px;
  }
  .c-deliveryOptionsSet .m-areaResult {
    font-size: 15px;
  }
  .c-deliveryOptionsSet .m-areaResult.is-ok {
    font-size: 14px;
  }
  .c-menuListSet .m-text01--menuAreaLead {
    font-size: 14px;
  }
  .c-menuListSet .m-text01--storeMenuTitle {
    font-size: 18px;
    margin-top: 24px;
    padding-bottom: 8px;
  }
  .c-menuItemSet .m-text01--productDesc .moduleWrapper {
    font-size: 14px;
    line-height: 1.45;
  }
  .c-orderFormSet {
    padding-bottom: 28px;
  }
  .c-orderFormSet .m-text01--sectionTitle {
    font-size: 18px;
    margin: 28px 0 14px;
  }
  .c-orderFormSet .block.is-field {
    margin-bottom: 18px;
  }
  .c-orderFormSet .block.is-field .area.is-label label,
  .c-orderFormSet .block.is-field .area.is-label .m-text01 {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .c-orderFormSet .block.is-field .m-formInput,
  .c-orderFormSet .block.is-field .m-formTextarea {
    border-radius: 8px;
    padding: 12px 16px;
  }
  .c-orderFormSet .block.is-field .m-pickupStoreDetail {
    padding: 14px 18px;
    border-radius: 8px;
  }
  .c-orderFormSet .block.is-field .m-text01--pickupStoreAddrHint .moduleWrapper {
    font-size: 15px;
  }
  .c-orderFormSet .block.is-field .m-text01--hint,
  .c-orderFormSet .block.is-field .m-text01--error {
    font-size: 14px;
    margin-top: 6px;
  }
  .c-orderFormSet .block.is-field .m-text01--success {
    font-size: 14px;
    border-radius: 4px;
  }
  .c-orderFormSet .block.is-cart {
    padding: 18px 20px;
    border-radius: var(--radius);
  }
  .c-orderFormSet .m-text01--reservation {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .c-orderFormSet .m-text01--businessClosed {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .c-orderFormSet .m-timeSlots {
    gap: 10px;
  }
  .c-orderFormSet .m-cartStoreGroup__title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .c-orderFormSet .m-cartLine .moduleWrapper {
    font-size: 16px;
    padding: 6px 0;
  }
  .c-orderFormSet .m-cartTotal .moduleWrapper {
    font-size: 20px;
    padding-top: 12px;
    margin-top: 12px;
  }
  .c-orderFormSet .m-btn01.m-btn01--formSubmit {
    font-size: 16px;
    padding: 16px 20px;
    min-width: 220px;
  }
  .c-orderFormSet .block.is-back .m-btn01.m-btn01--sub {
    font-size: 14px;
    padding: 12px 18px;
    min-width: 170px;
  }
  .c-cartFooterSet {
    padding-top: 14px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
  .c-cartFooterSet .c-cartFooterSet__status {
    font-size: 15px;
  }
  .c-cartFooterSet .c-cartFooterSet__panel {
    padding: 14px 18px;
    border-radius: 8px;
  }
  .c-cartFooterSet .c-cartFooterSet__yen {
    font-size: 17px;
  }
  .c-cartFooterSet .c-cartFooterSet__amount {
    font-size: 24px;
  }
  .c-cartFooterSet .c-cartFooterSet__submit {
    font-size: 16px;
    padding: 10px 20px;
  }
  .c-cartFooterSet .c-cartFooterSet__minNote {
    font-size: 14px;
    margin-top: 12px;
  }
  .c-thanksSet {
    padding-top: 24px;
  }
  .c-thanksSet__statusCard {
    border-radius: 14px;
    padding: 28px 24px;
  }
  .c-thanksSet__statusCard .m-text01--trackOrderNum {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .c-thanksSet .item.is-emoji.m-thanksStatusHero.m-image {
    width: 88px;
    height: 88px;
    margin: 16px auto 12px;
    border-width: 3px;
  }
  .c-thanksSet .item.is-emoji.m-thanksStatusHero.m-image .moduleWrapper img {
    width: 62px;
    height: 62px;
  }
  .c-thanksSet .m-text01--thanksTitle {
    font-size: 20px;
    line-height: 1.35;
  }
  .c-thanksSet .m-text01--thanksMsg {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 8px;
  }
  .c-thanksSet .block.is-cash {
    border-width: 2px;
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 20px;
  }
  .c-thanksSet .m-text01--cashNotice {
    font-size: 15px;
    line-height: 1.55;
  }
  .c-thanksSet__pickupStoreCard {
    border-radius: 10px;
    padding: 20px 22px;
    margin-top: 20px;
  }
  .c-thanksSet__pickupStoreLine {
    font-size: 15px;
    gap: 14px;
  }
  .c-thanksSet__pickupStoreMapLink {
    font-size: 15px;
    margin-top: 10px;
  }
  .c-thanksSet__pickupStoreRule {
    margin: 14px 0;
    border-top-width: 2px;
  }
  .c-thanksSet__actions {
    margin-top: 22px;
  }
  .c-thanksSet .m-btn01.m-btn01--thanksTrack {
    font-size: 16px;
    padding: 16px 28px;
    min-width: 220px;
  }
  .c-thanksSet__cancelNotes {
    margin-top: 18px;
  }
  .c-thanksSet__cancelNoteText {
    font-size: 15px;
    line-height: 1.55;
  }
  .c-storeInfoSet .m-text01--sectionTitle {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .c-storeInfoSet .m-storeCardFront__name {
    font-size: 17px;
  }
  .c-storeInfoSet .m-storeInfoRow__title {
    font-size: 17px;
  }
  .c-storeInfoSet .m-storeInfoRow__body {
    font-size: 16px;
  }
  .c-trackStatusSet .block.is-statusCard {
    border-radius: 14px;
    padding: 28px 24px;
    margin-bottom: 20px;
  }
  .c-trackStatusSet .m-text01--trackOrderNum {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .c-trackStatusSet .item.is-emoji.m-trackStatusHero.m-image {
    width: 88px;
    height: 88px;
    margin: 16px auto 12px;
    border-width: 3px;
  }
  .c-trackStatusSet .item.is-emoji.m-trackStatusHero.m-image .moduleWrapper img {
    width: 62px;
    height: 62px;
  }
  .c-trackStatusSet .m-trackStatusLabel {
    font-size: 20px;
    line-height: 1.35;
  }
  .c-trackStatusSet .m-text01--trackStatusSub {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 8px;
  }
  .c-trackStatusSet .item.is-progress {
    margin-top: 4px;
  }
  .c-trackDeliveryInfoSet .m-menuTitleImg--form,
  .c-thanksSet__detailShell .m-menuTitleImg--form {
    margin-bottom: 24px;
  }
  .c-trackDeliveryInfoSet .block.is-infoRow,
  .c-thanksSet__detailShell .block.is-infoRow {
    margin-bottom: 18px;
  }
  .c-trackDeliveryInfoSet .m-text01--trackInfoLabel,
  .c-thanksSet__detailShell .m-text01--trackInfoLabel {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .c-trackDeliveryInfoSet .m-text01--trackInfoValue,
  .c-thanksSet__detailShell .m-text01--trackInfoValue {
    font-size: 17px;
    line-height: 1.65;
  }
  .c-trackDeliveryInfoSet .m-text01--trackMapLink,
  .c-thanksSet__detailShell .m-text01--trackMapLink {
    font-size: 15px;
    margin-top: 14px;
  }
  .c-trackDeliveryInfoSet .m-text01--trackOrderHeading,
  .c-thanksSet__detailShell .m-text01--trackOrderHeading {
    font-size: 15px;
    margin: 10px 0 14px;
  }
  .c-trackDeliveryInfoSet .box.is-orderCard,
  .c-thanksSet__detailShell .box.is-orderCard {
    border-radius: 10px;
    padding: 20px 18px;
  }
  .c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderStoreHead,
  .c-thanksSet__detailShell .box.is-orderCard .m-trackOrderStoreHead {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderLine,
  .c-thanksSet__detailShell .box.is-orderCard .m-trackOrderLine {
    padding: 8px 0;
  }
  .c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderLine .m-text01,
  .c-thanksSet__detailShell .box.is-orderCard .m-trackOrderLine .m-text01 {
    font-size: 14px;
    line-height: 1.5;
  }
  .c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderTotal,
  .c-thanksSet__detailShell .box.is-orderCard .m-trackOrderTotal {
    font-size: 15px;
    padding-top: 12px;
    margin-top: 12px;
    border-top-width: 2px;
  }
  .c-trackDeliveryInfoSet .box.is-orderCard .m-trackOrderTotal .m-text01,
  .c-thanksSet__detailShell .box.is-orderCard .m-trackOrderTotal .m-text01 {
    font-size: 15px;
  }
  .m-trackProgress {
    --track-progress-dot-size: 40px;
    gap: 14px;
    margin: 32px 0 12px;
  }
  .m-trackProgress__dot {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .m-trackProgress__dot.m-image {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
  .m-trackProgress__dot.m-image .moduleWrapper img {
    width: 28px;
    height: 28px;
  }
  .m-trackProgress__label {
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.35;
  }
  .m-trackProgress__line {
    flex-basis: 34px;
    width: 34px;
    min-width: 34px;
  }
  .c-trackAutoUpdateSet .m-text01--trackAutoUpdate {
    font-size: 13px;
  }
  .c-trackErrorSet .m-text01--trackErrorText {
    font-size: 16px;
  }
  .hero-message {
    padding: 18px 22px;
    font-size: 16px;
    border-radius: var(--radius);
  }
  .info-box {
    padding: 18px 22px;
    font-size: 16px;
    border-radius: var(--radius);
  }
  .info-box dt {
    font-size: 15px;
  }
}
/* iOS Safari: 記入系フォームで 16px 未満だとフォーカス時にページが拡大される */
textarea,
select,
input:is([type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=password],
[type=number],
[type=date],
[type=datetime-local],
[type=month],
[type=week],
[type=time]),
input:not([type]) {
  font-size: max(16px, 1em);
}
