


@charset "UTF-8";
/* ==========================================================================
Base
========================================================================== */
/*!
 * @acab/reset.css
 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  line-height: 1.5; /* アクセシブルな行の高さ */
}

:where(input, button, textarea, select) {
  color: inherit; /* カラーも継承 */
  font: inherit; /* フォーム コントロールは親フォントを継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  block-size: auto; /* アスペクト比を保持 */
  max-inline-size: 100%; /* images should never overflow past the available space */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) {
  block-size: 0;
  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
  border-block-start: 1px solid;
  color: inherit;
  overflow: visible;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  border: 0 !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

:root {
  --line-height-l: 2;
  --line-height-m: 1.75;
  --line-height-s: 1.5;
  --line-height-xs: 1.3;
  --letter-spacing-l: 0.12em;
  --letter-spacing-m: 0.08em;
  --letter-spacing-s: 0em;
}

/* Base
----------------------------------------------------------------- */
html {
  font-size: 62.5%;
  height: -webkit-fill-available;
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: var(--line-height-l);
}


:where(a) {
  color: inherit;
  text-decoration: none;
}
:where(a):hover {
  text-decoration: none;
}
:where(ol),
:where(ul),
:where(dl) {
  list-style: none;
}

:where(em),
:where(i) {
  font-style: normal;
}

:where(h1),
:where(h2),
:where(h3),
:where(h4),
:where(h5),
:where(h6) {
  font-size: 1.6rem;
  font-weight: 700;
:where(p) {
}

  font-size: 14px;
  font-weight: 700;
  line-height: var(--line-height-m);
  margin-top: 15px;
}
@media print, screen and (min-width:768px) {
  :where(p) {
    font-size: 15px;
    margin-top: 0;
  }
}
:where(p).-center {
  text-align: center;
}

:where(em) {
  font-style: normal;
  font-weight: 500;
}

:where(img) {
  display: block;
  height: auto;
  width: 100%;
}

@media print, screen and (min-width:768px) {
  .sp-only {
    display: none;
  }
}
@media print, screen and (max-width:767px) {
  .sp-only {
    display: block;
  }
}
/* ==========================================================================
Layout
========================================================================== */
/* ==========================================================================
Component
========================================================================== */
#christmas-top{
  color: #333;
  position: relative;
  background: #F7E0CC;
  background: linear-gradient(180deg, rgba(247, 224, 204, 0.27) 0%, rgba(248, 238, 220, 0.71) 0%, rgba(248, 238, 220, 1) 0%, rgba(247, 224, 204, 1) 0%);
  display: flex;
  justify-content:center
}
#christmas-top section.right-section,#christmas-top section.left-section{
  height: 100vh;
  position: fixed;
  width: calc((100% - 408px) / 2);
  left: 0;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction: column;
  overflow: hidden
}
@media print, screen and (max-width:1015px) {
  #christmas-top{
  justify-content:flex-start;
  overflow: hidden;
  }
  #christmas-top section.left-section{
    display:none
  }
  #christmas-top section.right-section{
    width: calc((100% - 453px));
  }
}
#christmas-top section.right-section{
  left:auto;
  right:0;
  background: #F7E0CC;
  background: linear-gradient(90deg, rgba(247, 224, 204, 1) 0%, rgb(255 230 216) 100%);
  background: url(/scsq/foodshow_edge/christmas2025/kirakira-bg.webp) repeat center / 200px #F7E0CC;
}
@media print, screen and (max-width:768px){
    #christmas-top{
  display:block
  }
  #christmas-top section.right-section{
  display:none
  }
}
#christmas-top section.left-section .side-bt {
    position: absolute;
    bottom: 27%;
    background: #cb6860;
    width: 102px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    color: #fff;
    font-size: 13px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-weight: 600;
    line-height: 1.5;
}
#christmas-top section.main-section{
  padding: 45px 0 90px;
  max-width: 390px;
  box-shadow: 0 0 23px #00000054;
  overflow: hidden;
  z-index: 10;
  background: url(/scsq/foodshow_edge/christmas2025/kirakira-bg.webp) repeat center / 200px;
}
.fixed-bt {
  width: 100%;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: #b47b00;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-52%);
  z-index: 100;
  max-width: 390px;
  font-family: "fot-chiaro-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.fixed-bt a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px;
}
@media print, screen and (max-width:1015px){
.fixed-bt {
  bottom: 0;
  left: 0;
  transform: translateX(0);
  max-width: 430px;
}
}
@media print, screen and (max-width:767px){
.fixed-bt {
  max-width: 100%;
}
}
#christmas-top .lead-wrap{
  padding: 0;
  margin: 0 auto 100px;
  position: relative;
  /* height: 97vh; */
  width: 100%;
  background: #F7E0CC;
  background: linear-gradient(180deg, rgba(247, 224, 204, 0.27) 0%, rgba(248, 238, 220, 0.71) 0%, rgba(248, 238, 220, 1) 0%, rgba(247, 224, 204, 1) 0%);
}
@media print, screen and (min-width:768px) {
  #christmas-top .lead-wrap{
  padding: 174px 0 0;
    padding: 0;
    margin: 0;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
   #christmas-top .lead-wrap.sp-only{
    display:none
  }
}
@media print, screen and (max-width:1015px) {
  #christmas-top section.main-section{
  padding: 0px 0 90px;
  max-width: 430px;
  width: 100%;
}
  #christmas-top .lead-wrap.sp-only{
    display:block
  }
}
@media print, screen and (max-width:767px) {
  #christmas-top .lead-wrap.sp-only{
    display:block
  }
    #christmas-top section.main-section{
  max-width: 100%;
      box-shadow:none
  }
}
#christmas-top .lead-wrap::before{
  content:"";
  display:block;
  width: 207px;
  aspect-ratio: 371/110;
  position:absolute;
  top:0;
  right:0;
  background: url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/logo.webp) no-repeat top center/contain;
}
#christmas-top .lead-wrap .mv-titleimagewrap {
    position: relative;
    position: absolute;
    max-width: 600px;
    width: 96%;
}
#christmas-top .lead-wrap .mv-titleimagewrap h1{
  max-width: 800px;
  margin: 0 auto;
  width: 103%;
  transform: translateX(-2%) translateY(-22%);
}
@media screen and (min-width:786px){
  #christmas-top .lead-wrap .mv-titleimagewrap h1{
    max-width: 800px;
    margin: 0 auto;
    width: 110%;
    transform: translateX(-5%);
  }
}
#christmas-top .lead-wrap .mv-titleimagewrap h1 span{
  width: 1px;
  height: 1px;
  overflow: hidden;
  display: block;
}
#christmas-top .lead-wrap span{
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/scsq/foodshow_edge/christmas2025/kirakira-bg.webp) repeat center/200px;
}
#christmas-top .lead-wrap span .mv-cake-wrap{
  gap: 350px 0;
  display: grid;
  grid-template-columns: repeat(2,47%);
  width: 118%;
  justify-content: space-between;
}
@media screen and (min-width:786px){
  #christmas-top .lead-wrap span .mv-cake-wrap{
    margin: 30px 0 0;
    gap: 35vh 25px;
    top: 50%;
    grid-template-columns: repeat(2, 52%);
    width: 127%;
    transform: translateX(-3%);
  }
}
#christmas-top .lead-wrap span .mv-cake-wrap .mv-cake {
    transform: rotate(-5deg);
    height: 193px;
}
#christmas-top .lead-wrap span .mv-cake-wrap .mv-cake:nth-of-type(2) {
    transform: rotate(5deg);
}
#christmas-top .lead-wrap span .mv-cake-wrap .mv-cake img{
    width:100%;
    height: 100%;
    object-fit:contain;
    object-position: bottom;
}
#christmas-top .lead-wrap span .date{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  height: auto;
  transform: translateY(-3%);
  aspect-ratio: 517/321;
}
@media screen and (min-width:786px){
  #christmas-top .lead-wrap span .date{
    display: none
  }
}
#christmas-top .lead-wrap span .date img{
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
.cake-block .cake-wrap {
    display: flex;
    flex-direction: column;
    gap: 150px;
    max-width: 500px;
    margin: 0 auto;
}
.cake-block .cake-wrap li{
  width:97%
}
.cake-block .cake-wrap li:nth-of-type(2n){
  margin:0 0 0 auto
}
.cake-block .cake-wrap li a {
    display: grid;
	grid-template-columns: 60% 1fr;
}
.cake-block .cake-wrap li:nth-of-type(2n) > a {
	grid-template-columns: 1fr 60%;
}
.cake-block .cake-wrap li a figure.cake-img{
  transform:rotate(-7deg);
  animation:fuwafuwa 3.5s forwards infinite;
}
.cake-block .cake-wrap li:nth-of-type(2n) a figure.cake-img{
  transform:rotate(-7deg);
  animation:fuwa 3.5s forwards infinite;
}
@keyframes fuwa{
  0%,100%{
  transform:rotate(-7deg) translateY(0) translateX(-2px) scale(1.08);
  }
  50%{
  transform:rotate(-7deg) translateY(-10px) translateX(-3px) scale(1.08);
  }
}
@keyframes fuwafuwa{
  0%,100%{
  transform:rotate(7deg) translateY(0) translateX(-2px) scale(1.08);
  }
  50%{
  transform:rotate(7deg) translateY(-10px) translateX(-3px) scale(1.08);
  }
}

