@charset "utf-8";
/*===============================================

●共通設定 & リセット

===============================================*/
#xmas2026 *, *::before, *::after {
  box-sizing: border-box;
}
#xmas2026 article {
  width: 100%;
  margin: 0;
}
#xmas2026 img {
  width: 100%;
  height: auto;
}
#xmas2026 .fix {
  clear: both;
}
#xmas2026 .w90 {
  width: 90%;
  height: auto;
  margin: 0 auto;
}
#xmas2026 .attention {
  background-color: #ffff99;
  font-size: clamp(1.2rem, 0.566rem + 1.38vw, 1.6rem);
  color: #e30000;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  padding: 0.6rem 0;
}
a.ly-mod-btn.ly-icn-blank span {
  position: absolute;
  top: 34%;
  right: 18px;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 736px) {
  a.ly-mod-btn.ly-icn-blank span {
    position: absolute;
    top: 33%;
    right: 18px;
    width: 15px;
    height: 15px;
  }
}
@media screen and (min-width: 737px) {
  #contents {
    min-height: 100%;
    background-image: url("../images/side_bg.webp"), /* ノイズSVG */ url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0.25 0 0 0 0 0.125 0 0 0 0 0.06 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E"), radial-gradient(circle, rgba(0, 0, 0, 0) 80%, rgba(150, 70, 0, 0.25) 100%);
    background-color: #faf6ee;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom center, center;
    background-size: 100% auto, cover;
  }
}
@media screen and (max-width:736px) {
  #contents::before {
    background-image: /* ノイズSVG */ url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0.25 0 0 0 0 0.125 0 0 0 0 0.06 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E"), radial-gradient(circle, rgba(0, 0, 0, 0) 60%, rgba(150, 70, 0, 0.25) 100%);
    background-color: #faf6ee;
    background-size: cover;
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background-position: bottom;
    z-index: -100;
    width: 100%;
    height: 100%;
  }
  .ly-btn-pagetop {
    background: #fff;
  }
  footer {
    background: #fff;
    z-index: -2;
  }
}
/*===============================================
● top sub共通
===============================================*/
/*===== common ======*/
* {
  min-height: 0vw;
}
/* prettier-ignore */
#xmas2026 h1, h2, h3, h4, h5, p, figure {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* prettier-ignore */
#xmas2026 ul, li, dl, dt, dd {
  margin: 0;
  list-style: none;
  padding: 0;
}
/* prettier-ignore */
#xmas2026 a:link, a:visited, a:hover, a:active, a:focus {
  text-decoration: none;
}
#xmas2026 button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}
#xmas2026 img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
}
#xmas2026 a.ly-mod-btn {
  color: #0171a6 !important;
}
#xmas2026 main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
/* ==================================
   雪を降らせる設定
================================== */
/* PC表示（デフォルト）：ヘッダー95px分を下げる */
.snow-container {
  position: fixed;
  top: 112px; /* ヘッダーの高さ */
  left: 0;
  width: 100%;
  height: calc(100vh - 112px); /* 画面の高さからヘッダー分を引く */
  pointer-events: none;
  z-index: 10;
  overflow: hidden; /* コンテナ外（上部）の雪を隠す */
}
/* SP表示（736px以下）：ヘッダー54px分を下げる */
@media screen and (max-width: 736px) {
  .snow-container {
    top: 54px;
    height: calc(100vh - 54px);
  }
}
/* 雪の粒（基本スタイル） */
/*.snow {
  position: absolute;
  top: -15px; 
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
}*/
/* 雪の粒（画像を降らせるスタイルに変更） */
.snow {
  position: absolute;
  top: -50px; /* 画面にいきなり現れないよう、画像サイズ分だけ上に隠す */
  width: 30px; /* 画像の表示サイズ（横） */
  height: 30px; /* 画像の表示サイズ（縦） */
  /* ▼ ここで画像を読み込む */
  background-image: url("../images/snow.svg"); /* 降らせたい画像のパスを指定 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
/* 奥行きを出すための3レイヤー */
.snow.front {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1.2);
}
.snow.middle {
  opacity: 1;
  filter: blur(1px);
  transform: scale(0.9);
}
.snow.back {
  opacity: 1;
  filter: blur(2px);
  transform: scale(0.6);
}
/*===============================================
● youtube
===============================================*/
.youtube_area {
  width: 95%;
  margin: 0 auto;
}
.youtube {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: 0;
  overflow: hidden;
  margin-top: 0px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 736px) {
  .youtube {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
    margin-top: 0px;
  }
  .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
/*===============================================
● title
===============================================*/
#xmas2026 .tit_h2 {
  position: relative;
  margin: 2rem auto;
  padding-top: 76px;
  font-size: 2rem;
  text-align: center;
  font-family: "Great Vibes", cursive;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-style: normal;
  color: #3d3229;
  text-shadow: 2px 2px 0px rgba(121, 91, 55, 0.3);
}
#xmas2026 .adjust-tight {
  letter-spacing: -0.2em;
}
#xmas2026 .tit_h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  height: 71px;
  margin: 0;
  background-image: url("../images/tit_head.svg");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.2));
}
#xmas2026 .tit_pickup {
  color: #f9ce57;
}
@media screen and (max-width: 736px) {
  #xmas2026 .tit_h2 {
    margin: 1rem auto;
    padding-top: 56px;
    font-size: 1.5rem;
  }
  #xmas2026 .tit_h2::before {
    width: 230px;
  }
}
/* 英語のサブタイトルを改行させてデザインを整える */
#xmas2026 .en-sub {
  display: block; /* spanをブロック要素にして改行させる */
  font-size: clamp(0.95rem, 0.712rem + 0.52vw, 1.1rem);
  color: #666; /* サブテキストらしい色に */
  margin-top: -5px;
}
#xmas2026 .en-sub_white {
  display: block; /* spanをブロック要素にして改行させる */
  font-size: clamp(0.95rem, 0.712rem + 0.52vw, 1.1rem);
  color: #f9e8b8; /* サブテキストらしい色に */
  margin-top: -5px;
}
/*===== ===== ===== ===== ===== ===== 
・soldout
====== ===== ===== ===== ===== ===== */
.mask_wrap {
  position: relative;
}
.mask_soldout {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
}
.mask_soldout .soldout {
  background: rgba(63, 57, 57, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: 15px;
}
.mask_soldout .soldout > p {
  font-size: clamp(1.3rem, 1.009rem + 1.25vw, 2rem);
  font-weight: bold;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.end_band {
  background: #a73232;
  padding: 1rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 1.5rem;
  position: relative;
}
.item_list .mask_soldout .soldout {
  border-radius: 0;
}
.item_list .mask_soldout .soldout > p {
  font-size: clamp(1.7rem, 1.591rem + 0.55vw, 2rem);
}
.top_item_list .mask_soldout .soldout {
  border-radius: 0;
}
.top_item_list .mask_soldout .soldout > p {
  font-size: clamp(1rem, 0.855rem + 0.73vw, 1.4rem);
}
/* ==================================
   KVエリア
   ================================== */
#xmas2026 .kv_area {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-image: /* ノイズSVG */ url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0.25 0 0 0 0 0.125 0 0 0 0 0.06 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"), linear-gradient(150deg, rgba(6, 45, 42, 1) 10%, rgba(5, 86, 74, 1) 40% 68%, rgba(6, 45, 42, 1) 90%); /* グリーン背景 */
  overflow: hidden; /* 念のための横揺れ・はみ出し防止 */
}
/* ==================================
   KVエリア_category背景色
   ================================== */
#xmas2026 .cake {
  background-image: /* ノイズSVG */ url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0.25 0 0 0 0 0.125 0 0 0 0 0.06 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"), linear-gradient(150deg, rgba(166, 21, 28, 1) 10%, rgba(216, 31, 39, 1) 40%, rgba(166, 21, 28, 1) 70%, rgba(216, 31, 39, 1) 90%);
}
#xmas2026 .chicken {
  background-image: /* ノイズSVG */ url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0.25 0 0 0 0 0.125 0 0 0 0 0.06 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"), linear-gradient(150deg, rgba(21, 103, 39, 1) 10%, rgba(45, 134, 64, 1) 40%, rgba(21, 103, 39, 1) 70%, rgba(37, 112, 53, 1) 90%);
}
#xmas2026 .party {
  background-image: /* ノイズSVG */ url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0.25 0 0 0 0 0.125 0 0 0 0 0.06 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"), linear-gradient(150deg, rgba(25, 47, 70, 1) 10%, rgba(26, 68, 112, 1) 40%, rgba(25, 47, 70, 1) 70%, rgba(26, 68, 112, 1) 90%);
}
/* 画像を絶対配置から外し、通常の配置にする */
#xmas2026 .kv_img {
  display: block;
  /* ▼ 52.5%をやめ、基本は100%にしつつ「最大幅1200px」でストップさせる */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}
#xmas2026 .kv_img img {
  /* ▼ 親要素（.kv_img）の幅いっぱいに広げる */
  width: 100%;
  height: auto;
  /* max-height: auto; は無効な指定のため削除しました */
  display: block; /* 画像の下にできる余分な隙間を消す */
  /* ▼ 念のため画像自体も中央寄せ */
  margin: 0 auto;
}
#xmas2026 .ribbon_left {
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  max-height: 630px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}
#xmas2026 .ribbon_right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 43%;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}
#xmas2026 .ribbon_leftC {
  position: absolute;
  top: 0;
  left: 0;
  width: 28%;
  max-height: 477px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}
