
@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 {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
  background-color: var(--color-00-main);
  color: var(--color-00-white);
  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);
}

::-moz-selection {
  background-color: var(--color-00-main);
  color: var(--color-01-yellow);
}

::selection {
  background-color: var(--color-00-main);
  color: var(--color-01-yellow);
}

: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: 20px;
  }
}
:where(p).-center {
  text-align: center;
}

:where(em) {
  font-style: normal;
  font-weight: 500;
}

:where(img) {
  display: block;
  height: auto;
  width: 100%;
}

:where(button) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

:where(input) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-01-black);
}

:where(textarea) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-01-black);
}

@media print, screen and (max-width:767px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (min-width:768px) {
  .sp {
    display: none !important;
  }
}
/* ==========================================================================
Layout
========================================================================== */
/* ==========================================================================
Component
========================================================================== */
:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-main {
  position: relative;
}
.c-main__wrapper {
  z-index: 2;
}
.c-main__space {
  height: 100svh;
}
@media print, screen and (min-width:768px) {
  .c-main__space {
    height: 100vh;
  }
}
.c-main__content {
  background-color: var(--color-00-main);
  background-image: url("/shibuya-food-dungeon/_assets/images/background_dirt.webp");
  background-position: center top;
  background-repeat: repeat;
  background-size: 75% auto;
  border-radius: 50px 50px 0 0;
  -webkit-box-shadow: 0 -8px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0 -8px 8px rgba(0, 0, 0, 0.05);
}
@media print, screen and (min-width:768px) {
  .c-main__content {
    border-radius: 100px 100px 0 0;
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-hero {
  background-image: url("/shibuya-food-dungeon/_assets/images/background_dirt.webp"), url("/shibuya-food-dungeon/_assets/images/hero_bg_top.svg"), url("/shibuya-food-dungeon/_assets/images/hero_bg_bottom.svg"), url("/shibuya-food-dungeon/_assets/images/hero_bg_main.svg");
  background-position: center top, top right, bottom left, center;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-size: 75% auto, 83.7209302326vw auto, 81.3953488372vw auto, cover;
  height: 100svh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media print, screen and (min-width:768px) {
  .c-hero {
    background-size: 75% auto, 46.3396778917vw auto, 53.3674963397vw auto, cover;
    height: 100vh;
  }
}
.c-hero img {
  display: block;
  height: auto;
  width: 100%;
}
.c-hero__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: min(220px, 51.1627906977vw);
  position: relative;
  width: 100%;
  z-index: 20;
}
@media print, screen and (min-width:768px) {
  .c-hero__inner {
    padding-bottom: 0;
  }
}
.c-hero__copy {
  margin: 0 auto;
  width: min(320px, 74.4186046512vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__copy {
    margin-bottom: -1.4641288433vw;
    width: 37.3352855051vw;
  }
}
.c-hero__title {
  -webkit-filter: drop-shadow(1.8604651163vw 1.8604651163vw 0 rgba(0, 0, 0, 0.2));
  filter: drop-shadow(1.8604651163vw 1.8604651163vw 0 rgba(0, 0, 0, 0.2));
  margin: 0 auto min(15px, 3.488372093vw);
  width: min(320px, 74.4186046512vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__title {
    -webkit-filter: drop-shadow(0.7320644217vw 0.7320644217vw 0 rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0.7320644217vw 0.7320644217vw 0 rgba(0, 0, 0, 0.2));
    width: 29.2825768668vw;
  }
}
@media screen and (min-width:768px) and (max-height: 740px) {
  .c-hero__title {
    width: 47.0588235294vh;
  }
}
.c-hero__period {
  margin: 0 auto;
  width: min(384px, 89.3023255814vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__period {
    width: 42.8989751098vw;
  }
}
.c-hero__text {
  font-size: clamp(10px, 3.023255814vw, 13px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width:768px) {
  .c-hero__text {
    font-size: 1.4641288433vw;
  }
}
.c-hero__copyright {
  bottom: 10px;
  font-size: clamp(8px, 2.3255813953vw, 10px);
  font-weight: 500;
  left: 4px;
  position: absolute;
  width: auto;
}
@media print, screen and (min-width:768px) {
  .c-hero__copyright {
    bottom: 4px;
    font-size: 12px;
    left: auto;
    right: 24.8901903367vw;
  }
}
.c-hero__decoration-taroman, .c-hero__decoration-dot-left, .c-hero__decoration-dot-right, .c-hero__decoration-image1, .c-hero__decoration-image2, .c-hero__decoration-image3, .c-hero__decoration-image4, .c-hero__decoration-image5, .c-hero__decoration-image6, .c-hero__decoration-image7, .c-hero__decoration-image1-shadow, .c-hero__decoration-image2-shadow, .c-hero__decoration-image3-shadow, .c-hero__decoration-image4-shadow, .c-hero__decoration-image5-shadow, .c-hero__decoration-image6-shadow, .c-hero__decoration-image7-shadow {
  position: absolute;
  z-index: 1;
}
.c-hero__decoration-taroman {
  aspect-ratio: 255/322;
  bottom: -2.3255813953vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: min(220px, 51.1627906977vw);
  z-index: 10;
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-taroman {
    bottom: -0.7320644217vw;
    -webkit-transform: translateX(15.9956076135vw);
    transform: translateX(15.9956076135vw);
    width: 31.9912152269vw;
  }
}
.c-hero__decoration-dot-left, .c-hero__decoration-dot-right {
  aspect-ratio: 1/1;
  bottom: min(60px, 13.9534883721vw);
  mix-blend-mode: multiply;
  width: min(180px, 41.8604651163vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-dot-left, .c-hero__decoration-dot-right {
    bottom: 13.17715959vw;
    opacity: 0.8;
    width: 16.6178623719vw;
  }
}
.c-hero__decoration-dot-left {
  left: 0;
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-dot-left {
    left: auto;
    right: calc(50% + 15.9956076135vw);
  }
}
.c-hero__decoration-dot-right {
  right: 0;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-dot-right {
    left: calc(50% + 15.9956076135vw);
    right: auto;
  }
}
.c-hero__decoration-image1, .c-hero__decoration-image2, .c-hero__decoration-image3, .c-hero__decoration-image4, .c-hero__decoration-image5, .c-hero__decoration-image6, .c-hero__decoration-image7 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 22;
}
.c-hero__decoration-image1-shadow, .c-hero__decoration-image2-shadow, .c-hero__decoration-image3-shadow, .c-hero__decoration-image4-shadow, .c-hero__decoration-image5-shadow, .c-hero__decoration-image6-shadow, .c-hero__decoration-image7-shadow {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: color;
  z-index: 21;
}
.c-hero__decoration-image1, .c-hero__decoration-image1-shadow {
  aspect-ratio: 476/356;
  background-image: url("/shibuya-food-dungeon/_assets/images/hero_decoration_image1.webp");
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image1, .c-hero__decoration-image1-shadow {
    left: 4.39238653vw;
    top: 11.71875vh;
    width: 17.4231332357vw;
  }
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image1-shadow {
    margin-left: -1.4641288433vw;
    margin-top: 0.7320644217vw;
  }
}
.c-hero__decoration-image2, .c-hero__decoration-image2-shadow {
  aspect-ratio: 377/384;
  background-image: url("/shibuya-food-dungeon/_assets/images/hero_decoration_image2.webp");
  left: min(-20px, -4.6511627907vw);
  top: calc(50% - 23.2558139535vw);
  width: min(126px, 29.3023255814vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image2, .c-hero__decoration-image2-shadow {
    left: 15.3733528551vw;
    top: 29.9479166667vh;
    width: 13.7628111274vw;
  }
}
.c-hero__decoration-image2-shadow {
  margin-left: min(-10px, -2.3255813953vw);
  margin-top: min(10px, 2.3255813953vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image2-shadow {
    margin-left: -1.4641288433vw;
    margin-top: 0.7320644217vw;
  }
}
.c-hero__decoration-image3, .c-hero__decoration-image3-shadow {
  aspect-ratio: 477/315;
  background-image: url("/shibuya-food-dungeon/_assets/images/hero_decoration_image3.webp");
  left: min(15px, 3.488372093vw);
  top: calc(50% + 32.5581395349vw);
  width: min(126px, 29.3023255814vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image3, .c-hero__decoration-image3-shadow {
    left: 5.8565153734vw;
    top: 52.0833333333vh;
    width: 17.4231332357vw;
  }
}
.c-hero__decoration-image3-shadow {
  margin-left: min(-10px, -2.3255813953vw);
  margin-top: min(10px, 2.3255813953vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image3-shadow {
    margin-left: -1.4641288433vw;
    margin-top: 0.7320644217vw;
  }
}
.c-hero__decoration-image4, .c-hero__decoration-image4-shadow {
  aspect-ratio: 443/376;
  background-image: url("/shibuya-food-dungeon/_assets/images/hero_decoration_image4.webp");
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image4, .c-hero__decoration-image4-shadow {
    left: 7.3206442167vw;
    top: 71.6145833333vh;
    width: 17.4231332357vw;
  }
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image4-shadow {
    margin-left: -1.4641288433vw;
    margin-top: 0.7320644217vw;
  }
}
.c-hero__decoration-image5, .c-hero__decoration-image5-shadow {
  aspect-ratio: 399/315;
  background-image: url("/shibuya-food-dungeon/_assets/images/hero_decoration_image5.webp");
  right: min(-30px, -6.976744186vw);
  top: calc(50% - 9.3023255814vw);
  width: min(126px, 29.3023255814vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image5, .c-hero__decoration-image5-shadow {
    right: 5.8565153734vw;
    top: 13.0208333333vh;
    width: 14.6412884334vw;
    z-index: 9;
  }
}
.c-hero__decoration-image5-shadow {
  margin-right: min(-5px, -1.1627906977vw);
  margin-top: min(15px, 3.488372093vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image5-shadow {
    margin-right: -0.7320644217vw;
    margin-top: 1.4641288433vw;
    z-index: 8;
  }
}
.c-hero__decoration-image6, .c-hero__decoration-image6-shadow {
  aspect-ratio: 332/332;
  background-image: url("/shibuya-food-dungeon/_assets/images/hero_decoration_image6.webp");
  right: min(-15px, -3.488372093vw);
  top: calc(50% - 58.1395348837vw);
  width: min(126px, 29.3023255814vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image6, .c-hero__decoration-image6-shadow {
    right: 23.4260614934vw;
    top: 23.4375vh;
    width: 12.1522693997vw;
    z-index: 9;
  }
}
.c-hero__decoration-image6-shadow {
  margin-right: min(-10px, -2.3255813953vw);
  margin-top: min(10px, 2.3255813953vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image6-shadow {
    margin-right: -0.7320644217vw;
    margin-top: 1.4641288433vw;
    z-index: 8;
  }
}
.c-hero__decoration-image7, .c-hero__decoration-image7-shadow {
  aspect-ratio: 240/233;
  background-image: url("/shibuya-food-dungeon/_assets/images/hero_decoration_image7.webp");
  right: min(20px, 4.6511627907vw);
  top: calc(50% + 41.8604651163vw);
  width: min(126px, 29.3023255814vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image7, .c-hero__decoration-image7-shadow {
    right: -0.3660322108vw;
    top: 57.2916666667vh;
    width: 8.78477306vw;
    z-index: 9;
  }
}
.c-hero__decoration-image7-shadow {
  margin-right: min(-10px, -2.3255813953vw);
  margin-top: min(10px, 2.3255813953vw);
}
@media print, screen and (min-width:768px) {
  .c-hero__decoration-image7-shadow {
    margin-right: -0.7320644217vw;
    margin-top: 1.4641288433vw;
    z-index: 8;
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-about {
  overflow: hidden;
  padding: 100px 20px 60px;
  position: relative;
}
@media print, screen and (min-width:768px) {
  .c-about {
    padding: 160px 50px 120px;
  }
}
.c-about__inner {
  margin: 0 auto;
  max-width: 460px;
}
@media print, screen and (min-width:768px) {
  .c-about__inner {
    max-width: 1050px;
  }
}
@media print, screen and (min-width:768px) {
  .c-about__title {
    margin: 0 auto 0 0;
    width: min(690px, 63.8888888889vw);
  }
}
.c-about__content {
  margin: 0 auto;
  max-width: 460px;
}
@media print, screen and (min-width:768px) {
  .c-about__content {
    max-width: 790px;
  }
}
.c-about__main {
  padding-bottom: 180px;
  padding-top: 56px;
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width:768px) {
  .c-about__main {
    padding-bottom: 140px;
    padding-top: 80px;
  }
}
.c-about__main-text p {
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
  margin: 0;
}
@media print, screen and (min-width:768px) {
  .c-about__main-text p {
    font-size: 18px;
  }
}
.c-about__main-text p + p {
  margin-top: 2em;
}
.c-about__main-text strong {
  display: inline-block;
  font-size: 25px;
  line-height: 1.5;
}
@media print, screen and (min-width:768px) {
  .c-about__main-text strong {
    font-size: 27px;
  }
}
.c-about__main-image {
  bottom: -10px;
  position: absolute;
  right: -5px;
  width: min(250px, 58.1395348837vw);
}
@media print, screen and (min-width:768px) {
  .c-about__main-image {
    bottom: -10px;
    right: 10px;
    width: min(380px, 42.6966292135vw);
  }
}
@media print, screen and (max-width:767px) {
  .c-about__main-movie {
    display: none;
  }
}
@media print, screen and (min-width:768px) {
  .c-about__main-movie {
    position: absolute;
    right: 0;
    top: 0;
    width: 90%;
  }
  .c-about__main-movie img {
    display: block;
    -webkit-transform: rotate(21deg) translate(25%, -100%);
    transform: rotate(21deg) translate(25%, -100%);
  }
}
.c-about__main-copyright {
  bottom: 4px;
  font-size: clamp(8px, 2.3255813953vw, 10px);
  font-weight: 500;
  margin: 0;
  position: absolute;
  width: auto;
}
@media print, screen and (min-width:768px) {
  .c-about__main-copyright {
    font-size: 12px;
    left: auto;
    right: min(370px, 41.5730337079vw);
  }
}
.c-about__navigation {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width:768px) {
  .c-about__navigation {
    margin-bottom: 120px;
  }
}
.c-about__navigation-list {
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media print, screen and (min-width:768px) {
  .c-about__navigation-list {
    gap: 20px;
  }
}
.c-about__navigation-button {
  background-color: var(--color-00-white);
  border: 2px solid var(--color-00-black);
  border-radius: 12px;
  cursor: pointer;
  -webkit-filter: drop-shadow(1px 3px 4px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(1px 3px 4px rgba(0, 0, 0, 0.4));
  overflow: hidden;
  position: relative;
}
@media print, screen and (min-width:768px) {
  .c-about__navigation-button {
    border-width: 3px;
  }
  .c-about__navigation-button:hover img {
    opacity: 0.7;
  }
  .c-about__navigation-button:hover:after {
    -webkit-transform: translateX(-50%) translateY(4px);
    transform: translateX(-50%) translateY(4px);
  }
}
.c-about__navigation-button:after {
  aspect-ratio: 1/1;
  background-image: url("/shibuya-food-dungeon/_assets/images/about_navigation_button_icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: min(10px, 2.3255813953vw);
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
  width: 19.6721311475%;
}
@media print, screen and (min-width:768px) {
  .c-about__navigation-button:after {
    bottom: 10px;
    width: 50px;
  }
}
.c-about__navigation-button img {
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}
.c-about__map {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.c-about__map-title {
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}
.c-about__map-embed {
  aspect-ratio: 390/404;
  border-radius: 15px;
  -webkit-filter: drop-shadow(8px 11px 3px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(8px 11px 3px rgba(0, 0, 0, 0.16));
  margin: 24px auto 0;
  overflow: hidden;
}
@media print, screen and (min-width:768px) {
  .c-about__map-embed {
    aspect-ratio: 790/404;
    margin-top: 20px;
  }
}
.c-about__map-embed > iframe {
  height: 100%;
  width: 100%;
}
.c-about__dungeon {
  position: relative;
}
.c-about__dungeon-title {
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: min(22px, 5.1162790698vw);
  font-weight: 700;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 1.2;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: center;
}
.c-about__dungeon-title-text {
  display: block;
  text-align: center;
}
.c-about__dungeon-title-text span{
  position: relative;
}
.c-about__dungeon-title-text span span{
    position: absolute;
    width: 100%;
    font-size: 13px;
    left: 50%;
    text-align: center;
    bottom: 0;
    transform: translateY(100%) translateX(-50%);
    letter-spacing: 0.1em;
}
.c-about__dungeon-title-line-left, .c-about__dungeon-title-line-right {
  border-top: 1px solid var(--color-00-white);
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 1px;
  width: auto;
}
.c-about__dungeon-title::before, .c-about__dungeon-title::after {
  border-right: 1px solid var(--color-00-white);
  content: "";
  display: block;
  height: 50%;
  position: absolute;
  top: 50%;
  width: 1px;
}
.c-about__dungeon-title::before {
  left: 0;
}
.c-about__dungeon-title::after {
  right: 0;
}
.c-about__dungeon-inner {
  gap: 20px 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid var(--color-00-white);
  border-left: 1px solid var(--color-00-white);
  border-right: 1px solid var(--color-00-white);
  display: grid;
  grid-template-areas: "logo copy" "text text";
  grid-template-columns: min(126px, 29.3023255814vw) 1fr;
  padding: 30px 20px 40px;
}
@media print, screen and (min-width:768px) {
  .c-about__dungeon-inner {
    gap: 15px 30px;
    grid-template-areas: "logo copy" "logo text";
    grid-template-columns: 212px 1fr;
  }
}
.c-about__dungeon-copy {
  font-size: 19px;
  font-weight: 700;
  grid-area: copy;
  line-height: 1.6;
  margin: 0;
}
.c-about__dungeon-text {
  font-size: 14px;
  font-weight: 700;
  grid-area: text;
  line-height: 1.8;
  margin: 0;
}
.c-about__dungeon-logo {
  grid-area: logo;
}
@media print, screen and (max-width:767px) {
  .c-about__decoration-image1, .c-about__decoration-image2 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    position: absolute;
    z-index: 12;
  }
  .c-about__decoration-image1-shadow, .c-about__decoration-image2-shadow {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    mix-blend-mode: color;
    opacity: 0.9;
    pointer-events: none;
    position: absolute;
    z-index: 11;
  }
  .c-about__decoration-image1, .c-about__decoration-image1-shadow {
    aspect-ratio: 550/530;
    background-image: url("/shibuya-food-dungeon/_assets/images/decoration_image6.webp");
    left: calc(50% + min(130px, 30.2325581395vw));
    position: absolute;
    top: min(220px, 51.1627906977vw);
    width: min(110px, 25.5813953488vw);
  }
  .c-about__decoration-image1-shadow {
    margin-left: 2.9282576867vw;
    margin-top: 1.4641288433vw;
  }
  .c-about__decoration-image2, .c-about__decoration-image2-shadow {
    aspect-ratio: 820/470;
    background-image: url("/shibuya-food-dungeon/_assets/images/decoration_image1.webp");
    position: absolute;
    right: calc(50% + min(200px, 14.6412884334vw));
    width: min(500px, 36.6032210835vw);
  }
  .c-about__decoration-image2-shadow {
    margin-right: 2.196193265vw;
    margin-top: 2.196193265vw;
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-tie-up {
  margin-bottom: 60px;
  padding: 0 20px;
}
@media print, screen and (min-width:768px) {
  .c-tie-up {
    margin-bottom: 120px;
    padding: 0 50px;
  }
}
.c-tie-up__inner {
  background-color: var(--color-00-sub);
  background-image: url("/shibuya-food-dungeon/_assets/images/background_dirt.webp");
  background-position: center top;
  background-repeat: repeat;
  background-size: 100% auto;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) inset;
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  margin: 0 auto;
  max-width: 460px;
  padding: 60px 20px 60px;
}
@media print, screen and (min-width:768px) {
  .c-tie-up__inner {
    max-width: 1050px;
    padding: 120px 50px;
  }
}
.c-tie-up__content {
  padding: 0 20px;
}
@media print, screen and (min-width:768px) {
  .c-tie-up__content {
    margin: 0 auto;
    max-width: 790px;
    padding: 0;
  }
}
.c-tie-up__title {
  background-color: var(--color-01-beige);
  border-radius: 20px;
  -webkit-filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.1));
  margin: 0 0 90px;
  padding: min(60px, 13.9534883721vw) 0;
  position: relative;
  position: relative;
}
.c-tie-up__title-image {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 380px;
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .c-tie-up__title-image {
    max-width: none;
    width: 495px;
  }
}
.c-tie-up__title::before, .c-tie-up__title::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
}
.c-tie-up__title::before {
  aspect-ratio: 360/368;
  background-image: url("/shibuya-food-dungeon/_assets/images/tie-up_title_image1.webp");
  left: -20px;
  top: -20px;
  width: min(100px, 23.2558139535vw);
}
@media print, screen and (min-width:768px) {
  .c-tie-up__title::before {
    left: min(20px, 1.9047619048vw);
    top: min(20px, 1.9047619048vw);
    width: min(170px, 16.1904761905vw);
  }
}
.c-tie-up__title::after {
  aspect-ratio: 36/38;
  background-image: url("/shibuya-food-dungeon/_assets/images/tie-up_title_image2.webp");
  bottom: -50px;
  right: -10px;
  width: min(100px, 23.2558139535vw);
}
@media print, screen and (min-width:768px) {
  .c-tie-up__title::after {
    bottom: min(20px, 1.9047619048vw);
    right: min(10px, 0.9523809524vw);
    width: min(170px, 16.1904761905vw);
  }
}
.c-tie-up__copy {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}
.c-tie-up__shop {
  padding-top: 60px;
}
@media print, screen and (min-width:768px) {
  .c-tie-up__shop {
    padding-top: 120px;
  }
}
.c-tie-up__shop-title {
  margin: 0 auto;
  width: 240px;
}
@media print, screen and (min-width:768px) {
  .c-tie-up__shop-title {
    width: 340px;
  }
}
.c-tie-up__shop-place {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin: 20px auto 0;
  text-align: center;
}
@media print, screen and (min-width:768px) {
  .c-tie-up__shop-place {
    font-size: 18px;
    margin-top: 30px;
  }
}
.c-tie-up__shop-place li {
  margin-top: 10px;
}
.c-tie-up__shop-place li:first-child {
  margin-top: 0;
}
.c-tie-up__shop-note {
  margin-top: 40px;
}
@media print, screen and (min-width:768px) {
  .c-tie-up__shop-note {
    margin-top: 60px;
  }
}
.c-tie-up__shop-note li {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 5px;
}
.c-tie-up__shop-note li:first-child {
  margin-top: 0;
}
@media print, screen and (min-width:768px) {
  .c-tie-up__shop-note li {
    font-size: 15px;
    text-align: center;
  }
}
.c-tie-up__present {
  margin-top: 50px;
}
@media print, screen and (min-width:768px) {
  .c-tie-up__present {
    margin: 100px auto 0;
    max-width: 790px;
  }
}
.c-tie-up__present-content {
  background-color: var(--color-00-white);
  border-bottom: 50px solid var(--color-01-green);
  padding-bottom: 30px;
}
.c-tie-up__present-copy {
  color: var(--color-01-red);
  font-size: min(20px, 4.6511627907vw);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  padding: 15px 20px 0;
  text-align: center;
}
@media print, screen and (min-width:768px) {
  .c-tie-up__present-copy {
    font-size: 23px;
    margin: 0 auto;
    padding-top: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.c-tie-up__present-copy small {
  display: block;
  font-size: 13px;
}
@media print, screen and (min-width:768px) {
  .c-tie-up__present-copy small {
    text-align: right;
  }
}
.c-tie-up__present-note {
  color: var(--color-00-black);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 10px;
  text-align: center;
}
@media print, screen and (min-width:768px) {
  .c-tie-up__present-note {
    font-size: 12px;
    margin-left: 20px;
    text-align: left;
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-card {
  margin-top: 40px;
}
@media print, screen and (min-width:768px) {
  .c-card {
    gap: 10.1265822785%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: grid;
    grid-template-columns: 51.8987341772% 37.9746835443%;
    margin-top: 80px;
  }
}
.c-card__main {
  position: relative;
}
@media print, screen and (min-width:768px) {
  .c-card__main::before {
    aspect-ratio: 1164/1584;
    background-image: url("/shibuya-food-dungeon/_assets/images/tie-up_card.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 0%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 140%;
  }
}
.c-card__main-list {
  -webkit-filter: drop-shadow(5px 5px 6px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(5px 5px 6px rgba(0, 0, 0, 0.16));
}
@media print, screen and (min-width:768px) {
  .c-card__main-list {
    -webkit-filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.8));
    filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.8));
  }
}
.c-card__sub {
  margin-top: 20px;
}
@media print, screen and (min-width:768px) {
  .c-card__sub {
    margin-top: 0;
  }
}
.c-card__sub .swiper-slide {
  aspect-ratio: 1/1;
}
.c-card__sub-thumbnail {
  aspect-ratio: 1/1;
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.c-card__sub-thumbnail img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.c-card__sub-thumbnail::after {
  border: 7px solid var(--color-00-main);
  border-radius: 14px;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  width: 100%;
}
.swiper-slide-thumb-active .c-card__sub-thumbnail::after {
  opacity: 1;
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-items {
  margin-bottom: 60px;
  padding: 0 20px;
}
@media print, screen and (min-width:768px) {
  .c-items {
    margin-bottom: 120px;
    padding: 0 50px;
  }
}
.c-items__inner {
  background-color: var(--color-01-beige);
  background-image: url("/shibuya-food-dungeon/_assets/images/background_dirt.webp");
  background-position: center top;
  background-repeat: repeat;
  background-size: 100% auto;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 40px rgba(144, 81, 7, 0.8) inset;
  box-shadow: 0 0 40px rgba(144, 81, 7, 0.8) inset;
  color: var(--color-00-black);
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  margin: 0 auto;
  max-width: 460px;
  padding: 80px 20px 60px;
}
@media print, screen and (min-width:768px) {
  .c-items__inner {
    max-width: 1050px;
    padding: 120px 50px;
  }
}
.c-items__content {
  margin: 0 auto;
  max-width: 790px;
}
.c-items__title {
  margin: 0 auto 50px;
}
@media print, screen and (min-width:768px) {
  .c-items__title {
    margin-bottom: 70px;
    max-width: 527px;
  }
}
.c-items__copy {
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
  margin: 0 auto;
  text-align: center;
}
.c-items__item {
  margin-top: 80px;
}
@media print, screen and (min-width:768px) {
  .c-items__item {
    margin-top: 120px;
  }
}
.c-items__item:first-of-type {
  margin-top: 60px;
}
@media print, screen and (min-width:768px) {
  .c-items__item:first-of-type {
    margin-top: 80px;
  }
}
.c-items__item-title {
  margin-bottom: 40px;
}
.c-items__note {
  margin-top: 40px;
}
@media print, screen and (min-width:768px) {
  .c-items__note {
    margin-top: 60px;
  }
}
.c-items__note li {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 5px;
}
.c-items__note li:first-child {
  margin-top: 0;
}
@media print, screen and (min-width:768px) {
  .c-items__note li {
    font-size: 15px;
    text-align: center;
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-event {
  color: var(--color-00-black);
  margin-bottom: 50px;
  padding: 0 20px;
}
@media print, screen and (min-width:768px) {
  .c-event {
    margin-bottom: 90px;
    padding: 0 50px;
  }
}
.c-event__inner {
  background-color: var(--color-00-sub);
  background-image: url("/shibuya-food-dungeon/_assets/images/background_dirt.webp");
  background-position: center top;
  background-repeat: repeat;
  background-size: 100% auto;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) inset;
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.1));
  margin: 0 auto;
  max-width: 460px;
  padding: 90px 0;
}
@media print, screen and (min-width:768px) {
  .c-event__inner {
    max-width: 1050px;
    padding: 120px 50px 73px;
  }
}
.c-event__content {
  padding: 0;
}
@media print, screen and (min-width:768px) {
  .c-event__content {
    margin: 0 auto;
    max-width: 790px;
    padding: 0;
  }
}
.c-event__title {
  background-color: var(--color-01-beige);
  border-radius: 20px;
  -webkit-filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.1));
  margin: 0 20px 40px;
  padding: 0 0;
  position: relative;
  position: relative;
}
@media print, screen and (min-width:768px) {
  .c-event__title {
    margin: 0 0 90px;
  }
}
.c-event__title-image {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 380px;
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .c-event__title-image {
    max-width: none;
  }
}
.c-event__copy {
  color: var(--color-00-black);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
  margin: 0 auto;
  padding: 50px 10px 40px;
  text-align: center;
  text-align: left;
}
@media print, screen and (min-width:768px) {
  .c-event__copy {
    font-size: 18px;
    margin: 0 26px;
    padding: 38px 0 0;
    text-align: center;
  }
}
.c-event__pagetop {
  margin-top: 65px;
  text-align: center;
}
@media print, screen and (min-width:768px) {
  .c-event__pagetop {
    margin-top: 40px;
  }
}
.c-event__pagetop-button {
  color: var(--color-00-white);
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  padding-right: 35px;
  position: relative;
  text-decoration: none;
  vertical-align: middle;
}
@media print, screen and (min-width:768px) {
  .c-event__pagetop-button {
    padding-right: 65px;
  }
}
.c-event__pagetop-button::before, .c-event__pagetop-button::after {
  content: "";
  margin: auto;
  position: absolute;
  vertical-align: middle;
}
.c-event__pagetop-button::before {
  background: var(--color-02-yellow);
  border-radius: 50%;
  height: 25px;
  right: 0;
  top: 53%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
}
@media print, screen and (min-width:768px) {
  .c-event__pagetop-button::before {
    height: 50px;
    top: 50%;
    width: 50px;
  }
}
.c-event__pagetop-button::after {
  border-right: 2px solid var(--color-00-black);
  border-top: 2px solid var(--color-00-black);
  height: 10px;
  right: 4%;
  top: 55%;
  -webkit-transform: translateY(-50%) rotate(315deg);
  transform: translateY(-50%) rotate(315deg);
  width: 10px;
}
@media print, screen and (min-width:768px) {
  .c-event__pagetop-button::after {
    height: 14px;
    right: 9%;
    width: 14px;
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-event-rally__title {
  margin: auto;
  padding: 0 70px;
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .c-event-rally__title {
    padding: 0;
  }
}
.c-event-rally__inner {
  background-color: var(--color-00-white);
}
.c-event-rally__banner {
  margin-top: 40px;
}
@media print, screen and (min-width:768px) {
  .c-event-rally__banner {
    margin-top: 49px;
  }
}
.c-event-rally__box {
  background-color: var(--color-02-gray);
  border-radius: 25px;
  margin: 0 10px;
  overflow: hidden;
  padding: 60px 60px 25px;
}
@media print, screen and (min-width:768px) {
  .c-event-rally__box {
    margin: 35px 26px 0;
    padding: 50px 18px 50px 30px;
  }
}
@media print, screen and (min-width:768px) {
  .c-event-rally__flow {
    gap: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-event-rally__item:nth-child(2) .c-event-rally__image::before {
  content: "2";
}
.c-event-rally__item:nth-child(3) .c-event-rally__image::before {
  content: "3";
}
.c-event-rally__item:nth-child(1) .c-event-rally__image::after {
  display: none;
}
@media print, screen and (min-width:768px) {
  .c-event-rally__item:nth-child(1) .c-event-rally__image::after {
    display: block;
  }
}
@media print, screen and (min-width:768px) {
  .c-event-rally__item:nth-child(3) .c-event-rally__image::after {
    display: none;
  }
}
.c-event-rally__item:nth-child(2), .c-event-rally__item:nth-child(3) {
  margin-top: 90px;
}
@media print, screen and (min-width:768px) {
  .c-event-rally__item:nth-child(2), .c-event-rally__item:nth-child(3) {
    margin-top: 0;
  }
}
@media print, screen and (min-width:768px) {
  .c-event-rally__item {
    gap: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
  }
}
.c-event-rally__image {
  position: relative;
}
.c-event-rally__image::before {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-02-red);
  border-radius: 50%;
  color: var(--color-00-white);
  content: "1";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  font-size: min(8.1395348837vw, 35px);
  font-weight: 700;
  height: min(18.6046511628vw, 80px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: -6%;
  overflow: hidden;
  position: absolute;
  top: -11%;
  width: min(18.6046511628vw, 80px);
}
@media print, screen and (min-width:768px) {
  .c-event-rally__image::before {
    font-size: min(3.1818181818vw, 35px);
    height: min(7.2727272727vw, 80px);
    left: -6%;
    top: -11%;
    width: min(7.2727272727vw, 80px);
  }
}
.c-event-rally__image::after {
  background-image: url("/shibuya-food-dungeon/_assets/images/event_triangle.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 54px;
  left: 50%;
  position: absolute;
  top: -70px;
  -webkit-transform: translate(-50%, 0) rotate(90deg);
  transform: translate(-50%, 0) rotate(90deg);
  width: 54px;
}
@media print, screen and (min-width:768px) {
  .c-event-rally__image::after {
    left: unset;
    right: -45px;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(0deg);
    transform: translate(0, -50%) rotate(0deg);
  }
}
.c-event-rally__item-title {
  color: var(--color-00-black);
  font-size: 17px;
}
.c-event-rally__item-text {
  color: var(--color-00-black);
  font-size: 13px;
}
.c-event-rally__bottom {
  margin-top: 30px;
}
.c-event-rally__bottom::after {
  background-color: var(--color-01-yellow);
  content: "";
  display: block;
  height: 50px;
  margin-top: 40px;
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .c-event-rally__bottom::after {
    height: 40px;
  }
}
@media print, screen and (min-width:768px) {
  .c-event-rally__bottom {
    margin-top: 20px;
  }
}
.c-event-rally__information {
  color: var(--color-00-black);
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 20px;
}
@media print, screen and (min-width:768px) {
  .c-event-rally__information {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 26px;
  }
}
.c-event-rally__date {
  font-size: 14px;
  margin-top: 0;
}
@media print, screen and (min-width:768px) {
  .c-event-rally__date {
    margin-top: 20px;
    padding-left: 26px;
  }
}
.c-event-rally__location {
  font-size: 14px;
}
.c-event-rally__location ul {
  font-weight: 700;
  line-height: 1.4;
  margin-top: 5px;
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-event-photo {
  margin-top: 56px;
}
@media print, screen and (min-width:768px) {
  .c-event-photo {
    margin-top: 113px;
  }
}
.c-event-photo__title {
  padding: 0 40px;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__title {
    padding: 0;
  }
}
.c-event-photo__title-2 {
  padding: 70px 85px 0;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__title-2 {
    padding: 70px 0 0;
  }
}
.c-event-photo__panel, .c-event-photo__live-action {
  display: grid;
  margin-top: 50px;
}
.c-event-photo__panel-text, .c-event-photo__live-action-text {
  padding: 0 25px;
  place-items: center;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__panel-text, .c-event-photo__live-action-text {
    letter-spacing: 1px;
    padding: 0;
  }
}
.c-event-photo__panel-text p, .c-event-photo__live-action-text p {
  font-size: 13px;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__panel-text p, .c-event-photo__live-action-text p {
    font-size: 15px;
    margin-top: 0;
  }
}
.c-event-photo__panel-information, .c-event-photo__live-action-information {
  font-size: 14px;
  font-weight: 700;
}
.c-event-photo__panel-information dd, .c-event-photo__live-action-information dd {
  line-height: 1.4;
}
.c-event-photo__panel-information dt, .c-event-photo__live-action-information dt {
  font-weight: 700;
  line-height: 1.5;
}
.c-event-photo__panel-information dd, .c-event-photo__live-action-information dd {
  font-weight: 700;
  line-height: 1.5;
  margin-top: 2px;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__panel-information dd, .c-event-photo__live-action-information dd {
    margin-top: 0;
  }
}
@media print, screen and (min-width:768px) {
  .c-event-photo__panel-information, .c-event-photo__live-action-information {
    gap: 3px 5px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    display: grid;
    grid-template-columns: auto 1fr;
    margin-top: 12px;
  }
}
.c-event-photo__panel-information p, .c-event-photo__live-action-information p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1em;
  margin-top: 0;
}
.c-event-photo__panel {
  gap: 40px;
  grid-template-columns: 1fr;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__panel {
    gap: 62px;
    grid-template-columns: 0.63fr 1fr;
  }
}
.c-event-photo__panel img {
  padding: 0 70px;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__panel img {
    padding: 0;
  }
}
.c-event-photo__panel-text {
  place-content: end;
}
.c-event-photo__panel-information {
  margin-top: 50px;
}
.c-event-photo__panel-information .sp-inline {
  display: inline;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__panel-information .sp-inline {
    display: block;
  }
}
.c-event-photo__panel-information dd.sp-inline {
  margin-left: 30px;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__panel-information dd.sp-inline {
    margin-left: 0;
  }
}
.c-event-photo__live-action {
  grid-template-columns: 1fr;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__live-action {
    gap: 42px;
    grid-template-columns: 1fr 303px;
  }
}
.c-event-photo__live-action-text {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  place-content: center;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__live-action-text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.c-event-photo__live-action-information {
  margin-top: 30px;
}
.c-event-photo__live-action-information .sp-inline {
  display: inline;
  vertical-align: top;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__live-action-information .sp-inline {
    display: block;
  }
}
.c-event-photo__live-action-information .sp-inline-block {
  display: inline-block;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__live-action-information .sp-inline-block {
    display: block;
  }
}
@media print, screen and (min-width:768px) {
  .c-event-photo__live-action-information {
    margin-top: 60px;
  }
}
.c-event-photo__live-action-photo {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding: 0 75px;
}
@media print, screen and (min-width:768px) {
  .c-event-photo__live-action-photo {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 0;
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-event-movie {
  background-color: var(--color-01-beige);
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
  margin: 70px 20px 0;
  padding-bottom: 70px;
}
@media print, screen and (min-width:768px) {
  .c-event-movie {
    margin: 132px 0 0;
  }
}
.c-event-movie__poster {
  padding: 20px 90px 10px;
}
.c-event-movie__release img {
  margin: auto;
  text-align: center;
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .c-event-movie__release img {
    width: 85%;
  }
}
.c-event-movie__decision img {
  margin: 25px auto;
  text-align: center;
  width: 80%;
}
@media print, screen and (min-width:768px) {
  .c-event-movie__decision img {
    width: 60%;
  }
}
.c-event-movie__text {
  margin: 40px 10px 48px;
  text-align: center;
}
@media print, screen and (min-width:768px) {
  .c-event-movie__text {
    margin: 57px auto 48px;
  }
}
@media print, screen and (min-width:768px) {
  .c-event-movie__text p {
    letter-spacing: 1px;
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-footer {
  padding-bottom: 15px;
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width:768px) {
  .c-footer {
    padding-bottom: 40px;
  }
}
.c-footer__link {
  margin-bottom: 60px;
}
@media print, screen and (min-width:768px) {
  .c-footer__link {
    margin-bottom: 90px;
  }
}
.c-footer__link li a {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin: 0 auto;
  text-align: center;
  text-decoration: underline;
  -webkit-transition: -webkit-text-decoration-color 200ms ease;
  transition: -webkit-text-decoration-color 200ms ease;
  transition: text-decoration-color 200ms ease;
  transition: text-decoration-color 200ms ease, -webkit-text-decoration-color 200ms ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-footer__link li a:hover {
  -webkit-text-decoration-color: rgba(255, 255, 255, 0);
  text-decoration-color: rgba(255, 255, 255, 0);
}
.c-footer__copyright {
  text-align: center;
}
.c-footer__copyright small {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.c-footer__fixed-navigation {
  aspect-ratio: 1/1;
  bottom: 5px;
  -webkit-filter: drop-shadow(1px 3px 4px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(1px 3px 4px rgba(0, 0, 0, 0.4));
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 15px;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  width: 130px;
  z-index: 3;
}
@media print, screen and (min-width:768px) {
  .c-footer__fixed-navigation {
    width: 180px;
  }
}
.c-footer__fixed-navigation.is-active {
  opacity: 1;
  pointer-events: auto;
}
@media print, screen and (min-width:768px) {
  .c-footer__fixed-navigation button {
    -webkit-transition: -webkit-transform 100ms ease-in;
    transition: -webkit-transform 100ms ease-in;
    transition: transform 100ms ease-in;
    transition: transform 100ms ease-in, -webkit-transform 100ms ease-in;
  }
  .c-footer__fixed-navigation button:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: -webkit-transform 150ms cubic-bezier(0.4, 1.08, 0.7, 1.85);
    transition: -webkit-transform 150ms cubic-bezier(0.4, 1.08, 0.7, 1.85);
    transition: transform 150ms cubic-bezier(0.4, 1.08, 0.7, 1.85);
    transition: transform 150ms cubic-bezier(0.4, 1.08, 0.7, 1.85), -webkit-transform 150ms cubic-bezier(0.4, 1.08, 0.7, 1.85);
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-01-sub);
  border: 3px solid var(--color-00-white);
  border-radius: 100vw;
  color: var(--color-00-black);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0.09em;
  line-height: 1;
  margin: 0 auto;
  max-width: 312px;
  min-height: 67px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .c-button {
    min-height: 83px;
    -webkit-transition: background-color 200ms;
    transition: background-color 200ms;
  }
  .c-button:hover {
    background-color: #f0c064;
  }
  .c-button:hover:after {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
}
.c-button:after {
  background-image: url("/shibuya-food-dungeon/_assets/images/button_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 22px;
  position: absolute;
  right: 24px;
  top: calc(50% - 11px);
  width: 11px;
}
@media print, screen and (min-width:768px) {
  .c-button:after {
    -webkit-transition: -webkit-transform 200ms;
    transition: -webkit-transform 200ms;
    transition: transform 200ms;
    transition: transform 200ms, -webkit-transform 200ms;
  }
}
.c-button__label {
  height: 20px;
  width: auto;
}
@media print, screen and (min-width:768px) {
  .c-button__label {
    height: 25px;
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-button-more {
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-01-sub);
  border: 3px solid var(--color-00-white);
  border-radius: 100vw;
  color: var(--color-00-black);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0.09em;
  line-height: 1;
  margin: 0 auto;
  max-width: 312px;
  min-height: 67px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media print, screen and (min-width:768px) {
  .c-button-more {
    gap: 30px;
    min-height: 83px;
    -webkit-transition: background-color 200ms;
    transition: background-color 200ms;
  }
  .c-button-more:hover {
    background-color: #f0c064;
  }
  .c-button-more:hover:after {
    -webkit-transform: rotate(90deg) translateX(40%);
    transform: rotate(90deg) translateX(40%);
  }
}
.c-button-more:after {
  background-image: url("/shibuya-food-dungeon/_assets/images/button_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 22px;
  -webkit-transform: rotate(90deg) translateX(20%);
  transform: rotate(90deg) translateX(20%);
  width: 11px;
}
@media print, screen and (min-width:768px) {
  .c-button-more:after {
    -webkit-transition: -webkit-transform 200ms;
    transition: -webkit-transform 200ms;
    transition: transform 200ms;
    transition: transform 200ms, -webkit-transform 200ms;
  }
}
.c-button-more.is-hidden {
  display: none;
}
.c-button-more__label {
  height: 20px;
  width: auto;
}
@media print, screen and (min-width:768px) {
  .c-button-more__label {
    height: 25px;
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-item-list {
  gap: 0px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
  margin-top: -40px;
}
@media print, screen and (min-width:768px) {
  .c-item-list {
    gap: 0px 30px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 60px;
    margin-top: -80px;
  }
}
@media print, screen and (max-width:767px) {
  .c-item-list[data-show=part] .c-item-list__item:nth-child(n+5) {
    display: none;
  }
}
@media print, screen and (min-width:768px) {
  .c-item-list[data-show=part] .c-item-list__item:nth-child(n+7) {
    display: none;
  }
}
.c-item-list[data-show=all] .c-item-list__item {
  display: grid;
}
.c-item-list__item {
  gap: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  display: grid;
  grid-row: span 5;
  grid-template-rows: subgrid;
  margin-top: 40px;
}
@media print, screen and (min-width:768px) {
  .c-item-list__item {
    margin-top: 80px;
  }
}
.c-item-list__brand {
  font-size: 16px;
  font-weight: 700;
  margin-top: 5px;
}
@media print, screen and (min-width:768px) {
  .c-item-list__brand {
    margin-top: 12px;
  }
}
.c-item-list__name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 2px;
}
@media print, screen and (min-width:768px) {
  .c-item-list__name {
    font-size: 16px;
  }
}
.c-item-list__price {
  display: block;
  font-weight: 700;
  margin-top: 3px;
  text-align: right;
}
@media print, screen and (min-width:768px) {
  .c-item-list__price {
    margin-top: 5px;
  }
}
.c-item-list__price-prefix {
  font-size: 14px;
}
@media print, screen and (min-width:768px) {
  .c-item-list__price-prefix {
    font-size: 17px;
  }
}
.c-item-list__price-main {
  font-size: 17px;
}
@media print, screen and (min-width:768px) {
  .c-item-list__price-main {
    font-size: 20px;
  }
}
.c-item-list__price-suffix {
  font-size: 14px;
}
@media print, screen and (min-width:768px) {
  .c-item-list__price-suffix {
    font-size: 17px;
  }
}
.c-item-list__copy {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 8px;
}
@media print, screen and (min-width:768px) {
  .c-item-list__copy {
    font-size: 15px;
  }
}
.c-item-list__info {
  margin-top: 10px;
}
@media print, screen and (min-width:768px) {
  .c-item-list__info {
    gap: 3px 5px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    display: grid;
    grid-template-columns: auto 1fr;
    margin-top: 12px;
  }
}
.c-item-list__info dt {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}
@media print, screen and (min-width:768px) {
  .c-item-list__info dt {
    font-size: 14px;
  }
}
.c-item-list__info dd {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 2px;
}
@media print, screen and (min-width:768px) {
  .c-item-list__info dd {
    font-size: 14px;
    margin-top: 0;
  }
}
.c-item-list__info dd + dt {
  margin-top: 12px;
}
@media print, screen and (min-width:768px) {
  .c-item-list__info dd + dt {
    margin-top: 0;
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-fixed-navigation {
  aspect-ratio: 1/1;
  bottom: 5px;
  -webkit-filter: drop-shadow(1px 3px 4px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(1px 3px 4px rgba(0, 0, 0, 0.4));
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 15px;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: opacity 200ms ease, -webkit-transform 300ms cubic-bezier(0.35, 2.01, 1, 1);
  transition: opacity 200ms ease, -webkit-transform 300ms cubic-bezier(0.35, 2.01, 1, 1);
  transition: opacity 200ms ease, transform 300ms cubic-bezier(0.35, 2.01, 1, 1);
  transition: opacity 200ms ease, transform 300ms cubic-bezier(0.35, 2.01, 1, 1), -webkit-transform 300ms cubic-bezier(0.35, 2.01, 1, 1);
  width: 130px;
  z-index: 3;
}
@media print, screen and (min-width:768px) {
  .c-fixed-navigation {
    width: 180px;
  }
}
.c-fixed-navigation.is-active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1);
  transform: scale(1);
}
@media print, screen and (min-width:768px) {
  .c-fixed-navigation button {
    -webkit-transition: -webkit-transform 100ms ease-in;
    transition: -webkit-transform 100ms ease-in;
    transition: transform 100ms ease-in;
    transition: transform 100ms ease-in, -webkit-transform 100ms ease-in;
  }
  .c-fixed-navigation button:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: -webkit-transform 150ms cubic-bezier(0.4, 1.08, 0.7, 1.85);
    transition: -webkit-transform 150ms cubic-bezier(0.4, 1.08, 0.7, 1.85);
    transition: transform 150ms cubic-bezier(0.4, 1.08, 0.7, 1.85);
    transition: transform 150ms cubic-bezier(0.4, 1.08, 0.7, 1.85), -webkit-transform 150ms cubic-bezier(0.4, 1.08, 0.7, 1.85);
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-decoration {
  display: contents;
  pointer-events: none;
}
@media print, screen and (min-width:768px) {
  .c-decoration__pc-image1, .c-decoration__pc-image2, .c-decoration__pc-image3, .c-decoration__pc-image4, .c-decoration__pc-image5, .c-decoration__pc-image6, .c-decoration__pc-image7 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 12;
  }
  .c-decoration__pc-image1-shadow, .c-decoration__pc-image2-shadow, .c-decoration__pc-image3-shadow, .c-decoration__pc-image4-shadow, .c-decoration__pc-image5-shadow, .c-decoration__pc-image6-shadow, .c-decoration__pc-image7-shadow {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    mix-blend-mode: color;
    opacity: 0.9;
    z-index: 11;
  }
  .c-decoration__pc-image1, .c-decoration__pc-image1-shadow {
    aspect-ratio: 820/470;
    background-image: url("/shibuya-food-dungeon/_assets/images/decoration_image1.webp");
    display: block;
    left: calc(50% + min(340px, 24.8901903367vw));
    position: absolute;
    top: calc(100vh + 300px);
    width: min(410px, 30.0146412884vw);
  }
  .c-decoration__pc-image1-shadow {
    margin-left: -1.4641288433vw;
    margin-top: 0.7320644217vw;
  }
  .c-decoration__pc-image2, .c-decoration__pc-image2-shadow {
    aspect-ratio: 1000/1300;
    background-image: url("/shibuya-food-dungeon/_assets/images/decoration_image2.webp");
    display: block;
    -webkit-filter: blur(18px);
    filter: blur(18px);
    position: absolute;
    right: calc(50% + min(520px, 38.0673499268vw));
    top: calc(100vh + 800px);
    width: min(500px, 36.6032210835vw);
  }
  .c-decoration__pc-image2-shadow {
    margin-left: -1.4641288433vw;
    margin-top: 0.7320644217vw;
  }
  .c-decoration__pc-image3, .c-decoration__pc-image3-shadow {
    aspect-ratio: 740/470;
    background-image: url("/shibuya-food-dungeon/_assets/images/decoration_image3.webp");
    display: block;
    left: calc(50% + min(480px, 35.1390922401vw));
    position: absolute;
    top: calc(100vh + 1700px);
    width: min(370px, 27.0863836018vw);
  }
  .c-decoration__pc-image3-shadow {
    margin-left: -1.4641288433vw;
    margin-top: 2.196193265vw;
  }
  .c-decoration__pc-image4, .c-decoration__pc-image4-shadow {
    aspect-ratio: 730/440;
    background-image: url("/shibuya-food-dungeon/_assets/images/decoration_image4.webp");
    display: block;
    position: absolute;
    right: calc(50% + min(350px, 25.6222547584vw));
    top: calc(100vh + 3200px);
    width: min(365px, 26.7203513909vw);
  }
  .c-decoration__pc-image4-shadow {
    margin-right: 1.0980966325vw;
    margin-top: 1.4641288433vw;
  }
  .c-decoration__pc-image5, .c-decoration__pc-image5-shadow {
    aspect-ratio: 590/710;
    background-image: url("/shibuya-food-dungeon/_assets/images/decoration_image5.webp");
    display: block;
    left: calc(50% + min(370px, 27.0863836018vw));
    position: absolute;
    top: calc(100vh + 4500px);
    width: min(295px, 21.5959004392vw);
  }
  .c-decoration__pc-image5-shadow {
    margin-left: -1.4641288433vw;
    margin-top: 0.7320644217vw;
  }
  .c-decoration__pc-image6, .c-decoration__pc-image6-shadow {
    aspect-ratio: 550/530;
    background-image: url("/shibuya-food-dungeon/_assets/images/decoration_image6.webp");
    display: block;
    position: absolute;
    right: calc(50% + min(350px, 25.6222547584vw));
    top: calc(100vh + 6050px);
    width: min(275px, 20.1317715959vw);
  }
  .c-decoration__pc-image6-shadow {
    margin-right: 2.9282576867vw;
    margin-top: 1.4641288433vw;
  }
  .c-decoration__pc-image7, .c-decoration__pc-image7-shadow {
    aspect-ratio: 580/470;
    background-image: url("/shibuya-food-dungeon/_assets/images/decoration_image7.webp");
    display: block;
    left: calc(50% + min(310px, 22.6939970717vw));
    position: absolute;
    top: calc(100vh + 7100px);
    width: min(290px, 21.2298682284vw);
  }
  .c-decoration__pc-image7-shadow {
    margin-left: 1.4641288433vw;
    margin-top: 2.196193265vw;
  }
}

:root {
  --color-00-black: #000000;
  --color-00-white: #ffffff;
  --color-00-main: #d32c25;
  --color-00-sub: #db9739;
  --color-00-gray: #3c3c3c;
  --color-01-sub: #eeb74d;
  --color-01-beige: #fcf7f0;
  --color-01-red: #e60012;
  --color-01-yellow: #ebe812;
  --color-01-green: #006934;
  --color-02-red: #d33826;
  --color-02-gray: #cdcdcd;
  --color-02-yellow: #ece812;
  --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;
}

.c-loading {
  background-color: var(--color-00-main);
  background-image: url("/shibuya-food-dungeon/_assets/images/background_dirt.webp");
  background-position: center top;
  background-repeat: repeat;
  background-size: 100% auto;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  width: 100%;
  z-index: 100;
}
.c-loading.is-loaded {
  opacity: 0;
}
.c-loading__logo {
  -webkit-animation: loading 2000ms linear;
  animation: loading 2000ms linear;
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 150px;
}
@media print, screen and (min-width:768px) {
  .c-loading__logo {
    width: 330px;
  }
}

@-webkit-keyframes loading {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0.5;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes loading {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0.5;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/* ==========================================================================
Page
========================================================================== */
/* ==========================================================================
Utility
========================================================================== */