@keyframes fuwafuwafuwa{
  0%,100%{
  transform:rotate(7deg) translateY(0) translateX(-2px) scale(1.08);
  }
  50%{
  transform:rotate(7deg) translateY(-10px) translateX(-3px) scale(1.08);
  }
}
.cake-block .cake-wrap li a .item-lead{
  writing-mode:vertical-rl;
  height:200px;
  color:#f7e0cc;
  font-size:0;
  width:100%;
  background:url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/cake01-lead.webp) no-repeat center top/contain;
}
.cake-block .cake-wrap li:nth-of-type(2) a .item-lead{
  background:url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/cake05-lead.webp) no-repeat center top/contain;
}
.cake-block .cake-wrap li:nth-of-type(3) a .item-lead{
  background:url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/cake02-lead.webp) no-repeat center top/contain;
}
.cake-block .cake-wrap li:nth-of-type(4) a .item-lead{
  background:url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/cake04-lead.webp) no-repeat center top/contain;
}
.cake-block .cake-wrap li:nth-of-type(5) a .item-lead{
  background:url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/cake07-lead.webp) no-repeat center top/contain;
}
.cake-block .cake-wrap li:nth-of-type(6) a .item-lead{
  background:url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/cake03-lead.webp) no-repeat center top/contain;
}
.cake-block .cake-wrap li:nth-of-type(7) a .item-lead{
  background:url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/cake06-lead.webp) no-repeat center top/contain;
}
.cake-block .cake-wrap li a .item-info{
  grid-row:2;
  grid-column: 1/3;
  position: relative;
  z-index:12;
  font-family: "fot-chiaro-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 59%;
  margin: 0 0 0 auto;
}
.cake-block .cake-wrap li:nth-of-type(3) a .item-info{
  width: 170px;
}
.cake-block .cake-wrap li:nth-of-type(3) a .item-info::before{
  width:200%
}
.item-info.only {
    position: relative;
}
.item-info.only::after {
    content: "";
    display: block;
    width: 55px;
    height: 50px;
    background: url(/scsq/foodshow_edge/christmas2025/onlymark.webp) no-repeat center/contain;
    position: absolute;
    top: -12px;
    left: 37px;
}
.cake-block .cake-wrap li:nth-of-type(2n) a .item-info{margin: 30px auto 0 0;}
.cake-block .cake-wrap li a .item-info::before{
  content:"";
  display:block;
  width: 170%;
  height: auto;
  position:absolute;
  top:50%;
  left: 63%;
  aspect-ratio: 283/130;
  transform:translate(-50%,-50%);
  background: url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/itemname-bg.webp) no-repeat center/contain;
  z-index:-1
}
.cake-block .cake-wrap li:nth-of-type(2n) a .item-info::before{
  transform: translate(-50%,-50%) rotate(1deg);
  top: 53%;
  left: 45%;
}
.flex-wrap li a .item-info .item-brand{
  margin: 0 0 12px;
  font-size: 15px;
  font-weight:600;
  line-height:1.2;
}
.flex-wrap li a .item-info .item-brand > span{
  margin: 0 0 5px -5px;
  background: #b98312;
  color:#fff;
  border-radius:50%;
  aspect-ratio:1/1;
  width: 30px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 9px;
}
.flex-wrap li a .item-info .item-brand span span{
  font-size: 10px;
}
.flex-wrap li a .item-info .item-name{
  font-size:13px;
  line-height: 1.5;
}
.flex-wrap li a .item-info .item-name > span,.flex-wrap li a .item-info .item-price span.size{
  margin: 2px 5px;
  font-size:10px;
  line-height:1.2;
  padding: 2px 4px;
  border:1px solid;
  display: inline-block;
}
.flex-wrap li a .item-info .item-price{
  margin: 11px 0 0;
  font-size: 17px;
  line-height:1.2;
  text-align: right;
}
.flex-wrap li a .item-info .item-price span{
  font-size: 11px;
  line-height:1.2;
}
.flex-wrap li a .item-info .item-price span.size{
  margin:0 5px 0 0;
}
.cake-block .cake-wrap li:nth-of-type(2n) .buy-bt{
    margin: 33px auto 0;
}
.buy-bt {
  width: 80%;
  margin: 20px auto 0;
  text-align: center;
  border-radius: 100vh;
  overflow: hidden;
  box-shadow: 0 5px 3px #984e48;
  letter-spacing: 0.15em;
  font-size: 13px;
  transition:0.2s;
  position:relative;
  height: 41px;
  max-width: 400px;
  z-index: 100;
}
.buy-bt::before{
  content:"";
  display:block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 20px solid #ffffff;
  border-right: 0;
  position:absolute;
  top:50%;
  right:20px;
  transform:translateY(-50%)
}
.buy-bt:hover{
    transform:translateY(3px);
    box-shadow: none;  
}
.buy-bt a{
    padding: 7px 20px 6px;
    text-align:center;
    font-weight:600;
    width: 100%;
    height: 100%;
    display: block;
    background: #cb6860;
    color: #fff;
}
section.cake-block {
    margin: 0 0 100px;
}