#xmas2026 .ribbon_rightC {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 33%;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}
/* テキストは absolute のまま、レスポンシブに縮小させる */
/* #xmas2026 .tit_h1 {
    position: absolute;
    top: 56%;
    right: 16%;
    margin: 0;
    padding: 0;
  font-size: 3rem;
  text-align: center;
  font-family: "Great Vibes", cursive;
  font-weight: normal;
  font-style: normal;
  color: rgba(121, 91, 55, 0.5);
  text-shadow: 2px 2px 0px rgba(121, 91, 55, 0.3);
  }*/
#xmas2026 .tit_h1_sub {
  position: absolute;
  top: 6%;
  right: 2%;
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-weight: normal;
  font-style: normal;
  font-size: clamp(1rem, 1.5vw, 2rem);
  color: rgba(255, 255, 255, 0.8);
  /*text-shadow: 3px 2px 0px #052c29;*/
}
#xmas2026 .btn_line {
  background: url("../images/btn_line.svg") repeat-x, #c8b79a;
  background-size: 8%, 100%;
  background-position: center, center;
  width: 100%;
  height: 25px;
  background-image: repeating-linear-gradient(180deg, #c8b79a, #c8b79a 2px, #a6151c 2px, #a6151c 12px, #c8b79a 12px, #c8b79a 13px, #156727 13px, #156727 23px, #c8b79a 23px, #c8b79a 25px);
}
@media screen and (max-width: 736px) {
  #xmas2026 .kv_area {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background-image: /* ノイズSVG */ url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0.25 0 0 0 0 0.125 0 0 0 0 0.06 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"), linear-gradient(150deg, rgba(6, 45, 42, 1) 10%, rgba(5, 86, 74, 1) 40% 68%, rgba(6, 45, 42, 1) 90%);
    overflow: hidden;
  }
  /* ==================================
   KVエリア_category背景色
   ================================== */
  #xmas2026 .cake {
    background-image: /* ノイズSVG */ url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0.25 0 0 0 0 0.125 0 0 0 0 0.06 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"), linear-gradient(150deg, rgba(166, 21, 28, 1) 10%, rgba(216, 31, 39, 1) 40%, rgba(166, 21, 28, 1) 70%, rgba(216, 31, 39, 1) 90%);
  }
  #xmas2026 .chicken {
    background-image: /* ノイズSVG */ url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0.25 0 0 0 0 0.125 0 0 0 0 0.06 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"), linear-gradient(150deg, rgba(21, 103, 39, 1) 10%, rgba(45, 134, 64, 1) 40%, rgba(21, 103, 39, 1) 70%, rgba(37, 112, 53, 1) 90%);
  }
  #xmas2026 .party {
    background-image: /* ノイズSVG */ url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0.25 0 0 0 0 0.125 0 0 0 0 0.06 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E"), linear-gradient(150deg, rgba(25, 47, 70, 1) 10%, rgba(26, 68, 112, 1) 40%, rgba(25, 47, 70, 1) 70%, rgba(26, 68, 112, 1) 90%);
  }
  #xmas2026 .kv_img {
    width: 100%; /* SPは画像を幅いっぱいに広げる（お好みで調整） */
    margin-left: 0;
    position: relative;
    z-index: 20;
  }
  #xmas2026 .kv_img img {
    width: 100%;
    height: auto; /* 高さを自動調整してアスペクト比を保つ */
    display: block; /* 画像の下にできる余分な隙間を消す */
  }
  /* テキストは absolute のまま、レスポンシブに縮小させる */
  #xmas2026 .tit_h1 {
    position: absolute;
    bottom: 13%;
    right: 8%;
    margin: 0;
    padding: 0;
    /* clamp(最小サイズ, 推奨サイズ, 最大サイズ) で画面に合わせて文字を可変に */
    font-size: clamp(2rem, 4vw, 5rem);
    color: #fff;
    /*text-shadow: 4px 3px 0px #000;*/
    text-shadow: 3px 3px 3px #052c29, -3px -3px 3px #052c29, -3px 3px 3px #052c29, 3px -3px 3px #052c29, 3px 0px 3px #052c29, -3px -0px 3px #052c29, 0px 3px 3px #052c29, 0px -3px 3px #052c29;
    transform: translateY(-50%); /*font-weight: 600; 上下の中央をピタッと揃えるハック */
    /*background-color: rgba(255,255,255,0.8);*/
  }
  #xmas2026 .tit_h1_sub {
    display: none;
  }
  #xmas2026 .ribbon_left {
    display: none;
  }
  #xmas2026 .ribbon_right {
    display: none;
  }
}
#xmas2026 .ribbon_left, #xmas2026 .ribbon_right, #xmas2026 .ribbon_leftC, #xmas2026 .ribbon_rightC {
  z-index: 21;
}
/* ==================================
   incentive (Flexbox 2カラム版)
================================== */
/* --- PC版のレイアウト --- */
#xmas2026 .incentive .conL {
  display: flex;
  gap: 10px; /* 左右のカラムの隙間（お好みで調整してください） */
  align-items: flex-start; /* 上端で揃える */
}
/* 左右のカラム幅を均等にする（隙間の20pxを考慮して計算） */
#xmas2026 .incentive .left_col, #xmas2026 .incentive .right_col {
  width: calc(100% - 5px);
}
/* カラム内の画像を幅いっぱい（100%）に広げる */
#xmas2026 .incentive .conL img {
  width: 100%;
  height: auto;
  display: block;
}
/* 右側カラムの画像同士の隙間 */
#xmas2026 .incentive .right_col img {
  margin-bottom: 5px;
}
/* テキストのスタイル */
#xmas2026 .incentive p {
  font-size: clamp(0.9rem, 0.266rem + 1.38vw, 1.3rem);
  font-weight: 500;
  margin: 0;
}
#xmas2026 .incentive p::before {
  content: "▲";
  margin: 0 0.5rem 0 0.2rem;
}
/* ==================================
   SP（スマホ：736px以下）は1カラム
================================== */
@media screen and (max-width: 736px) {
  #xmas2026 .incentive .conL {
    flex-direction: column; /* 左右の並びを「縦並び」に変更 */
    gap: 15px; /* 上下ブロックの隙間 */
  }
  /* SPでは左右カラムの幅の制限を解除し、100%にする */
  #xmas2026 .incentive .left_col, #xmas2026 .incentive .right_col {
    width: 100%;
  }
}
/* ==================================
   SP（スマホ：736px以下）
================================== */
@media screen and (max-width:736px) {
  #xmas2026 .incentive .conL img {
    /* PCのcalc指定を上書きし、幅を100%にリセット */
    width: 100%;
  }
}
/* ==================================
   カテゴリーボタンリスト（全体のレイアウト）
================================== */
#xmas2026 .category_btn_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 20px; /* 縦の余白40px、横の余白20px */
  width: 100%;
  max-width: 1200px;
  margin: 1rem auto 0;
  padding: 0;
  list-style: none;
}
/* --- SP（スマホ：736px以下）は1カラム --- */
#xmas2026 .category_btn_list > li {
  width: 100%;
  margin: 0 auto;
}
/* --- PC（737px以上）は3カラム --- */
@media screen and (min-width: 737px) {
  #xmas2026 .category_btn_list > li {
    width: calc((100% - 40px) / 3);
  }
}
/* ==================================
   incentive_cake (Flexbox 3カラム版)
================================== */
/* --- PC版のレイアウト --- */
#xmas2026 .incentive_cake .conL {
  display: flex;
  gap: 10px; /* 左右のカラムの隙間（お好みで調整してください） */
  align-items: flex-start; /* 上端で揃える */
}
/* 左右のカラム幅を均等にする（隙間の20pxを考慮して計算） */
#xmas2026 .incentive .left_col {
  width: calc(100% - 5px);
}
/* カラム内の画像を幅いっぱい（100%）に広げる */
#xmas2026 .incentive_cake .conL img {
  width: 100%;
  height: auto;
  display: block;
}
/* 右側カラムの画像同士の隙間 */
#xmas2026 .incentive_cake .right_col img {
  margin-bottom: 5px;
}
/* テキストのスタイル */
#xmas2026 .incentive_cake p {
  font-size: clamp(0.9rem, 0.266rem + 1.38vw, 1.3rem);
  font-weight: 500;
  margin: 0;
}
#xmas2026 .incentive_cake p::before {
  content: "▲";
  margin: 0 0.5rem 0 0.2rem;
}
/* ==================================
   SP（スマホ：736px以下）は1カラム
================================== */
@media screen and (max-width: 736px) {
  #xmas2026 .incentive_cake .conL {
    flex-direction: column; /* 左右の並びを「縦並び」に変更 */
    gap: 5px; /* 上下ブロックの隙間 */
  }
  /* SPでは左右カラムの幅の制限を解除し、100%にする */
  #xmas2026 .incentive_cake .left_col, #xmas2026 .incentive_cake .right_col {
    width: 100%;
  }
}
/* ==================================
   リンク全体（ホバー時の動き）
================================== */
#xmas2026 .category_btn_list .category_link {
  display: block;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