section.deli-block {
    padding: 25px 0 100px;
  position:relative;
}
section.deli-block::before{
  content:"";
  display:block;
  width: 100%;
  height: 100%;
  position:absolute;
  top: 0;
  right: 0px;
  background: url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/deli-bg.webp) repeat-y right -40px top/auto 31%;
  z-index: 0;
  opacity:0.5
}
section.deli-block::after{
  content:"";
  display:block;
  width: 100%;
  height: 100%;
  position:absolute;
  top: 0;
  left: -6px;
  background: url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/deli-bg.webp) repeat-y left -40px top/auto 31%;
  z-index: 0;
  opacity:0.5;
  visibility:visible;
  transform: scale(1,-1);
}
section.deli-block h2{
  position:relative;
  height: 100px;
  color: #f7e0cc;
  text-align: center;
}
section.deli-block h2::before{
  content:"";
  display:block;
  width: 100%;
  height: 100px;
  position:absolute;
  top: 29%;
  left: 50%;
  transform:translate(-50%,-50%);
  background: url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/deli-title.webp) no-repeat center/contain;
  z-index: 0;
}
ul.flex-wrap.deli-wrap{
  position:relative;
  z-index:10;
  max-width: 500px;
  margin: 0 auto;
}
ul.flex-wrap.deli-wrap li:nth-of-type(3){
  margin:50px 0 0
}
ul.flex-wrap.deli-wrap li .item-info {
  width: 33%;
  margin: -25% 20px 0 auto;
  max-width: 300px;
  position: relative;
  z-index: 10;
}
ul.flex-wrap.deli-wrap li:nth-of-type(2n) .item-info {
  width: 33%;
  margin: -34% auto 0 19px;
  max-width: 300px;
  position: relative;
  z-index: 10;
}
ul.flex-wrap.deli-wrap li a figure{
   margin: 0 auto 0 -10%;
   width: 95%;
   animation:fuwafuwafuwa 2.5s forwards infinite;
}
ul.flex-wrap.deli-wrap li:nth-of-type(2n) a figure{
   margin: 0 -14% 0 auto;
   animation:fuwafuwafuwafuwa 2.5s forwards infinite;
}
@keyframes fuwafuwafuwa{
  0%,100%{
  transform:rotate(-10deg) translateY(0) translateX(-2px) scale(1.08);
  }
  50%{
  transform:rotate(-10deg) translateY(-10px) translateX(-3px) scale(1.08);
  }
}
@keyframes fuwafuwafuwafuwa{
  0%,100%{
  transform:rotate(-5deg) translateY(0) translateX(-2px) scale(1.08);
  }
  50%{
  transform:rotate(-5deg) translateY(-10px) translateX(-3px) scale(1.08);
  }
}
section.deli-block .buy-bt{
  width: 43%;
  margin: 11px 10px 0 auto;
  box-shadow:0 3px 2px #000000;
  z-index:10;
  height: 36px;
  font-family: "fot-chiaro-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
section.deli-block .buy-bt a{padding: 7px 30px 6px 20px;background:#1b5a6f;}
section.deli-block ul.flex-wrap.deli-wrap li:nth-of-type(2n) .buy-bt{
  width:45%;
  margin: 12px auto 0 10px;
}
section.deli-block .buy-bt::before{
  border-left: 15px solid #ffffff;
  right:10px;
}


section#catalog {
  margin: 30px 0
}
section#catalog .catalog:hover a::before{
    transform: translate(-50%,-50%) scale(1.05);
}
section#catalog .catalog a::before {
    content: "もっと見る";
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 40%;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    line-height: 1.0;
    font-weight: 600;
  z-index:10;
    transition:0.3s;
}
section#catalog .catalog {
    position: relative;
    margin: 0 auto 60px;
    width: 80%;
    overflow:hidden;
    max-width: 300px;
    box-shadow: 0 0 8px #3333337a;
}
section#catalog .catalog a{
  position:relative;
  overflow:hidden
}
section#catalog .catalog a img{
  transition:0.3s;
}
section#catalog .catalog a:hover img{
  opacity:0.8
}
section#catalog h2 {
    height: 137px;
    width: 94%;
    margin: 0 auto 30px;
    background: url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/desital-title.webp) no-repeat center/contain;
}
section#catalog h2 span{
    width:1px;
    height:1px;
    overflow:hidden;
    display: block;
}

.reserve-wrap{
font-family: "fot-chiaro-std", sans-serif;
font-weight: 700;
font-style: normal;
}
.reserve-wrap.net h2 {
    height: 51px;
    width: 80%;
    margin: 0 auto 13px;
    background: url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/net-reserve.webp) no-repeat center/contain;
}
.reserve-wrap.shop h2 {
    height: 48px;
    width: 80%;
    margin: 0 auto 9px;
    background: url(https://www.tokyu-dept.co.jp/scsq/foodshow_edge/christmas2025/shop-reserve.webp) no-repeat center/contain;
}
.reserve-wrap h2 span{
    width:1px;
    height:1px;
    overflow:hidden;
    display:block
}
.reserve-wrap p.date {
  margin: 0;
  font-size: 22px;
  display: flex;
  align-items: flex-end;
  line-height: 1.0;
  font-weight: 600;
  justify-content: center;
}
.reserve-wrap p.date span.md {
  margin: 0 2px;
  font-size: 17px;
  align-self: flex-end;
}
.reserve-wrap p.date span.youbi {
  margin-left: 2px;
  font-size: 15px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 23px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  background: #000;
}
.reserve-wrap p.date span.time{
  margin-left: 5px;
  font-size: 14px;
}
.reserve-wrap .buy-bt{
  margin-top: 0
}
.reserve-wrap.net .buy-bt {
    margin-top: 20px;
    width: 95%;
}
h3.mini-title {margin: 0 auto;padding: 0 5px 3px;letter-spacing: 0.1em;text-align: center;border-bottom: double;display: inline-block;width: 100px;}

.date-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.date-block:nth-of-type(2){
  margin-top:40px
}
.reserve-wrap {
    margin: 0 0 70px;
}
.reserve-wrap.shop {
  margin: 0;
}
.reserve-wrap p.place {
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
    font-weight: 600;
}

.reserve-wrap p.place span {
    font-size: 13px;
    display: block;
}

footer.footer {
    background: #fff;
    width: 100%;
}