/* ==================================
   画像エリア（フレームと商品の重ね合わせ）
================================== */
#xmas2026 .category_btn_list .img_box {
  position: relative;
  width: 80%;
  aspect-ratio: 1 / 1;
  margin: 0 auto 0px;
}
@media screen and (min-width: 737px) {
  #xmas2026 .category_btn_list .img_box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
  }
}
/* 背面の商品画像 */
#xmas2026 .category_btn_list .product_img {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* フレームの透過部分に合わせて数値を調整してください（例: 80%〜95%） */
  width: 86%;
  height: auto;
  border-radius: 50%;
  z-index: 1;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
/* 前面のフレーム画像 */
#xmas2026 .category_btn_list .frame_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none; /* クリックを妨げない */
}
/* ==================================
   テキストエリア（カテゴリ名）
================================== */
#xmas2026 .category_btn_list .text_box {
  position: relative;
  padding: 0px 35px 15px 15px; /* 右側に矢印用のスペースを空ける */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85px; /* 1行と3行の要素の高さを揃える */
}
#xmas2026 .category_btn_list .category_name {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}
#xmas2026 .category_btn_list .category_name::before {
  content: "\e903";
  width: 20px;
  height: 20px;
  margin-right: .2rem;
  font-size: 1rem;
  font-family: "icn_font";
  line-height: 0;
  transform: translateX(-50%) translateY(-50%);
}
/* ==================================
   画像エリア（ホバー時の拡大アニメーション）
================================== */
#xmas2026 .category_btn_list .product_img {
  transition: transform 0.4s ease-in-out;
}
#xmas2026 .category_btn_list .category_link:hover .product_img {
  /* 【重要】元の translate(-50%, -50%) を維持したまま、後ろに scale を追加します */
  transform: translate(-50%, -50%) scale(1.05);
}
@media screen and (min-width: 737px) {
  #xmas2026 .category_btn_list .category_name {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  }
  #xmas2026 .category_btn_list .text_box {
    padding: 15px 35px 15px 15px; /* 右側に矢印用のスペースを空ける */
  }
}
/*=============================
	アーティストコラボケーキ
  /*============================= */
#xmas2026 .artist_area {
  position: relative;
  z-index: 20;
  overflow: hidden;
  margin: 1.5rem auto 2.5rem;
  border: solid 3px #c8b79a;
  padding: 14px 14px 7px;
  border-radius: 20px;
}
@media screen and (max-width: 736px) {
  #xmas2026 .artist_area {
    border: solid 2px #c8b79a;
    padding: 10px 10px 5px;
    border-radius: 14px;
  }
}
#xmas2026 .artist_area img {
  transition: transform 0.4s ease-in-out;
  border-radius: 10px;
}
#xmas2026 .artist_area a:hover img {
  transform: scale(1.02);
}
#xmas2026 .artist_area .category_name {
  font-size: clamp(1rem, 0.683rem + 0.69vw, 1.2rem);
  font-weight: bold;
  color: #3d3229;
  line-height: 1.5;
  text-align: right;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  margin: .5rem .2rem 0 0;
}
#xmas2026 .artist_area .category_name::before {
  content: "\e903";
  width: 20px;
  height: 20px;
  margin-right: .2rem;
  font-size: 1rem;
  font-family: "icn_font";
  line-height: 0;
  transform: translateX(-50%) translateY(-50%);
}
/*===== ===== ===== ===== ===== ===== 
・スライダー再生ボタンについて
====== ===== ===== ===== ===== ===== */
#xmas2026 .kv .swiper {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
#xmas2026 .kv .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#xmas2026 .kv .btn {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  border: solid 2px #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
#xmas2026 .kv .btn.stop::before, #xmas2026 .kv .btn.stop::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 12px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
#xmas2026 .kv .btn.stop::before {
  left: 40%;
  transform: translateX(-50%);
}
#xmas2026 .kv .btn.stop::after {
  right: 40%;
  transform: translateX(50%);
}
#xmas2026 .kv .btn.play::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #fff;
  transition: all 0.3s ease-in-out;
  left: 55%;
  transform: translateX(-50%);
}
#xmas2026 .kv .play_button_wrap {
  text-align: center;
  padding: 0.4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*===== ===== ===== ===== ========== 
・btn_area 
====== ===== ===== ===== ===== ===== */
#xmas2026 .btn_area {
  width: calc(100vw - 0%);
  /*width: calc(100vw - 0.7%);*/
  margin: 0 calc(50% - 50vw);
  padding: 0;
  background-color: #f4efe7;
}
#xmas2026 .btn_area ul {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
}
/* ================= /予告時 ================== */
#xmas2026 .btn_area li a {
  position: relative;
  background: url(../images/btn_bg.webp) repeat;
  background-size: 40%;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: minmax(70px, 1fr);
  gap: 1rem;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}
#xmas2026 .btn_area li.okinawa {
  position: relative;
  background: url(../images/btn_bg.webp) repeat;
  background-size: 40%;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: minmax(85px, 1fr);
  gap: 0.5rem;
  height: 100%;
  font-feature-settings: 'palt'1;
}
#xmas2026 .btn_area li.yokoku {
  position: relative;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: minmax(85px, 1fr);
  gap: 0.5rem;
  height: 100%;
  font-feature-settings: 'palt'1;
}
#xmas2026 .btn_area li.yokoku .bg01 {
  background-color: #156727;
  background-image: url(../images/btn_icon01.svg);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: background-color 0.5s ease-in-out;
}
@media screen and (max-width: 736px) {
  #xmas2026 .btn_area li.yokoku .bg01 {
    background-size: 8.5vw;
    padding: 0.5rem;
    box-sizing: border-box;
  }
}
#xmas2026 .btn_area li .bg03 {
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: background-color 0.5s ease-in-out;
}
#xmas2026 .btn_area p, #xmas2026 .btn_area span {
  display: flex;
  justify-content: center;
}
#xmas2026 .btn_area span {
  flex-direction: column;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 1rem);
}
#xmas2026 .btn_area span .sm {
  font-size: clamp(0.6rem, 1vw, 0.7rem);
}
#xmas2026 .btn_area li a .bg01, #xmas2026 .btn_area li a .bg02, #xmas2026 .btn_area li a .bg03 {
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: background-color 0.5s ease-in-out;
}
#xmas2026 .btn_area .bg01 {
  background-color: #156727;
  background-image: url(../images/btn_icon01.svg);
}
#xmas2026 .btn_area .bg02 {
  background-color: #a6151c;
  background-image: url(../images/btn_icon02.svg);
}
#xmas2026 .btn_area .bg03 {
  background-color: #192f46;
  background-image: url(../images/btn_icon02.svg);
}
#xmas2026 .btn_area .col01 {
  color: #156727;
}
#xmas2026 .btn_area .col02 {
  color: #a6151c;
}
#xmas2026 .btn_area .col03 {
  color: #192f46;
}
/* ========= 矢印の基本スタイル ========= */
#xmas2026 .fa-arrow-right {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 35%;
  right: 5%;
  overflow: hidden;
}
#xmas2026 .fa-arrow-right::before, #xmas2026 .fa-arrow-right::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #fff;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}
#xmas2026 .fa-arrow-right::before {
  transform: translate(-50%, -50%);
}
#xmas2026 .fa-arrow-right::after {
  transform: translate(-300%, -50%);
}
/* ========= /矢印の基本スタイル ========= */
#xmas2026 .col01 .fa-arrow-right::before, #xmas2026 .col01 .fa-arrow-right::after {
  background-color: #156727;
}
#xmas2026 .col02 .fa-arrow-right::before, #xmas2026 .col02 .fa-arrow-right::after {
  background-color: #a6151c;
}
#xmas2026 .col03 .fa-arrow-right::before, #xmas2026 .col03 .fa-arrow-right::after {
  background-color: #192f46;
}
#xmas2026 .col04 .fa-arrow-right::before, #xmas2026 .col04 .fa-arrow-right::after {
  background-color: #503d2e;
}
#xmas2026 .btn_area li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}
/*===== ===== ===== ===== ========== 
・yoyaku_btn
====== ===== ===== ===== ===== ===== */
/* ================= 予告時 ================== */
#xmas2026 .yoyaku_btn a span {
  font-size: clamp(0.8rem, 3vw, 1rem);
}
#xmas2026 .yoyaku_btn a p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#xmas2026 .yoyaku_btn a p small {
  font-size: clamp(1rem, 3vw, 1.5rem);
}
#xmas2026 .yoyaku_btn a, #xmas2026 .pick-up .back_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  width: 100%;
  background: #92703B;
  color: #fff;
  box-sizing: border-box;
  font-weight: 600;
  position: relative;
  transition: all 0.5s ease-in-out;
  font-size: clamp(1.3rem, 3vw, 2.5rem);
}
#xmas2026 .top .yoyaku_btn a {
  color: #313131;
}
#xmas2026 .yoyaku_btn a::before {
  display: block;
  content: '';
  background: url(../images/btn_icon01.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 40px;
  height: 45px;
  transition: all 0.5s ease-in-out;
  position: relative;
  top: 0;
  left: 0.6rem;
}
#xmas2026 .yoyaku_btn a::after {
  color: #a82e31;
}
#xmas2026.top .yoyaku_btn a::before {
  display: block;
  content: '';
  background: url(../images/btn_icon01-1.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 40px;
  height: 45px;
  transition: all 0.5s ease-in-out;
  position: relative;
  top: 0;
  left: 0.6rem;
}
#xmas2026 .pick-up .back_btn a {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
}
#xmas2026 .top .yoyaku_btn a {
  background: #a8c2c5;
  transition: all 0.5s ease-in-out;
  box-sizing: border-box;
}
#xmas2026 .top .yoyaku_btn .fa-arrow-right::before {
  color: #313131;
}
#xmas2026 .top .yoyaku_btn .fa-arrow-right::after {
  color: #a82e31;
}
#xmas2026 .yoyaku_btn .fa-arrow-right::before, #xmas2026 .yoyaku_btn .fa-arrow-right::after {
  background-color: transparent;
  font-size: 2rem;
  width: 43px;
  height: 43px;
}
#xmas2026 .yoyaku_btn .fa-arrow-right::after {
  color: #a82e31;
}
#xmas2026 .yoyaku_btn .fa-arrow-right {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 31%;
  right: 31%;
  margin: auto;
  overflow: hidden;
}
/*===== ===== ===== ===== ===== ===== 
・item
====== ===== ===== ===== ===== ===== */
#xmas2026 .top .cate_area {
  padding: 0;
}
#xmas2026 .item-area, #xmas2026 .cate_area {
  padding: 3rem 0 0;
}
/* ---------------  h2 ---------------*/
#xmas2026 .top .ttl_h2 {
  color: #fff;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  padding: 1.5rem 0;
  background: none;
  width: 100%;
}
#xmas2026 .top .ttl_h2 span {
  font-size: clamp(0.9rem, 1vw, 1rem);
  display: block;
}
#xmas2026 .ttl_h2 {
  background: #28405a;
  color: #fff;
  width: 30%;
  margin: 0 auto 3.5rem;
  display: block;
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  padding: 0.8rem 0;
  clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%, 0 0);
}
/* ---------------  item_list ---------------*/
#xmas2026 .item_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  margin-bottom: 2rem;
}
#xmas2026 .item_list > li {
  background-color: #fdfbf7;
  padding: 1.5rem;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
#xmas2026 .item_list.no-shadow > li {
  box-shadow: none;
}
#xmas2026 .item_detail .item_label {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 1rem;
}
#xmas2026 .item_list .item_inner {
  padding: 1rem;
  outline: 3px solid #c8b79a;
  outline-offset: 8px;
  border: solid 1px #c8b79a;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 1rem;
}
#xmas2026 .item_name {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  line-height: 1.5em;
}
#xmas2026 .item_num {
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  background: url(../images/num_bg.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 108%;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #cf0022;
  font-family: "Noto Serif JP", serif;
  font-weight: 800;
  font-style: normal;
  font-optical-sizing: auto;
}
#xmas2026 .item_price {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
}
#xmas2026 .item_detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#xmas2026 .item_icon {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
#xmas2026 .item_icon > li > img {
  max-width: 83px;
}
#xmas2026 .item_icon .gentei img {
  max-width: 66px;
}
#xmas2026 .item_icon .fmo_only img {
  max-width: 100px;
  margin-left: .3rem;
}
#xmas2026 .haya_txt, #xmas2026 .item_set .kome {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
}
#xmas2026 .item_set dl {
  background: #fff4f4;
  padding: 0.3rem 0.5rem;
}
#xmas2026 .item_set dt {
  font-weight: 600;
  border-bottom: 1px solid #202020;
}
#xmas2026 .item_set dd {
  padding: 0.3rem 0 0;
}
#xmas2026 .item_get table {
  width: 100%;
  margin-bottom: 0.2rem;
  table-layout: fixed;
  font-size: 0.9rem;
  border: 1px solid;
}
#xmas2026 .item_get tr, #xmas2026 .item_get th, #xmas2026 .item_get td {
  border: 1px solid;
  text-align: center;
  font-weight: normal;
}
#xmas2026 .item_get th {
  background-color: #f8cece;
}
#xmas2026 .peo {
  border: 1px solid #392009;
  padding: 0.5rem;
  text-align: center;
  margin: 0 0 0.5rem;
  border-radius: 50px;
}
#xmas2026 .sale_time {
  font-weight: 600;
  border-top: dotted 2px #c8b79a;
  border-bottom: dotted 2px #c8b79a;
  padding: 0.5rem 0;
  color: #cf0022;
}
#xmas2026 .sale_time dl {
  display: flex;
  gap: 0.3rem;
  margin: 0 0 0.5rem;
}
#xmas2026 .sale_time .txt {
  font-weight: 500;
}
#xmas2026 .sale_time .txt b {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}
#xmas2026 .limited_time {
  font-weight: 600;
  border-top: dotted 2px #c8b79a;
  border-bottom: dotted 2px #c8b79a;
  padding: 0.5rem 0;
  color: #cf0022;
}
#xmas2026 .limited_time .kome {
  font-weight: 400;
  color: #313131;
  margin: 0.5rem 0 0;
}
#xmas2026 .limited_time .price {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}
#xmas2026 .limited_time .price span {
  font-size: clamp(1rem, 2vw, 1.15rem);
}
#xmas2026 .item_atn li {
  text-indent: 1rem;
  line-height: 1.5em;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
}
#xmas2026 .item_atn li em {
  font-style: normal;
  font-weight: 600;
}
#xmas2026 .item_atn li:before, #xmas2026 .allergy_btn li:before {
  display: inline-block;
  position: relative;
  content: '';
  left: -0.5rem;
  top: -3px;
  border-radius: 100%;
  width: 5px;
  height: 5px;
  background: #392009;
}
#xmas2026 .alert_text {
  color: #cf0022;
}
/*================ allergy =================*/
#xmas2026 .allergy {
  width: 100%;
  margin-bottom: 0.2rem;
  table-layout: fixed;
  font-size: clamp(0.67rem, 1vw, 0.9rem);
  border: 1px solid;
}
#xmas2026 .allergy tr, #xmas2026 .allergy th, #xmas2026 .allergy td {
  border: 1px solid;
  text-align: center;
  font-weight: normal;
}
#xmas2026 .allergy_title {
  background-color: #313131;
}
#xmas2026 .allergy_title span {
  color: #fff;
}
/*============== accordionボタン ==============*/
#xmas2026 .allergy_btn {
  width: 100%;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
}
#xmas2026 .toggle {
  display: none;
}
#xmas2026 .title, #xmas2026 .content {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
#xmas2026 .option {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
#xmas2026 .title {
  display: block;
  cursor: pointer;
}
#xmas2026 .title::before {
  content: '\e912';
  font-family: 'icn_font';
  font-weight: normal;
  position: absolute;
  left: 23.5%;
  top: 1px;
  bottom: 0;
  display: inline-block;
  transition: all 0.3s;
  margin: auto;
  color: #0171a6;
}
#xmas2026 .title span {
  display: block;
  max-width: 27%;
  color: #0171a6;
}
#xmas2026 .content {
  max-height: 0;
  overflow: hidden;
}
#xmas2026 .content li {
  text-indent: 1rem;
}
#xmas2026 .toggle:checked + .title + .content {
  max-height: 300px;
  transition: all 0.3s;
}
#xmas2026 .toggle:checked + .title::before {
  transform: rotate(45deg) !important;
}
/*================ fmo_btnボタン ===============*/
#xmas2026 .fmo_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 0;
}
/* ========== Flipアニメーション用 ========== */
#xmas2026 .item.hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
}
/*================ 予告時 ===============*/
/* #xmas2026 .fmo_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 0;
}

#xmas2026 .fmo_btn {
  position: relative;
  text-align: center;
  background: #156727;
  border: 3px solid #156727;
  color: #fff;
  padding: 0.3rem 1rem;
  width: 100%;
  border-radius: 50px;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
  font-feature-settings: 'palt' 1;
} */
/*================ /予告時 ===============*/
#xmas2026 .fmo_btn a {
  position: relative;
  text-align: center;
  background: #156727;
  border: 3px solid #156727;
  color: #fff;
  padding: 0.3rem 1rem;
  width: 100%;
  border-radius: 50px;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
  font-feature-settings: 'palt'1;
  will-change: transform;
}
#xmas2026 .fmo_btn.okinawa a {
  background: #192f46;
  border: 3px solid #192f46;
}
#xmas2026 .fmo_btn span {
  display: block;
  font-size: clamp(0.75rem, 1vw, 0.85rem);
}
#xmas2026 .fmo_btn .fa-arrow-right {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 25%;
  right: 5%;
  overflow: hidden;
}
#xmas2026 .fmo_btn .fa-arrow-right::before, #xmas2026 .fmo_btn .fa-arrow-right::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #fff;
  background-color: #156727;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}
#xmas2026 .fmo_btn.okinawa .fa-arrow-right::before, #xmas2026 .fmo_btn.okinawa .fa-arrow-right::after {
  background-color: #192f46;
}
#xmas2026 .fmo_btn .fa-arrow-right::before {
  transform: translate(-50%, -50%);
}
#xmas2026 .fmo_btn .fa-arrow-right::after {
  transform: translate(-300%, -50%);
}
/*===== ===== ===== ===== ===== ===== 
・pick-up-cake
====== ===== ===== ===== ===== ===== */
/*===== bg ======*/
#xmas2026 .pick-up {
  background-image: /* ノイズSVG */ url("data:image/svg+xml,%3Csvg viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.2' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0.043 0 0 0 0 0.459 0 0 0 0 0.408 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.2'/%3E%3C/svg%3E");
  background-color: #12453a;
  color: #f8ecbd;
  padding: 1rem 0 0;
}
#xmas2026 .bg_icon {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
#xmas2026 .bg_icon img {
  position: absolute;
}
#xmas2026 .bg_icon img:nth-child(1) {
  top: 5vh;
  left: calc(50% - 600px - 6vw);
  width: 1.5vw;
  will-change: transform;
}
#xmas2026 .bg_icon img:nth-child(2) {
  top: 11vh;
  right: calc(50% - 600px - 3vw);
  width: 1.5vw;
  will-change: transform;
}
#xmas2026 .bg_icon img:nth-child(3) {
  top: 42vh;
  left: calc(50% - 600px - 7vw);
  width: 1.5vw;
  will-change: transform;
}
#xmas2026 .bg_icon img:nth-child(4) {
  top: 22vh;
  left: calc(50% - 600px - 4vw);
  width: 1.5vw;
  will-change: transform;
}
#xmas2026 .bg_icon img:nth-child(5) {
  top: 30vh;
  right: calc(50% - 600px - 7vw);
  width: 1.5vw;
  will-change: transform;
}
#xmas2026 .bg_icon img:nth-child(6) {
  top: 61vh;
  left: calc(50% - 600px - 4vw);
  width: 1.5vw;
  will-change: transform;
}
#xmas2026 .bg_icon img:nth-child(7) {
  top: 50vh;
  right: calc(50% - 600px - 5vw);
  width: 1.5vw;
  will-change: transform;
}
#xmas2026 .bg_icon img:nth-child(8) {
  top: 70vh;
  right: calc(50% - 600px - 6vw);
  width: 1.5vw;
  will-change: transform;
}
#xmas2026 .bg_icon img:nth-child(9) {
  top: 88vh;
  left: calc(50% - 600px - 7vw);
  width: 1.5vw;
  will-change: transform;
}
#xmas2026 .bg_icon img:nth-child(10) {
  top: 90vh;
  right: calc(50% - 600px - 4vw);
  width: 1.5vw;
  will-change: transform;
}
/*===== h2 ======*/
#xmas2026 .ttl_h2.pick-up {
  clip-path: none;
  width: 100%;
  background: none;
  margin: 0;
  padding: 2rem 0 1rem;
  font-size: clamp(1.4rem, 3vw, 1.7rem);
}
#xmas2026 .ttl_h2.pick-up::after {
  content: '';
  display: block;
  background: url(../images/pick-up-cake/sub_ttl.webp) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30px;
  height: 30px;
  position: relative;
  top: 0;
  left: 0;
  margin: auto;
}
/*===== line ======*/
#xmas2026 .line01.pick-up {
  background: url(../images/pick-up-cake/line03.webp) repeat-x, #221714;
  background-size: 24%, 15%;
  background-position: center, center;
  width: 100%;
  height: 105px;
}
#xmas2026 .line01.pick-up::after {
  content: none;
}
#xmas2026 .line03.pick-up.lt {
  background: url(../images/pick-up-cake/line01.webp) repeat-x, #154f3f;
  width: 54.1%;
  height: 50px;
}
#xmas2026 .line03.pick-up.rt {
  background: url(../images/pick-up-cake/line01.webp) repeat-x, #154f3f;
  width: 62.5%;
  height: 50px;
  margin: 0 0 0 auto;
}
#xmas2026 .line04 {
  background: url(../images/pick-up-cake/line04.webp) repeat-x, #b7b7b7;
  background-size: 24%, 15%;
  background-position: center, center;
  width: 100%;
  height: 65px;
}
#xmas2026 .line03.pick-up.lt.end {
  background: url(../images/pick-up-cake/line02.webp) repeat-x, #449881;
  width: 54.1%;
  height: 50px;
}
#xmas2026 .line03.pick-up.end {
  background: url(../images/pick-up-cake/line02.webp) repeat-x, #449881;
  width: 100%;
  height: 50px;
}
/*===== item ======*/
#xmas2026 .pick-up .item-area {
  padding: 0;
}
#xmas2026 .pick-up .item_list > li {
  background: none;
  padding: 2rem;
}
#xmas2026 .pick-up .item_list .item_inner {
  outline: none;
  border: none;
  padding: 0;
}
#xmas2026 .pick-up .item_num {
  background: url(../images/pickup_num_bg.svg) no-repeat;
  background-size: contain;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f8ecbd;
  height: 85px;
  width: 100%;
  font-size: clamp(1.5rem, 0.39rem + 2.41vw, 2.2rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 800;
}
#xmas2026 .pick-up .item_set dl {
  background: #ea5b0e;
  color: #202020;
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  padding: .5rem 1rem;
}
#xmas2026 .pick-up .peo {
  border: 1px solid #f8ecbd;
}
#xmas2026 .pick-up .title span {
  color: #9fdaf7;
}
#xmas2026 .pick-up .title::before {
  color: #9fdaf7;
}
#xmas2026 .pick-up .item_atn li:before, #xmas2026 .pick-up .allergy_btn li:before {
  background: #f8ecbd;
}
#xmas2026 .pick-up .item_get th {
  background-color: #a82e31;
}
#xmas2026 .standby {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}
/* ============== 予告用 ================ */
/* #xmas2026 .pick-up .fmo_btn {
  position: relative;
  background: #a82e31;
  border: 3px solid #a82e31;
  font-weight: 600;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
} */
/* ============== /予告用 ================ */
#xmas2026 .pick-up .fmo_btn a {
  position: relative;
  background: #a82e31;
  border: 3px solid #a82e31;
  font-weight: 600;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
  will-change: transform;
}
#xmas2026 .pick-up .fmo_btn.okinawa a {
  background: #192f46;
  border: 3px solid #192f46;
}
#xmas2026 .pick-up .fmo_btn a small {
  font-weight: 400;
}
#xmas2026 .pick-up .fmo_btn .fa-arrow-right {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 28%;
  right: 5%;
  margin: auto;
  overflow: hidden;
}
/* 矢印アイコン本体の共通スタイル */
#xmas2026 .pick-up .fa-arrow-right::before, #xmas2026 .pick-up .fa-arrow-right::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #fff;
  background-color: #a82e31;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}
#xmas2026 .pick-up .fa-arrow-right::before {
  transform: translate(-50%, -50%);
}
#xmas2026 .pick-up .fa-arrow-right::after {
  transform: translate(-300%, -50%);
}
/*===== tokuten ======*/
/* ==================================
   h2とあしらい画像（位置の調整）
================================== */
#xmas2026 .tit_h2-tokuten {
  text-align: center;
  margin-top: 0;
  padding-top: 10px;
}
#xmas2026 .tit_h2-tokuten::before {
  top: -75px;
  z-index: 2;
}
@media screen and (max-width: 736px) {
  #xmas2026 .tit_h2-tokuten {
    padding-top: 0px;
  }
  #xmas2026 .tit_h2-tokuten::before {
    top: -65px; /* 高さ(71px)の約半分だけ上に移動させ、枠線に乗せる */
    z-index: 2; /* 隠し用マスク(z-index: 1)の上に表示 */
  }
}
/* ==================================
   tokuten（枠線の追加）
================================== */
#xmas2026 .pick-up .tokuten {
  position: relative;
  border: solid 3px #c8b79a;
  border-radius: 20px;
  margin: 50px 30px; /* 上部のあしらい画像がはみ出る分のスペース */
  padding-top: 2rem; /* 枠線から中のテキストまでの余白 */
}
@media screen and (max-width: 736px) {
  #xmas2026 .pick-up .tokuten {
    margin: 50px 10px;
    border-radius: 16px;
    border: solid 2px #c8b79a;
  }
}
/* 枠線の上部中央を背景色で隠す（線の透過防止マスク） */
#xmas2026 .pick-up .tokuten::before {
  content: "";
  position: absolute;
  top: -3px; /* 上の枠線にピッタリ被せる */
  left: 50%;
  transform: translateX(-50%);
  width: 310px; /* あしらい画像(330px)より少し狭くし、線を自然に繋げる */
  height: 6px;
  background-color: #154e44; /* 親エリアの背景色（緑）と同じ色でフタをする */
  z-index: 1;
}
@media screen and (max-width: 736px) {
  #xmas2026 .pick-up .tokuten::before {
    width: 220px;
  }
}
#xmas2026 .pick-up .tokuten {
  /*background: #221714;*/
}
#xmas2026 .pick-up .tokuten .inner {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  box-sizing: border-box;
}
#xmas2026 .pick-up .tokuten .txt {
  text-align: center;
  font-size: clamp(0.85rem, 0.057rem + 1.72vw, 1.35rem);
  line-height: 1.8;
}
#xmas2026 .pick-up .tokuten .txt .col {
  color: #f9ce57;
  font-weight: 600;
}
#xmas2026 .pick-up .tokuten .date {
  text-align: center;
  margin: 0 0 3rem;
}
#xmas2026 .pick-up .tokuten .date dl {
  display: flex;
  justify-content: center;
  font-size: clamp(1.1rem, 1.5vw, 2rem);
  border: double 6px #f8ecbd;
  max-width: 60%;
  margin: 2rem auto 0;
  padding: 1rem;
  box-sizing: border-box;
}
#xmas2026 .pick-up .tokuten .kome {
  margin: 0.3rem 0 0;
  font-size: clamp(0.8rem, 0.483rem + 0.69vw, 1rem);
}
#xmas2026 .pick-up .tokuten .btn a {
  position: relative;
  background: #a82e31;
  border: 3px solid #a82e31;
  color: #fff;
  display: block;
  padding: 1.5rem;
  font-size: clamp(1.3rem, 1.5vw, 2rem);
  font-weight: 600;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
  will-change: transform;
}
#xmas2026 .pick-up .tokuten .btn .fa-arrow-right {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 35%;
  right: 5%;
  overflow: hidden;
}
/*===== yoyaku_btn ======*/
#xmas2026 .pick-up .yoyaku_btn a {
  position: relative;
  background: #221714;
  transition: all 0.5s ease-in-out;
  box-sizing: border-box;
}
#xmas2026 .pick-up .yoyaku_btn .fa-arrow-right::before, #xmas2026 .pick-up .yoyaku_btn .fa-arrow-right::after {
  background-color: transparent;
  font-size: 2rem;
  width: 43px;
  height: 43px;
}
#xmas2026 .pick-up .yoyaku_btn .fa-arrow-right::after {
  color: #a82e31;
}
#xmas2026 .pick-up .yoyaku_btn .fa-arrow-right {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 27%;
  right: 31%;
  margin: auto;
  overflow: hidden;
}
/*===== ===== ===== ===== ===== ===== 
・top他
====== ===== ===== ===== ===== ===== */
#xmas2026 .inc {
  padding: 0 1.5rem;
  color: #313131;
}
#xmas2026 .inc .img_auto img {
  width: 40%;
}
#xmas2026 .xms-rbtn {
  margin: 0 1.5rem;
}
#xmas2026.sub .inc {
  color: #313131;
}
#xmas2026.yoyaku .inc {
  padding: 0 1.5rem;
  color: #000;
}
#xmas2026.yoyaku .inc .ly-mod-def-list li:before {
  color: #313131;
}
#xmas2026.sub .inc .ly-mod-def-list li:before {
  background: #747474;
}
#xmas2026 .inc .ly-mod-def-list li:before {
  color: #313131;
}
.mask-end {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.mask-end .end {
  background: rgba(63, 57, 57, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.mask-end .end > p {
  font-size: clamp(1.2rem, 0.724rem + 1.03vw, 1.5rem);
  font-weight: bold;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
/*===============================================
●pc.css 画面の横幅が737px以上
===============================================*/
@media screen and (min-width: 737px) {
  #xmas2026 .pc-none {
    display: none;
  }
  #xmas2026 {
    width: calc(100vw - 0%);
    width: calc(100vw - 0.7%);
    margin: 0 calc(50% - 50vw);
    padding: 0;
    z-index: 1;
    color: #313131;
    overflow: hidden;
  }
  /*============== btn_area =============== */
  #xmas2026 .btn_area li a:hover {
    color: #156727;
  }
  #xmas2026 .btn_area li a:hover::before {
    transform: scaleX(1);
  }
  #xmas2026 .btn_area li:nth-child(2) a:hover {
    color: #a6151c;
  }
  #xmas2026 .btn_area li:nth-child(3) a:hover {
    color: #192f46;
  }
  #xmas2026 .btn_area li a:hover span {
    color: inherit;
    transition: color 0.3s 0.1s ease-in-out;
  }
  #xmas2026 a:hover .fa-arrow-right::before {
    transform: translate(100%, -50%);
    transition: transform 0.3s ease-in-out;
  }
  #xmas2026 a:hover .fa-arrow-right::after {
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease-in-out;
  }
  #xmas2026 .btn_area li a:hover .fa-arrow-right::before, #xmas2026 .btn_area li a:hover .fa-arrow-right::after {
    background-color: #fff;
    color: inherit;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  /*============== fmo_btn =============== */
  #xmas2026 .fmo_btn a:hover {
    background: #fff;
    color: #156727;
  }
  #xmas2026 .fmo_btn.okinawa a:hover {
    background: #fff;
    color: #192f46;
  }
  /* ★ホバー時の矢印の動き */
  #xmas2026 .pick-up a:hover .fa-arrow-right::before, #xmas2026 .pick-up a:hover .fa-arrow-right::after {
    transition: transform 0.3s ease-in-out;
  }
  #xmas2026 .pick-up a:hover .fa-arrow-right::before {
    transform: translate(100%, -50%);
  }
  #xmas2026 .pick-up a:hover .fa-arrow-right::after {
    transform: translate(-50%, -50%);
  }
  /*============== cate_area =============== */
  #xmas2026 .cate_area a:hover img {
    transform: scale(1.03);
  }
  /*============== top =============== */
  #xmas2026 .pickup_area a:hover img {
    transform: scale(1.02);
  }
  /*============== pick-up-item  =============== */
  #xmas2026 .pick-up .fmo_btn a:hover {
    background: #fff;
    color: #a82e31;
  }
  #xmas2026 .pick-up .fmo_btn.okinawa a:hover {
    background: #fff;
    color: #192f46;
  }
  /* ★ホバー時の矢印の動き */
  #xmas2026 .pick-up a:hover .fa-arrow-right::before, #xmas2026 .pick-up a:hover .fa-arrow-right::after {
    transition: transform 0.3s ease-in-out;
  }
  #xmas2026 .pick-up a:hover .fa-arrow-right::before {
    transform: translate(100%, -50%);
  }
  #xmas2026 .pick-up a:hover .fa-arrow-right::after {
    transform: translate(-50%, -50%);
  }
  #xmas2026 .pick-up .tokuten .btn a:hover {
    background: #fff;
    color: #a82e31;
  }
  #xmas2026 .pick-up .yoyaku_btn a:hover {
    background: #fff;
    color: #a82e31;
  }
  #xmas2026 .yoyaku_btn a:hover::before {
    display: block;
    content: '';
    background: url(../images/btn_icon01_pickup_hov.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 40px;
    height: 45px;
  }
  #xmas2026 .pick-up .coll_wrap a:hover {
    background: #eee;
  }
  #xmas2026 .pick-up .back_btn a:hover {
    background: #8f8b8b;
  }
  /* ★ホバー時の矢印の動き */
  #xmas2026 .pick-up .back_btn a:hover .fa-arrow-left::before, #xmas2026 .pick-up .back_btn a:hover .fa-arrow-left::after {
    transition: transform 0.3s ease-in-out;
  }
  #xmas2026 .pick-up .back_btn a:hover .fa-arrow-left::before {
    transform: translate(-200%, -50%);
  }
  #xmas2026 .pick-up .back_btn a:hover .fa-arrow-left::after {
    transform: translate(-50%, -50%);
  }
  /*============== yoyaku_btn =============== */
  #xmas2026 .yoyaku_btn a:hover, #xmas2026 .top .yoyaku_btn a:hover {
    background: #fff;
    color: #a82e31;
  }
  #xmas2026 .yoyaku_btn a:hover::before {
    display: block;
    content: '';
    background: url(../images/btn_icon01_pickup_hov.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 40px;
    height: 45px;
  }
}
/*===============================================
●sp.css  画面の横幅が736pxまで
===============================================*/
@media screen and (max-width: 736px) {
  #xmas2026 .sp-none {
    display: none;
  }
  #xmas2026 {
    margin: 0 calc(50% - 50vw);
    padding: 0;
    margin-top: -10px;
  }
  #xmas2026 main {
    background: none;
    margin: 0 12px;
  }
  #xmas2026 .insen_chicken img {
    margin: 0 auto;
    width: 98%;
  }
  #xmas2026 .fa-arrow-right {
    right: 4%;
    top: calc(99% - 5vw);
  }
  /* ================= 予告時 ================== */
  /*#xmas2026 .btn_area li {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  #xmas2026 .btn_area li .bg02, #xmas2026 .btn_area li .bg03 {
    background-size: 26%;
    height: 50px;
  }
  #xmas2026 .btn_area li .bg01 {
    background-size: 26%;
    height: 50px;
  }
  #xmas2026 .btn_area span small {
    text-align: left;
  }
  /* ================= /予告時 ================== */
  /* ▼ li a と li.okinawa の共通設定をまとめました ▼ */
  #xmas2026 .btn_area li a, #xmas2026 .btn_area li.okinawa, #xmas2026 .btn_area li.yokoku {
    display: grid;
    grid-template-columns: 1fr;
    background-color: #f4efe7;
    /* ▼ アイコンエリアを55pxで固定し、テキストエリアを残り全部(1fr)にする */
    grid-template-rows: 55px 1fr;
    gap: 0;
    min-height: 120px;
    height: 100%; /* 親要素(li)が伸びた時に、同じ高さまでピッタリ伸ばす */
    box-sizing: border-box;
  }
  /* 個別で必要な設定だけ残す */
  #xmas2026 .btn_area li a {
    background-size: 50%;
    text-decoration: none; /* 念のためリンクの下線防止 */
  }
  #xmas2026 .btn_area span {
    padding: 0.5rem;
  }
  #xmas2026 .btn_area li .bg03 {
    background-size: 25%;
  }
  #xmas2026 .btn_area {
    background-size: 10%;
    background-position: center;
    padding: 0;
    background-color: #c8b79a;
  }
  #xmas2026 .btn_area ul {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.2rem;
    font-feature-settings: 'palt'1;
  }
  #xmas2026 .btn_area li {
    background-color: #f4efe7;
  }
  #xmas2026 .btn_area li a .bg01, #xmas2026 .btn_area li a .bg02, #xmas2026 .btn_area li a .bg03 {
    background-size: 8.5vw;
    padding: 0.5rem;
    box-sizing: border-box;
  }
  #xmas2026 .btn_area p, #xmas2026 .btn_area span {
    align-items: flex-start;
    gap: 0.2rem;
  }
  #xmas2026 .btn_area span .sm {
    padding: 0;
  }
  #xmas2026 .btn_area .fa-arrow-right::before, #xmas2026 .btn_area .fa-arrow-right::after {
    width: 17px;
    height: 17px;
    font-size: 0.75rem;
  }
  #xmas2026 .btn_area .fa-arrow-right {
    width: 19px;
    height: 19px;
  }
  #xmas2026 .line01 {
    background-size: 5.8%, 15%;
    height: 35px;
  }
  #xmas2026 .line01::after {
    background-size: 39%, 15%;
    width: 17vw;
  }
  #xmas2026 .line03.sub {
    height: 25px;
  }
  #xmas2026 .ttl_h2 {
    width: 60%;
    margin: 0 auto 2rem;
    padding: 0.5rem 0;
  }
  #xmas2026 .top .ttl_h2 {
    padding: 1rem 0;
  }
  #xmas2026 .item-area, #xmas2026 .cate_area {
    padding: 2rem 0 0;
  }
  #xmas2026 .filter-area {
    padding: 0;
    width: 90%;
    font-size: 0.6rem;
  }
  #xmas2026 .filter-area .buttons {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    grid-auto-rows: minmax(30px, auto);
  }
  #xmas2026 .item_list .item_inner {
    grid-template-columns: 1fr;
    padding: 0;
    border: none;
    border-width: 1px;
    outline-width: 1.5px;
  }
  #xmas2026 .item {
    padding: 2rem 0;
  }
  #xmas2026 .item_list {
    margin: 0 auto 2rem;
  }
  #xmas2026 .item_list > li {
    padding: 1.2rem;
  }
  #xmas2026 .item_num {
    width: 110%;
    height: 50px;
  }
  #xmas2026 .item_detail .item_label {
    grid-template-columns: 40px 1fr;
    gap: 0.5rem;
    margin: 0.5rem 0 0;
  }
  #xmas2026 .item_get {
    font-size: 0.85rem;
    font-feature-settings: 'palt'1;
  }
  #xmas2026 .item_get small {
    text-align: left;
    display: block;
  }
  #xmas2026 .title span {
    max-width: 40%;
  }
  #xmas2026 .title::before {
    left: 36%;
  }
  #xmas2026 .sale_time {
    font-feature-settings: 'palt'1;
  }
  #xmas2026 .limited_time {
    margin: 0 0 0.5rem;
    font-feature-settings: 'palt'1;
  }
  #xmas2026 .pick-up .fmo_btn .fa-arrow-right {
    top: 25%;
  }
  #xmas2026 .fmo_btn.okinawa .fa-arrow-right {
    top: 32%;
  }
  #xmas2026 .item_icon .gentei img {
    max-width: 54px;
  }
  #xmas2026 .item_icon .fmo_only img {
    max-width: 90px;
  }
  #xmas2026 .yoyaku_btn a, #xmas2026 .pick-up .back_btn a {
    padding: 2rem;
  }
  #xmas2026 .yoyaku_btn .fa-arrow-right::before, #xmas2026 .yoyaku_btn .fa-arrow-right::after {
    background-color: transparent;
    font-size: 1.3rem;
    width: 23px;
    height: 23px;
  }
  #xmas2026 .yoyaku_btn .fa-arrow-right {
    width: 24px;
    height: 24px;
    top: 36.5%;
    right: 9%;
  }
  #xmas2026 .inc {
    padding: 0;
    color: #313131;
  }
  #xmas2026 .inc .img_auto img {
    width: 100%;
  }
  /*===== pick-up-cake ======*/
  #xmas2026 .pick-up .tokuten .inner {
    width: 100%;
    padding: 1rem 1rem 2rem;
  }
  #xmas2026 .line01.pick-up {
    background-size: 35%, 100%;
    height: 46px;
  }
  #xmas2026 .pick-up .item_get th {
    background-color: #a82e31;
  }
  #xmas2026 .item_detail .item_label {
    grid-template-columns: 48px 1fr;
    gap: 0.5rem;
    margin: 1rem 0 0;
  }
  #xmas2026 .pick-up .item_list {
    margin: 0;
  }
  #xmas2026 .pick-up .item_list > li {
    padding: 1.2rem;
  }
  #xmas2026 .pick-up .tokuten .date {
    margin: 0 0 2rem;
  }
  #xmas2026 .pick-up .tokuten .date dl {
    border: double 3px #f8ecbd;
    padding: 0.3rem 1rem;
    width: 100%;
    max-width: 100%;
  }
  #xmas2026 .pick-up .tokuten .btn a {
    padding: 1rem;
    width: 100%;
  }
  #xmas2026 .pick-up .yoyaku_btn a, #xmas2026 .pick-up .back_btn a {
    padding: 1rem 0;
  }
  #xmas2026 .yoyaku_btn a::before {
    width: 25px;
    height: 25px;
    position: relative;
    top: 0;
    left: 0;
  }
  #xmas2026 .pick-up .artist .box ul {
    grid-template-columns: 1fr;
  }
  #xmas2026 .pick-up .artist .box ul li {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: 'image text';
  }
  #xmas2026 .pick-up .artist .box ul li.re {
    grid-template-areas: ' text image';
  }
  #xmas2026 .pick-up .artist .box {
    margin: 2rem 0 0;
  }
  #xmas2026 .pick-up .coll_wrap {
    grid-template-columns: 1fr;
  }
  #xmas2026 .pick-up .coll_wrap img {
    grid-column: 2 / 1;
    grid-row: 2 / 1;
  }
  #xmas2026 .pick-up .coll_wrap p {
    grid-column: 2 / 1;
    grid-row: 3 / 2;
    padding: 1rem;
  }
  #xmas2026 .pick-up .coll_wrap a {
    grid-column: 1 / 3;
    grid-row: 3 / 3;
    padding: 1.5rem 0;
  }
  #xmas2026 .line03.pick-up.lt {
    background-size: 12.5%;
    width: 70%;
    height: 34px;
  }
  #xmas2026 .line03.pick-up.rt {
    background-size: 14.2%;
    height: 34px;
  }
  #xmas2026 .line04 {
    background-size: 34%, 100%;
    height: 30px;
  }
  #xmas2026 .pick-up .title::before {
    left: 36%;
  }
  #xmas2026 .line03.pick-up.lt.end {
    background-size: 11.1%, 100%;
    height: 34px;
    width: 80%;
  }
  #xmas2026 .line03.pick-up.end {
    background-size: 9.4%, 100%;
    height: 34px;
  }
  #xmas2026 .pick-up .yoyaku_btn .fa-arrow-right {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 5vw;
    right: 19vw;
    margin: auto;
    overflow: hidden;
  }
  #xmas2026 .pick-up .yoyaku_btn .fa-arrow-right::before, #xmas2026 .pick-up .yoyaku_btn .fa-arrow-right::after {
    background-color: transparent;
    font-size: 1rem;
    width: 23px;
    height: 23px;
  }
  #xmas2026 .pick-up .tokuten .btn .fa-arrow-right {
    top: 30%;
  }
  #xmas2026 .yoyaku_btn a, #xmas2026 .pick-up .back_btn a {
    gap: 0.3rem;
  }
  #xmas2026 .pick-up .back_btn .fa-arrow-left {
    top: 7vw;
    left: 8vw;
  }
  #xmas2026 .pick-up .back_btn .fa-arrow-left::before, #xmas2026 .pick-up .back_btn .fa-arrow-left::after {
    font-size: 1.1rem;
  }
  #xmas2026 .pick-up .artist {
    padding: 0 0 3rem;
  }
  #movie_area {
    width: 95%;
    margin: 1.5rem auto 0;
    padding: 0.5rem;
  }
}
/*===============================================s
●tablet.css  画面の横幅が737px～
===============================================*/
@media screen and (min-width: 738px) and (max-width: 1023px) {
  #xmas2026 .pick-up .item_list .item_inner {
    grid-template-columns: 1fr;
  }
  #xmas2026 .pickup_area li a {
    grid-auto-rows: minmax(180px, auto);
  }
  #xmas2026 .pickup_area .fa-arrow-right {
    top: 82%;
  }
  #xmas2026 .pickup_area .pickup_content {
    padding: 0.5rem;
  }
  #xmas2026 .cate_area.top nav a {
    display: flex;
    flex-direction: column;
  }
  #xmas2026 .pickup_area .inner {
    grid-template-columns: 1fr;
  }
  #xmas2026 nav a span {
    flex-grow: 1;
  }
}
/* PC表示時に背景アイコンをコンテンツの外側に配置するスタイル */
@media screen and (min-width: 1600px) {
  /* 左側に配置するアイコン */
  #xmas2026 .bg_icon img:nth-child(1) {
    left: calc(50% - 600px - 8vw);
  }
  #xmas2026 .bg_icon img:nth-child(3) {
    left: calc(50% - 600px - 12vw);
  }
  #xmas2026 .bg_icon img:nth-child(4) {
    left: calc(50% - 600px - 18vw);
  }
  #xmas2026 .bg_icon img:nth-child(6) {
    left: calc(50% - 600px - 15vw);
  }
  #xmas2026.bg_icon img:nth-child(9) {
    left: calc(50% - 600px - 10vw);
  }
  /* 右側に配置するアイコン */
  #xmas2026 .bg_icon img:nth-child(2) {
    right: calc(50% - 600px - 10vw);
  }
  #xmas2026 .bg_icon img:nth-child(5) {
    right: calc(50% - 600px - 14vw);
  }
  #xmas2026 .bg_icon img:nth-child(7) {
    right: calc(50% - 600px - 18vw);
  }
  #xmas2026 .bg_icon img:nth-child(8) {
    right: calc(50% - 600px - 11vw);
  }
  #xmas2026 .bg_icon img:nth-child(10) {
    right: calc(50% - 600px - 9vw);
  }
}
/* 画面幅が非常に広い場合（例: 1920px以上）の調整 */
@media screen and (min-width: 1920px) {
  #xmas2026 .bg_icon img {
    /* アイコンが離れすぎないようにvwではなく固定値で調整 */
    width: auto; /* 元のサイズに戻す */
  }
  /* 左側に配置するアイコン */
  #xmas2026 .bg_icon img:nth-child(1) {
    left: calc(50% - 750px);
  }
  #xmas2026 .bg_icon img:nth-child(3) {
    left: calc(50% - 800px);
  }
  #xmas2026 .bg_icon img:nth-child(4) {
    left: calc(50% - 900px);
  }
  #xmas2026 .bg_icon img:nth-child(6) {
    left: calc(50% - 850px);
  }
  #xmas2026 .bg_icon img:nth-child(9) {
    left: calc(50% - 780px);
  }
  /* 右側に配置するアイコン */
  #xmas2026 .bg_icon img:nth-child(2) {
    right: calc(50% - 780px);
  }
  #xmas2026 .bg_icon img:nth-child(5) {
    right: calc(50% - 820px);
  }
  #xmas2026 .bg_icon img:nth-child(7) {
    right: calc(50% - 920px);
  }
  #xmas2026 .bg_icon img:nth-child(8) {
    right: calc(50% - 800px);
  }
  #xmas2026 .bg_icon img:nth-child(10) {
    right: calc(50% - 760px);
  }
}
/* ==================================
   よくあるご質問エリア（ベース設定）
================================== */
#xmas2026 .faq_area {
  max-width: 1200px;
  margin: 0 auto;
  color: #313131; /* 指定のフォントカラー */
  line-height: 1.6;
}
#xmas2026 .faq_main_title {
  text-align: center;
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 2rem;
}
/* ==================================
   各Q&Aブロック
================================== */
#xmas2026 .faq_block {
  background-color: #fcfaf5; /* 落ち着いたベージュ背景 */
  border: 1px solid #e2d8c3; /* 馴染むボーダー色 */
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
#xmas2026 .faq_category {
  font-size: clamp(1rem, 0.841rem + 0.34vw, 1.1rem);
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e2d8c3;
  padding-bottom: 0.5rem;
}
#xmas2026 .faq_list {
  margin: 0;
  padding: 0;
}
#xmas2026 .faq_item {
  margin-bottom: 2rem;
}
#xmas2026 .faq_item:last-child {
  margin-bottom: 0;
}
/* QとAのレイアウト（flexからブロック＆絶対配置に変更） */
#xmas2026 .faq_q, #xmas2026 .faq_a {
  display: block; /* 横並び解除 */
  position: relative;
  padding-left: 2.5rem; /* 左側にアイコン用の余白を確保 */
  margin: 0;
}
#xmas2026 .faq_q {
  font-weight: bold;
  font-size: clamp(0.95rem, 0.871rem + 0.17vw, 1rem);
  margin-bottom: 1.2rem;
  min-height: 1.5rem;
}
#xmas2026 .faq_a {
  min-height: 1.5rem;
}
#xmas2026 .faq_a p {
  margin: 0 0 0.8rem 0; /* 縦に並んだ際の段落同士の余白 */
  line-height: 1.6;
}
#xmas2026 .faq_a p:last-child {
  margin: 0;
}
/* QとAの装飾アイコン（絶対配置で左上に固定） */
#xmas2026 .faq_q::before {
  content: "Q.";
  position: absolute;
  top: -2px; /* テキストとの縦位置を微調整 */
  left: 0;
  color: #a6151c;
  font-size: clamp(1.3rem, 0.983rem + 0.69vw, 1.5rem);
  line-height: 1;
  font-weight: bold;
}
#xmas2026 .faq_a::before {
  content: "A.";
  position: absolute;
  top: -2px;
  left: 0;
  color: #92703B;
  font-size: clamp(1.3rem, 0.983rem + 0.69vw, 1.5rem);
  line-height: 1;
  font-weight: bold;
}
/* ==================================
   お問い合わせ先ブロック
================================== */
#xmas2026 .faq_contact {
  background-color: #f4efe7;
  border: 1px solid #c8b79a;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 3rem;
  position: relative;
}
#xmas2026 .contact_title {
  background-color: #92703b;
  color: #fff;
  display: inline-block;
  padding: 0.4rem 2rem;
  border-radius: 30px;
  font-size: clamp(1rem, 0.841rem + 0.34vw, 1.1rem);
  position: absolute;
  top: -18px; /* 枠線に被せるバッジスタイル */
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
#xmas2026 .contact_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}
#xmas2026 .contact_info {
  flex: 1;
}
#xmas2026 .contact_name {
  font-size: clamp(1.1rem, 0.783rem + 0.69vw, 1.3rem);
  font-weight: bold;
  margin: 0 0 1rem;
}
#xmas2026 .contact_desc {
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}
#xmas2026 .contact_qr {
  width: 120px;
  flex-shrink: 0;
}
/* CMSボタン挿入用の余白確保 */
#xmas2026 .cms_btn_placeholder {
  min-height: 50px;
}
/* SP専用クラスの初期状態は非表示 */
#xmas2026 .sp_only {
  display: none;
}
/* ==================================
   SP（スマホ：736px以下）対応
================================== */
@media screen and (max-width: 736px) {
  #xmas2026 .faq_block, #xmas2026 .faq_contact {
    padding: 1.5rem 1rem;
  }
  #xmas2026 .contact_inner {
    flex-direction: column;
    align-items: flex-start;
  }
  /* SPではPC用要素（二次元コードとテキスト）を隠し、SP用テキストを表示 */
  #xmas2026 .pc_only {
    display: none;
  }
  #xmas2026 .sp_only {
    display: block;
  }
}
/* ==================================
   予約方法はこちらボタン 調整
================================== */
/* ▼ 共通・PC表示 ▼ */
#xmas2026 .yoyaku_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* テキストと両アイコンの間隔を20pxに設定 */
}
/* 左のアイコン（余計な位置ズレを解除し、縮み防止） */
#xmas2026 .yoyaku_btn a::before, #xmas2026.top .yoyaku_btn a::before {
  left: 0;
  position: relative;
  flex-shrink: 0;
}
/* 右のアイコン（絶対配置を解除し、Flexアイテムとして並べる） */
#xmas2026 .yoyaku_btn .fa-arrow-right {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  margin: 0;
  flex-shrink: 0;
}
/* ▼ SP表示（736px以下） ▼ */
@media screen and (max-width: 736px) {
  #xmas2026 .yoyaku_btn a {
    padding: 1.5rem 0.5rem;
    gap: 12px;
  }
  /* 左のアイコンを少し大きく調整（元は25px） */
  #xmas2026 .yoyaku_btn a::before, #xmas2026.top .yoyaku_btn a::before {
    width: 32px;
    height: 36px;
    left: 0;
  }
  /* 右のアイコン（矢印の枠）を大きく調整（元は24px） */
  #xmas2026 .yoyaku_btn .fa-arrow-right {
    width: 32px;
    height: 32px;
    position: relative !important;
    top: auto !important;
    right: auto !important;
  }
  /* 矢印の中身のアイコンを大きく調整 */
  #xmas2026 .yoyaku_btn .fa-arrow-right::before, #xmas2026 .yoyaku_btn .fa-arrow-right::after {
    font-size: 1.6rem;
    width: 32px;
    height: 32px;
  }
}