:root {
  --text-black: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  background: url("../image/food_background.jpg") center / auto auto repeat
    fixed;
  overflow-x: hidden;
}

html.is-first-visit body {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 25%, #8a5b47, #5a3428 72%);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.page-loader__logo {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  left: clamp(28px, 4vw, 56px);
  width: 120px;
  height: auto;
}

.page-loader__text {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.9rem, 2.4vw, 1.1rem);
  letter-spacing: 0.35em;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.inner {
  max-width: none;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
}

/*---------- fixed navigation ---------- */

.fixed-nav {
  position: fixed;
  top: 28px;
  right: 40px;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.fixed-nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.fixed-nav a {
  color: var(--text-black);
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.fixed-nav a[href="#access"] {
  font-weight: 400;
}

.fixed-nav a:hover {
  opacity: 0.6;
}

.fixed-nav--hidden {
  opacity: 0;
  pointer-events: none;
}

.fixed-nav--light a {
  color: #fff;
}

/*---------- hamburger menu ---------- */

.hamburger {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-black);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger--light span {
  background: #fff;
}

.hamburger.is-open span {
  background: var(--text-black);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.9rem;
}

.mobile-nav li {
  position: relative;
  text-align: center;
}

.mobile-nav li + li::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  margin-left: -90px;
  width: 180px;
  height: 2px;
  background: radial-gradient(
      circle,
      rgba(107, 62, 62, 0.5) 1px,
      transparent 1.2px
    )
    left center / 10px 2px repeat-x;
}

.mobile-nav a {
  color: var(--text-black);
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.3em;
}

.mobile-nav a[href="#access"] {
  font-weight: 400;
}

.mobile-nav a:hover {
  opacity: 0.6;
}

/*---------- hero section ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* 背景レイヤー */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../image/hero.jpg") center / cover no-repeat;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  z-index: 0;
}

/* 前面 */
.hero .inner {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.logo_top {
  position: absolute;
  left: 100px;
  bottom: 30%;
  max-width: 400px;
  width: 25vw;
  height: auto;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}

.bottom-menu {
  position: absolute;
  left: 60px;
  bottom: 0;
  display: flex;
  height: 170px;
  line-height: 1.2rem;
  align-items: flex-start;
  color: var(--text-black);
  font-family: "Shippori Mincho", serif;
}

.bottom-menu-left {
  width: 70px;
  height: 100%;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  border-right: 2px solid var(--text-black);
}

.bottom-menu-left span {
  display: inline-block;
  transform: rotate(90deg);
  position: relative;
  left: 15px;
  top: 20px;
}

.hero .bottom-menu-left span {
  top: 28px;
}

.access .bottom-menu-left span {
  top: 28px;
}

.bottom-menu-right {
  margin-left: 20px;
}

.bottom-menu-right a {
  font-size: 1rem;
}

.bottom-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.bottom-menu a {
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.hero-right {
  position: absolute;
  left: calc(50% - 2.25rem);
  top: 60px;
  transform: translateX(0);
  align-items: center;
}

.hero-tagline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 12%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.68em;
  margin: 0;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.7);
}

/*---------- story section ---------- */
.story {
  background: #610f13;
  width: 100%;
  padding: 0 0 100px;
  overflow: hidden;
}

.inner-story {
  max-width: 1500px;
  margin: 230px 200px;
  display: flex;
  flex-direction: column;
  padding: 0;
}

/* 装飾ライン */
.story-deco {
  width: 100%;
  height: 80px;
  background: url("../image/story_deco.png") center / auto 100% no-repeat;
  opacity: 0.5;
}

.story-deco--bottom {
  transform: scaleY(-1);
  margin-top: 150px;
}

/* ブロック共通 */
.story-block {
  display: flex;
  align-items: center;
  gap: 90px;
  margin-bottom: 200px;
}

.story-block--intro {
  margin-top: 150px;
  width: 100%;
  position: relative;
}

.story-block--intro::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -110px;
  width: 525px;
  height: 700px;
  background: url("../image/story_light.png") right top / 525px auto no-repeat;
  pointer-events: none;
  z-index: 1;
}

.story-block--intro::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(100% - 350px);
  width: 100%;
  height: 460px;
  background: url("../image/story_sign.png") right top / auto 460px no-repeat;
  pointer-events: none;
}

.story-block-left {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.story-block--food {
  height: 600px;
  justify-content: flex-end;
}

.story-block-right {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-content: center;
}

/* 写真 */
.story-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.story-img.is-visible {
  opacity: 1;
}

.story-img--food {
  width: min(840px, 55%);
  max-width: 100%;
}

.story-img--interior {
  width: 540px;
  max-width: 100%;
}

.story-block--interior {
  position: relative;
}

.story-block--interior::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(100% - 410px);
  width: 100%;
  height: 715px;
  background: url("../image/story_coffee_mill.png") right top / 400px auto
    no-repeat;
  pointer-events: none;
}

/* テキスト */
.story-text {
  color: #f5ece8;
  font-family: "Shippori Mincho", serif;
  font-size: 1rem;
  line-height: 2.4;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.story-text.is-visible {
  opacity: 1;
}

/* Eden's Story 見出しブロック */
.story-heading-block {
  position: relative;
  display: flex;
  align-items: start;
  height: 450px;
  margin-bottom: 80px;
  margin-right: -200px;
  overflow: visible;
}

.story-heading-block::before {
  content: "";
  position: absolute;
  left: -50px;
  top: -250px;
  width: 565px;
  height: 750px;
  background: url("../image/story_chandelier.png") left top / 565px auto
    no-repeat;
  pointer-events: none;
  z-index: 1;
}

.story-heading {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
  font-weight: 400;
  flex: 1;
  text-align: right;
}

/*---------- memory section ---------- */

.memory {
  width: 100%;
  height: 100vh;
  margin-left: 0;
  background: url("../image/memory_back.jpg") center / cover no-repeat;
}

.memory-inner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.memory-body {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 70vh;
  z-index: 2;
  font-family: "Shippori Mincho", serif;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-size: 1rem;
  line-height: 3;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 1.4s ease;
}

.memory-body.is-visible {
  opacity: 1;
}

.memory-slider {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  height: 300px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  cursor: grab;
}

.memory-slider::-webkit-scrollbar {
  display: none;
}

.memory-slide {
  flex: none;
  height: 300px;
  width: clamp(220px, 24vw, 380px);
  overflow: hidden;
  backface-visibility: hidden;
}

.memory-slide img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  transform: translateZ(0);
  transition: transform 0.4s ease;
}

.memory-slide:hover img {
  transform: scale(1.08) translateZ(0);
}

/*---------- food_menu section ---------- */
.food_menu {
  width: 100%;
  padding: 60px 20px 0px;
  position: relative;
  color: #6b3e3e;
}

.food_menu-inner {
  max-width: 1500px;
  margin: 0 auto;
  background: #eee6d8;
  padding: 60px 109px 60px;
  border: 1px solid #5a3838;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ヘッダー */
.food_menu-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 980px;
  margin-bottom: 200px;
  background-image:
    url("../image/food_green.png"), url("../image/food_spoon.png");
  background-position:
    left bottom,
    right top 300px;
  background-repeat: no-repeat, no-repeat;
}

.food_menu-title {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: 0.04em;
  width: 100%;
  height: 170px;
  background: url("../image/food_title.png") center center no-repeat;
  margin-bottom: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.food_menu-title::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: url("../image/food_deco.png") left center / contain no-repeat;
  pointer-events: none;
  z-index: 1;
}

.food_menu-title::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  background: url("../image/food_deco_r.png") right center / contain no-repeat;
  pointer-events: none;
  z-index: 1;
}

.food_menu-lead {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.2rem;
  line-height: 2.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  font-family: "Shippori Mincho", serif;
}

/* カテゴリ */
.food_menu-category {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(2.1rem, 5vw, 3rem);
  letter-spacing: 0.08em;
  margin: 90px 0 190px;
  color: #c7b3a2;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.food_menu-category::before,
.food_menu-category::after {
  content: "";
  display: inline-block;
  width: 200px;
  height: 100px;
  background: url("../image/food_deco2.png") center center / contain no-repeat;
}

.food_menu-category::after {
  transform: scaleX(-1);
}

/* アイテム */
/* ブロック */
.food_menu-block.pasta {
  position: relative;
  overflow: visible;
  isolation: isolate;
  height: min(1323px, 92vw);
}

.food_menu-block.pasta::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 200px;
  width: calc(113% + 23px);
  /* height: min(1323px, 92vw); */
  background: none;
  pointer-events: none;
  z-index: 0;
}

.food_menu-block.pasta > * {
  position: relative;
  z-index: 1;
}

.food_menu-block.dessert {
  position: relative;
  height: auto;
  overflow: visible;
  isolation: isolate;
}

.food_menu-block.dessert::before {
  content: "";
  position: absolute;
  right: -50px;
  top: 210px;
  width: calc(100% + 110px);
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.food_menu-block.dessert > * {
  position: relative;
  z-index: 1;
}

.food_menu-item {
  display: flex;
  align-items: flex-end;
  margin-bottom: 90px;
  position: relative;
}

.food_menu-item.pasta {
  margin-bottom: 90px;
  /* min-height: min(700px, 48vw); */
}

.food_menu-item.pasta .food_menu-text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: auto;
}

.food_menu-item.pasta .food_menu-text .jp-title {
  font-size: clamp(1.6rem, 3.1vw, 3rem);
}

.food_menu-item.pasta .food_menu-text .desc {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
}

.food_menu-item.pasta .food_menu-text .price {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.food_menu-item.hotcake .food_menu-text,
.food_menu-item.ice .food_menu-text {
  width: auto;
  max-width: none;
}

.food_menu-item .food_menu-text {
  position: relative;
  z-index: 3;
}

.food_menu-item.hotcake .food_menu-text {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.food_menu-item.hotcake .food_menu-text .jp-title,
.food_menu-item.ice .food_menu-text .jp-title {
  font-size: clamp(1.6rem, 3.1vw, 3rem);
}

.food_menu-item.hotcake .food_menu-text .desc,
.food_menu-item.ice .food_menu-text .desc {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
}

.food_menu-item.hotcake .food_menu-text .price,
.food_menu-item.ice .food_menu-text .price {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.food_menu-item.hotcake {
  margin-top: 0;
}

.food_menu-item.ice {
  margin-top: 200px;
  justify-content: flex-end;
}

.food_menu-item.ice .food_menu-text {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 40vw;
  max-width: none;
  text-align: right;
  z-index: 2;
}

.food_menu-item.reverse {
  flex-direction: row-reverse;
}

.food_menu-item.pasta .food_menu-image {
  flex: none;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.food_menu-item.pasta .food_menu-image::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -25px;
  width: 40%;
  aspect-ratio: 527 / 329;
  background: url("../image/food_napori_name.webp") center / contain no-repeat;
  z-index: 2;
  pointer-events: none;
}

.food_menu-item.pasta .food_menu-photo {
  width: 80%;
  max-width: none;
  transform: translate(20px, -30px);
}

.food_menu-item.hotcake .food_menu-image {
  flex: none;
  width: 100%;
  min-height: 650px;
  position: relative;
}

.food_menu-item.hotcake .food_menu-image::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -25px;
  width: 35%;
  aspect-ratio: 527 / 329;
  background: url("../image/food_hotcake_name.webp") center / contain no-repeat;
  z-index: 2;
  pointer-events: none;
}

.food_menu-item.hotcake .food_menu-image::after {
  content: "";
  position: absolute;
  top: -90px;
  right: 200px;
  width: 38%;
  aspect-ratio: 339 / 257;
  background: url("../image/food_hotcake_fukidasi.webp") center / contain
    no-repeat;
  z-index: 2;
  pointer-events: none;
}

.food_menu-item.hotcake .food_menu-photo {
  width: 70%;
  max-width: none;
  transform: translate(-40px, 180px);
}

.food_menu-item.ice .food_menu-image {
  /* min-height: 1000px; */
  flex: none;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.food_menu-item.ice .food_menu-image::before {
  content: "";
  position: absolute;
  top: -70px;
  left: clamp(20px, 18vw, 300px);
  width: 38%;
  aspect-ratio: 527 / 329;
  background: url("../image/food_ice_name.webp") center / contain no-repeat;
  z-index: 2;
  pointer-events: none;
}

.food_menu-item.ice .food_menu-image::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -20px;
  width: 23%;
  aspect-ratio: 339 / 257;
  background: url("../image/food_ice_fukidasi.webp") center / contain no-repeat;
  z-index: 2;
  pointer-events: none;
}

.food_menu-item.ice .food_menu-photo {
  width: min(70%, 30vw);
  margin-top: clamp(40px, 5vw, 150px);
  margin-right: clamp(50px, 6vw, 150px);
  height: auto;
}

.food_menu-photo-sp {
  display: none;
}

.food_menu-photo {
  width: 100%;
  max-width: 560px;
  display: block;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.3));
}

.food_menu-bottom-sp {
  display: none;
}

/* テキスト */
.food_menu-text h4 {
  font-family: "Lumios Brush", cursive;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1;
  color: #6b3e3e;
  font-weight: 400;
}

.food_menu-text .jp-title {
  font-size: 3rem;
  font-weight: 900;
  margin: 14px 0 5px;
  color: #6f3d3f;
}

.food_menu-text .desc {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 700;
  color: #5a3838;
}

.food_menu-text .price {
  margin-top: 10px;
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  color: #6f3d3f;
}

.food_menu-text .price::first-letter {
  font-size: 0.6em;
}

.food_menu-text {
  max-width: 420px;
}

/*---------- food_menu2 section ---------- */

.food_menu2 {
  background: url("../image/food_background.jpg") center / auto auto repeat
    fixed;
  width: 100%;
  height: calc(100vh - 150px);
  position: relative;
  color: #6b3e3e;
}

.food_menu2.panel {
  padding: 0 16px;
}

.food_menu .food_menu-inner {
  border-bottom: none;
}

.food_menu2 .food_menu-inner {
  margin-bottom: 150px;
  width: 100%;
  max-width: 1500px;
  border-top: none;
}

.food_menu-break {
  position: relative;
  display: flex;
  height: 460px;
  margin-top: 50px;
  align-items: flex-end;
  justify-content: center;
  background-image: url("../image/food_girl02.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 500px auto;
  font-size: 1.2rem;
}

.food_menu-break::before {
  content: "";
  position: absolute;
  top: -55px;
  left: 110px;
  width: clamp(120px, 14vw, 220px);
  aspect-ratio: 1 / 1;
  background: url("../image/food_beans.webp") left top / contain no-repeat;
  pointer-events: none;
  z-index: 0;
}

.food_menu-break > * {
  position: relative;
  z-index: 1;
}

.break-text-tb {
  display: none;
}

.food_menu-bottom {
  position: relative;
  height: 150px;
  background-image: url("../image/food_deco3.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 500px auto;
}

.food_menu-bottom::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 120px;
  height: 100%;
  background: url("../image/food_deco.png") left center / contain no-repeat;
  transform: scaleY(-1);
  pointer-events: none;
}

.food_menu-bottom::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 0;
  width: 120px;
  height: 100%;
  background: url("../image/food_deco_r.png") right center / contain no-repeat;
  transform: scaleY(-1);
  pointer-events: none;
}

/*---------- drink_menu section ---------- */

/* GSAP vertical pin structure */
.drink-v-panel {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.drink-v-panel.food_menu2 {
  flex-direction: column;
}

/* drink sections 背景なし */
#drink_menu {
  background: none;
}

/* 2枚のカードを重ねるステージ */
.drink-stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.drink-stage .drink_coffee,
.drink-stage .drink_soda {
  position: absolute;
  top: 50%;
  left: 50%;
}

/* 上に重なる順 */
#drink_menu {
  z-index: 1;
}
#drink_coffee {
  z-index: 2;
}

/* 共通 */
.panel {
  height: 100vh;
}

/* 紙芝居の“時間”を作る */

/* デフォルト */
.scroll-area {
  height: 300vh;
}

.coffee .scroll-area {
  height: 200vh;
  display: flex;
  justify-content: center;
}

.soda .scroll-area {
  height: 100vh;
  display: flex;
  justify-content: center;
}

/* 固定 */
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 色 */

.drink_coffee,
.drink_soda {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.5));
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  color: white;
  font-size: clamp(0.75rem, 1.11vw, 1.25rem);
  line-height: clamp(1.2rem, 1.78vw, 2rem);
}

@media screen and (min-width: 1025px) {
  .drink_coffee {
    width: min(1800px, 100%);
    height: auto;
    aspect-ratio: 1800 / 790;
  }

  .drink_soda {
    width: min(1800px, 100%);
    height: auto;
    aspect-ratio: 1800 / 790;
    overflow: hidden;
  }
}

.drink_coffee {
  background: url("../image/drink_coffee.png") 50% 50% / cover no-repeat;
  position: relative;
  overflow: visible;
  padding: 4.44vw 5vw 3.33vw;
}

.drink_coffee p {
  color: #d5bd97;
}

.drink-text {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.drink_coffee .drink-text .price {
  color: #fff;
  text-align: left;
  width: auto;
  margin-top: 15px;
  font-size: clamp(3rem, 5.33vw, 6rem);
}

.panel.soda .drink_soda .price {
  font-size: clamp(2rem, 3.56vw, 4rem);
}

.drink_coffee::after {
  content: "";
  position: absolute;
  right: -11.11vw;
  bottom: -15vw;
  width: 61vw;
  aspect-ratio: 1 / 1;
  background: url("../image/drink_edenblend.png") right bottom / contain
    no-repeat;
  z-index: 1;
  pointer-events: none;
}

.tb-br {
  display: none;
}

.drink_soda {
  background: url("../image/drink_soda.png") left center / 100% 100% no-repeat;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 8% 35% 5%;
  color: #5a3838;
}

.soda-lead {
  text-align: center;
  font-size: clamp(0.8rem, 1.2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  width: 100%;
}

.drink_soda ul {
  margin-left: 0;
  margin-top: 10px;
  list-style: none;
}

.drink_soda ul li::before {
  content: "＊ ";
}

.panel .jp-title {
  font-size: clamp(1.2rem, 1.78vw, 2rem);
  font-weight: 900;
  margin: 20px 0 5px;
  color: #6f3d3f;
}

.panel .desc {
  font-size: clamp(0.75rem, 0.89vw, 1rem);
  line-height: 1.7rem;
  font-weight: 700;
  color: #5a3838;
}

.panel .price {
  font-size: clamp(2rem, 3.11vw, 3.5rem);
  line-height: 1;
  font-weight: 900;
  color: #6f3d3f;
  width: 31.11vw;
  text-align: right;
  padding-right: 5vw;
}

.panel .price::first-letter {
  font-size: 0.6em;
}

.panel .price .yen {
  font-size: 0.6em;
}

.kakushu::before {
  content: "（各 種）";
  display: inline-block;
  font-size: 1rem;
  vertical-align: 0.2em;
  position: relative;
  left: calc(1em - 5px);
}

/*---------- access section ---------- */
.access {
  width: 100%;
  margin-left: 0;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  padding: 0;
  font-size: 1rem;
  letter-spacing: 0.12em;
  background: url("../image/access_background.jpeg") center / cover no-repeat;
}

.access-inner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0px;
  align-items: flex-end;
  justify-content: space-between;
}

.access-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 100%;
  padding-top: 12px;
  background: url("../image/access_map.png") calc(100% - 50px) 53% / 300px auto
    no-repeat;
}

.access-right {
  position: relative;
  width: 60%;
  height: 100%;
  padding-top: 230px;
  padding-left: 50px;
}

.access-copyright {
  position: absolute;
  bottom: 24px;
  right: 3vw;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
}

.access-left li {
  margin-bottom: 6px;
}

.access-left a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.access-top-link {
  display: inline-block;
  margin-left: 38px;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
}

.access-top-link span {
  margin-left: 6px;
}

.access-panel {
  max-width: 860px;
}

.access-shopname {
  margin: 0 0 28px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.access-logo {
  display: block;
  width: 100%;
  max-width: 415px;
  height: auto;
  margin-inline: auto;
  margin: 0 0 28px;
}

.access-shopname span {
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.access-detail {
  margin: 50px 0 0;
}

.access-detail th {
  width: 100px;
  text-align: left;
  font-weight: 300;
}

.access-detail dt,
.access-detail dd {
  margin: 0;
  font-weight: 700;
  width: 100px;
}

.access-note {
  margin-top: 80px;
  font-size: 0.8rem;
  line-height: 1.8;
  font-weight: 700;
}

.access .bottom-menu {
  position: absolute;
  left: 60px;
  bottom: 0;
  z-index: 1;
  color: #fff;
}

.access .bottom-menu-left {
  border-right-color: #fff;
  border-right-width: 1px;
}

.access p {
  font-weight: 300;
  line-height: 1.7rem;
}

.access table {
  font-weight: 300;
}
@media screen and (max-width: 1700px) {
  .story-block--intro::after {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .hero .inner {
    min-height: 100vh;
    height: 100vh;
    padding: 0;
  }

  .logo_top {
    left: 50%;
    bottom: 20%;
    transform: translateX(-50%);
  }

  .hero-tagline {
    top: 12%;
    font-size: 1.65rem;
    letter-spacing: 0.44em;
  }

  .bottom-menu {
    position: absolute;
    left: 5%;
    bottom: 0;
    height: 170px;
    color: #fff;
  }

  .bottom-menu-left {
    border-right-color: #fff;
  }

  .story {
    padding: 0 0 72px;
  }

  .story-deco {
    width: 60%;
    margin-inline: auto;
    background-size: 100% auto;
  }

  .inner-story {
    margin: 110px auto;
    padding: 0 24px;
  }

  .story-block {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 84px;
  }

  .story-block-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .story-block--food {
    flex-direction: column;
    height: auto;
    align-items: center;
  }

  .story-img--food,
  .story-img--interior {
    width: 100%;
  }

  .story-text {
    margin: 0 auto;
  }

  .story-block-right {
    padding-top: 0;
  }

  .story-block--intro::before {
    top: -100px;
    right: -20px;
    width: 280px;
    height: 370px;
    background-size: contain;
  }

  .story-heading-block::before {
    top: -90px;
    left: -50px;
    width: 400px;
    height: 530px;
    background-size: 370px auto;
  }

  .story-block--interior::after {
    background-size: 200px auto;
    top: 50px;
    right: 30px;
  }

  .story-heading-block {
    height: auto;
    margin-bottom: 64px;
    margin-right: 0;
  }

  .story-heading {
    text-align: right;
    width: 70%;
  }

  .memory {
    height: auto;
    min-height: 85vh;
  }

  .memory-inner {
    height: auto;
    min-height: 85vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .memory-body {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    writing-mode: horizontal-tb;
    width: min(92vw, 760px);
    height: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    line-height: 1.9;
    text-align: center;
  }

  .memory-slider,
  .memory-slide {
    height: 220px;
  }

  .memory-slide {
    width: min(42vw, 300px);
  }

  .memory-slider {
    align-self: flex-start;
  }

  .food_menu {
    padding: 40px 20px 0;
  }

  .food_menu-image {
    display: none;
  }

  .food_menu-inner {
    padding: 40px 28px;
  }

  .food_menu-header {
    height: 800px;
    margin-bottom: 120px;
    justify-content: flex-start;
    background-position:
      left bottom,
      right top 250px;
    background-size:
      280px auto,
      190px auto;
  }

  .food_menu-title {
    height: 80px;
    margin-top: 0;
    margin-bottom: 70px;
    background-size: auto 100%;
  }

  .food_menu-title::before {
    width: 60px;
    left: 0;
    top: 20px;
  }

  .food_menu-title::after {
    width: 60px;
    right: 0;
    top: 20px;
  }

  .food_menu-category {
    margin: 56px 0 120px;
  }

  .food_menu-category::before,
  .food_menu-category::after {
    width: 120px;
  }

  .food_menu-block.pasta {
    height: 600px;
  }

  .food_menu-block.pasta::before {
    left: -13px;
    top: 160px;
    width: calc(113% + 23px);
    background-size: 90% auto;
    background-position: left top;
  }

  .food_menu-block.dessert::before {
    top: 165px;
    background-size:
      min(750px, 90vw) auto,
      1000px auto;
    background-position:
      left 30px top,
      right -100px top 765px;
  }

  .food_menu-item,
  .food_menu-item.pasta,
  .food_menu-item.hotcake,
  .food_menu-item.ice {
    height: auto;
    margin-top: 0;
    margin-bottom: 72px;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .food_menu-item.reverse {
    flex-direction: column;
  }

  .food_menu-item,
  .food_menu-item.reverse {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .food_menu-item.pasta,
  .food_menu-item.hotcake,
  .food_menu-item.ice {
    position: relative;
    min-height: 450px;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    align-items: flex-start;
  }

  .food_menu-item.pasta {
    min-height: unset;
    max-height: 800px;
  }

  .food_menu-item.pasta .food_menu-text {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: auto;
    width: auto;
    padding: 20px;
  }

  .food_menu-item.hotcake {
    min-height: 730px;
    align-items: flex-end;
  }

  .food_menu-item.hotcake .food_menu-text {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: none;
    padding: 20px;
  }

  .food_menu-item.ice .food_menu-text {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: none;
    padding: 20px;
    margin-left: 0;
  }

  .food_menu-item.ice {
    min-height: 470px;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .food_menu-text {
    max-width: none;
  }

  .food_menu-text .jp-title {
    font-size: 1.8rem;
  }

  .food_menu2 {
    display: block;
    padding: 0 16px;
    overflow: hidden;
  }

  .food_menu2 .scroll-area {
    height: 100%;
  }

  .food_menu2 .food_menu-inner {
    width: 100%;
    margin-bottom: 80px;
    padding-left: 0;
    padding-right: 0;
  }

  .food_menu-break {
    margin-top: 0;
    height: 320px;
    background-size: 300px auto;
  }

  .food_menu-break::before {
    top: -36px;
    left: 80px;
    width: clamp(115px, 15vw, 190px);
  }

  .break-text-pc {
    display: none;
  }

  .break-text-tb {
    display: block;
  }

  .food_menu-bottom {
    background-size: 300px auto;
  }

  .food_menu-bottom::before {
    left: 20px;
    width: 84px;
    top: 35px;
  }

  .food_menu-bottom::after {
    right: 20px;
    width: 84px;
    top: 35px;
  }

  .panel {
    height: 100vh;
    overflow: hidden;
  }

  .scroll-area,
  .coffee .scroll-area,
  .soda .scroll-area {
    height: 300vh;
  }

  .coffee .scroll-area {
    height: 200vh;
  }

  .soda .scroll-area {
    height: 100vh;
  }

  .sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 0;
  }

  .drink-v-panel {
    height: auto;
  }

  .drink-v-panel.food_menu2 {
    height: calc(100vh - 150px);
  }

  .drink-stage {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
  }

  .drink-stage .drink_coffee,
  .drink-stage .drink_soda {
    position: static;
  }

  .drink_coffee,
  .drink_soda {
    width: min(920px, 94vw);
    height: auto;
    min-height: 480px;
    line-height: 1.8;
  }

  .drink_coffee {
    width: 650px;
    height: 1270px;
    min-height: unset;
    align-items: flex-start;
    padding: 560px 40px;
    background: url("../image/drink_coffee_sp.png") center / cover no-repeat;
    margin: 0 0 50px;
    font-size: 1rem;
    line-height: 1.8;
  }

  .drink_coffee .drink-text .price {
    font-size: 3.5rem;
    width: 550px;
    text-align: right;
  }

  .drink_coffee::after {
    display: block;
    width: 800px;
    right: -180px;
    bottom: -4%;
  }

  .drink_soda {
    width: 650px;
    height: 1876px;
    min-height: unset;
    padding: 120px 125px 100px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: url("../image/drink_soda_sp.png") center / cover no-repeat;
    margin-bottom: 30px;
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .drink_soda .soda-lead {
    font-size: 1.2rem;
  }

  .tb-br {
    display: block;
  }

  .drink_soda .jp-title {
    margin-top: 0;
    font-size: 2rem;
    text-align: center;
  }

  .soda-item {
    margin-top: 50px;
  }

  .soda-item--melon {
    transform: translateY(70px);
  }

  .panel.soda .drink_soda .price {
    font-size: 2.5rem;
    width: 400px;
    text-align: right;
  }

  .drink_soda .price + .jp-title {
    margin-top: 0;
  }

  .drink_soda ul {
    margin-left: 18px;
  }

  .drink_soda .desc {
    font-size: 1rem;
  }

  .access {
    font-size: 0.95rem;
  }

  .access-inner {
    height: 100vh;
    min-height: 100vh;
    width: auto;
    margin: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .access .bottom-menu {
    display: none;
  }

  .access-left,
  .access-right {
    width: 100%;
    height: auto;
  }

  .access-left {
    margin-top: 5%;
    width: 80%;
    flex: 1;
    background-size: 45% auto;
    background-position: center center;
    padding-top: 0;
  }

  .access-right {
    height: auto;
    padding-top: 0;
    padding-left: 0;
  }

  .access-panel-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    width: 80%;
  }

  .access-logo {
    width: 240px;
    margin: 0;
  }

  .access-panel {
    width: min(80%, 760px);
    height: 100%;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .access-note {
    width: 90%;
    font-size: 0.8rem;
    line-height: 1.7;
    margin-top: auto;
    margin-bottom: auto;
  }

  .access-detail {
    margin: 0;
  }

  .access-detail td {
    text-align: left;
  }

  .access-copyright {
    position: static;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .food_menu-block.dessert {
    height: auto;
  }

  .panel .price {
    width: auto;
  }
}

/* タブレット専用: ソーダの横スライド用にはみ出し非表示 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hero .inner {
    padding: 0 20px;
  }

  .logo_top {
    width: min(360px, 46vw);
    bottom: 18%;
  }

  .hero-tagline {
    top: 10%;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    letter-spacing: 0.36em;
  }

  .bottom-menu {
    left: 24px;
    height: 150px;
  }

  .food_menu {
    padding: 32px 16px 0;
  }

  .food_menu-inner {
    padding: 36px 24px;
  }

  .food_menu-header {
    height: 700px;
    margin-bottom: 88px;
    background-position:
      left bottom,
      right top 220px;
    background-size:
      240px auto,
      170px auto;
  }

  .food_menu-category {
    margin: 48px 0 96px;
  }

  .food_menu-item,
  .food_menu-item.pasta,
  .food_menu-item.hotcake,
  .food_menu-item.ice {
    margin-bottom: 56px;
  }

  .food_menu-item.pasta {
    min-height: 360px;
  }

  .food_menu-item.hotcake {
    min-height: 560px;
  }

  .food_menu-item.hotcake .food_menu-image {
    display: block;
    width: 100%;
    min-height: clamp(640px, 80vw, 800px);
  }

  .food_menu-item.hotcake .food_menu-photo {
    display: block;
    width: 90%;
    transform: translate(-30px, 130px);
  }

  .food_menu-item.hotcake .food_menu-image::after {
    right: 0px;
    width: 45vw;
  }

  .food_menu-item.hotcake .food_menu-image::before {
    left: -15px;
    top: -40px;
  }

  .food_menu-item.hotcake .food_menu-text {
    left: 0;
    right: auto;
    padding: 16px 18px;
  }

  .food_menu-item.ice {
    min-height: 430px;
  }

  .food_menu-item.ice .food_menu-image {
    display: block;
    width: 100%;
    min-height: clamp(420px, 58vw, 560px);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .food_menu-item.ice .food_menu-photo {
    display: block;
    width: 62%;
    margin-top: clamp(20px, 3vw, 36px);
    margin-left: auto;
    margin-right: 0;
  }

  .food_menu-item.ice .food_menu-text {
    width: 45%;
    margin-bottom: 20%;
    padding: 16px 18px;
  }

  .food_menu-item.ice .food_menu-image::after {
    top: 85px;
    right: 0;
  }

  .food_menu2 .food_menu-inner {
    margin-bottom: 64px;
  }

  .drink-stage {
    overflow-x: hidden;
  }

  .drink_coffee {
    width: min(650px, 86vw);
    height: calc(min(650px, 86vw) * 1.953);
    padding: clamp(430px, 66vw, 560px) clamp(24px, 3.5vw, 40px) 60px;
    margin-bottom: 40px;
  }

  .drink_coffee .drink-text .price {
    width: auto;
    font-size: clamp(2.5rem, 4.2vw, 3.4rem);
  }

  .drink_coffee::after {
    width: min(760px, 90vw);
    right: -12vw;
    bottom: -2%;
  }

  .drink_soda {
    width: min(650px, 86vw);
    height: calc(min(650px, 86vw) * 2.886);
    padding: clamp(90px, 11vw, 120px) clamp(70px, 10vw, 110px)
      clamp(72px, 9vw, 96px);
  }

  .drink_soda .soda-lead {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
  }

  .drink_soda .jp-title {
    font-size: clamp(1.55rem, 2.7vw, 2rem);
  }

  .panel.soda .drink_soda .price {
    width: min(380px, 62%);
  }

  .access-inner {
    height: auto;
    min-height: 100vh;
    padding: 24px 0;
  }

  .access-left {
    width: min(70%, 420px);
    min-height: 180px;
    margin-top: 15%;
    flex: none;
    background-size: min(240px, 62%) auto;
  }

  .access-panel {
    height: 50vh;
  }

  .access-panel-top {
    width: 100%;
    gap: 28px;
  }

  .access-note {
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  #drink_menu {
    display: none;
  }

  .drink-stage {
    --drink-card-width: min(650px, calc(100vw - 24px));
    padding: 24px 0 16px;
    overflow: hidden;
  }

  .fixed-nav {
    display: none;
  }

  .hamburger {
    display: flex;
    width: 52px;
    height: 52px;
    padding: 8px;
    gap: 7px;
  }

  .hamburger span {
    width: 30px;
    height: 2px;
  }

  .hamburger.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero .inner {
    min-height: 100vh;
    min-height: 100svh;
    padding: 20px 16px 32px;
  }

  .hero-bg {
    background-position: center top;
  }

  .logo_top {
    max-width: 300px;
    width: min(300px, 62vw);
    bottom: 34%;
  }

  .hero-tagline {
    font-size: 1.18rem;
    letter-spacing: 0.28em;
    top: 7%;
  }

  .hero .bottom-menu {
    display: none;
  }

  .story {
    padding-bottom: 56px;
  }

  .inner-story {
    margin: 72px auto;
    padding: 0 16px;
  }

  .story-heading {
    font-size: clamp(2rem, 8vw, 4rem);
  }

  .story-deco {
    width: 80%;
    margin-inline: auto;
    background-size: 100% auto;
  }

  .story-deco--bottom {
    margin-top: 72px;
  }

  .story-block--intro::after {
    display: none;
  }

  .story-block--interior::after {
    top: 140px;
    right: 10px;
    width: 100%;
    background-size: min(160px, 40vw) auto;
  }

  .story-heading-block::before {
    top: -90px;
    left: -65px;
    width: min(220px, 55vw);
    background-size: contain;
  }

  .story-block--intro::before {
    top: 190px;
    right: -18%;
    width: min(500px, 60vw);
    background-size: contain;
  }

  .story-block--intro {
    margin-top: 50px;
  }

  .story-text {
    font-size: 0.95rem;
    line-height: 1.9;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin: 0 auto;
  }

  .story-block-left {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .story-img--food {
    width: 100%;
  }

  .memory {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }

  .memory-inner {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
  }

  .memory-body {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    width: auto;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    text-align: start;
    line-height: 2.2;
  }

  .memory-slider,
  .memory-slide {
    height: 150px;
  }

  .memory-slide {
    width: min(56vw, 220px);
  }

  .memory-slider {
    align-self: flex-start;
  }

  .food_menu2 {
    display: block;
    padding: 0 10px;
    overflow: hidden;
  }

  .food_menu-block.dessert::before {
    display: none;
  }

  .food_menu-block.pasta::before {
    left: -10px;
    top: 120px;
    width: calc(113% + 23px);
    background-size: 88% auto;
    background-position: left top;
  }

  .food_menu {
    padding: 20px 10px 0;
  }

  .food_menu-inner {
    padding: 32px 16px;
    overflow: hidden;
  }

  .food_menu .food_menu-inner {
    border-bottom: 1px solid #5a3838;
  }

  .food_menu-header {
    margin-bottom: 72px;
    height: 600px;
    background-position:
      left bottom,
      right bottom 100px;
    background-size:
      45% auto,
      32% auto;
  }

  .food_menu-title {
    font-size: clamp(1.2rem, 6vw, 2.1rem);
    height: 70px;
    margin-bottom: 100px;
    background-size: auto 100%;
  }

  .food_menu-title::before,
  .food_menu-title::after {
    width: 8vw;
    height: 8vw;
    top: 10px;
  }

  .food_menu-category {
    font-size: clamp(1.2rem, 6.5vw, 2.1rem);
    margin: 40px 0 56px;
    height: auto;
  }

  .food_menu-lead {
    writing-mode: horizontal-tb;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .food_menu-item,
  .food_menu-item.reverse {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 52px;
    width: 100%;
  }

  .food_menu-photo-sp {
    display: none;
  }

  .food_menu-image {
    display: none;
  }

  .food_menu-photo {
    display: none;
  }

  .food_menu-item.pasta,
  .food_menu-item.hotcake,
  .food_menu-item.ice {
    position: relative;
    min-height: unset;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    align-items: flex-end;
  }

  .food_menu-item.pasta {
    background-image: none;
    aspect-ratio: unset;
    min-height: unset;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: visible;
  }

  .food_menu-item.pasta::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 10px;
    width: 40%;
    aspect-ratio: 527 / 329;
    background: url("../image/food_napori_name.webp") center / contain no-repeat;
    z-index: 10;
    pointer-events: none;
  }

  .food_menu-item.pasta .food_menu-photo-sp {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
  }

  .food_menu-item.pasta .food_menu-image::before {
    display: none;
  }

  .food_menu-item.pasta .food_menu-text {
    position: static;
    width: 100%;
    padding: 0 16px;
    margin: 0;
  }

  .food_menu-item.hotcake {
    background-image: none;
    background-size: 100% auto;
    background-position: center -20px;
    aspect-ratio: unset;
    min-height: unset;
    align-items: flex-start;
  }

  .food_menu-item.hotcake::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 10px;
    width: 35%;
    aspect-ratio: 527 / 329;
    background: url("../image/food_hotcake_name.webp") center / contain
      no-repeat;
    z-index: 10;
    pointer-events: none;
  }

  .food_menu-item.hotcake::after {
    content: "";
    position: absolute;
    top: -18%;
    right: 0;
    width: 50%;
    aspect-ratio: 339 / 257;
    background: url("../image/food_hotcake_fukidasi.webp") center / contain
      no-repeat;
    z-index: 10;
    pointer-events: none;
  }

  .food_menu-item.hotcake .food_menu-photo-sp {
    display: block;
    width: 100%;
    height: auto;
    transform: translateY(23%);
  }

  .food_menu-item.hotcake .food_menu-image {
    display: none;
  }

  .food_menu-item.ice {
    background-image: none;
    background-size: 100% auto;
    background-position: right top;
    aspect-ratio: unset;
    min-height: unset;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .food_menu-item.ice::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 10px;
    width: 38%;
    aspect-ratio: 527 / 329;
    background: url("../image/food_ice_name.webp") center / contain no-repeat;
    z-index: 10;
    pointer-events: none;
  }

  .food_menu-item.ice::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 40%;
    aspect-ratio: 339 / 257;
    background: url("../image/food_ice_fukidasi.webp") center / contain
      no-repeat;
    z-index: 10;
    pointer-events: none;
  }

  .food_menu-item.ice .food_menu-photo-sp {
    display: block;
    width: 100%;
    height: auto;
    /* transform: translateY(23%); */
  }

  .food_menu-item.ice .food_menu-image {
    display: none;
  }

  .food_menu-item.ice .food_menu-text {
    position: static;
    width: 100%;
    z-index: 1;
    padding: 0 16px;
    margin: 0;
    text-align: left;
  }

  .food_menu-item.ice .food_menu-bottom-sp {
    display: block;
    position: relative;
    width: 100%;
    height: 70px;
    margin-top: 12px;
    background-image: url("../image/food_deco3.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 40% auto;
  }

  .food_menu-item.ice .food_menu-bottom-sp::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 8vw;
    height: 8vw;
    background: url("../image/food_deco.png") left center / contain no-repeat;
    transform: scaleY(-1);
    pointer-events: none;
  }

  .food_menu-item.ice .food_menu-bottom-sp::after {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 8vw;
    height: 8vw;
    background: url("../image/food_deco_r.png") right center / contain no-repeat;
    transform: scaleY(-1);
    pointer-events: none;
  }

  .food_menu-item.hotcake .food_menu-text {
    position: static;
    width: 100%;
    max-width: none;
    padding: 0 16px;
    margin: 0;
  }

  .food_menu-text .jp-title {
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 0;
  }

  .food_menu-text .desc {
    font-size: 0.95rem;
  }

  .food_menu-text .price {
    font-size: 2rem;
  }

  .food_menu-break {
    height: 240px;
    background-size: 220px auto;
    font-size: 1rem;
    text-align: center;
    align-items: flex-end;
  }

  .food_menu-break::before {
    top: -24px;
    left: 40px;
    width: clamp(70px, 18vw, 110px);
  }

  .food_menu-bottom {
    height: 90px;
    background-size: 300px auto;
  }

  .food_menu-bottom::before,
  .food_menu-bottom::after {
    width: 80px;
  }

  .drink_coffee,
  .drink_soda {
    width: var(--drink-card-width);
    margin-inline: auto;
    min-height: unset;
    font-size: clamp(0.9rem, 2.8vw, 1.15rem);
    line-height: 1.8;
  }

  .drink_coffee {
    height: calc(var(--drink-card-width) * 1.953);
    padding: calc((var(--drink-card-width) - 20px) * 0.82) 24px 20px;
    align-items: flex-start;
    line-height: 1.6;
    background: url("../image/drink_coffee_sp.png") center / cover no-repeat;
    margin: 32px 0 24px;
  }

  .drink_coffee .drink-text {
    margin-top: 5%;
  }

  .drink_coffee .drink-text .price {
    font-size: clamp(1.3rem, 7.8vw, 3rem);
    width: auto;
    text-align: right;
  }

  .drink_coffee::after {
    display: block;
    width: min(620px, 96vw);
    height: auto;
    aspect-ratio: 1 / 1;
    right: -18vw;
    bottom: -20px;
  }

  .drink_soda {
    height: calc(var(--drink-card-width) * 2.886);
    padding: 17% min(40px, calc((var(--drink-card-width) - 32px) * 0.1)) 18%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: url("../image/drink_soda_sp.png") center / cover no-repeat;
    background-position: center;
  }

  .drink_soda .soda-lead {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
  }

  .tb-br {
    display: block;
  }

  .drink_soda .jp-title {
    margin-top: 0;
    font-size: clamp(0.8rem, 4vw, 1.5rem);
  }

  .soda-item {
    margin-top: 50px;
  }

  .soda-item--melon {
    transform: translateY(70px);
  }

  .panel.soda .drink_soda .price {
    font-size: clamp(1.35rem, 8vw, 2.1rem);
    width: 60%;
    text-align: right;
  }

  .drink_soda .price + .jp-title {
    margin-top: clamp(72px, 15vw, 116px);
  }

  .drink_soda ul {
    margin-left: 18px;
  }

  .drink_soda ul li {
    line-height: 1.4;
  }

  .drink_soda .desc {
    font-size: clamp(0.58rem, 1.75vw, 0.72rem);
    /* line-height: clamp(0.5rem, 2.5vw, 1rem); */
  }

  .panel .jp-title {
    font-size: clamp(0.9rem, 4.5vw, 2rem);
    margin-bottom: 0;
  }

  .panel .desc {
    font-size: clamp(0.5rem, 2.5vw, 1rem);
    line-height: clamp(0.7rem, 3.5vw, 2rem);
  }

  .panel .price {
    font-size: clamp(1.3rem, 8.8vw, 3rem);
    /* margin-bottom: 20px; */
  }

  .access {
    font-size: 0.95rem;
  }

  .access-inner {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    width: auto;
    margin: 0 16px;
    padding: 48px 0 24px;
    justify-content: flex-start;
    gap: 32px;
  }

  .access .bottom-menu {
    display: none;
  }

  .access-left {
    min-height: 200px;
    width: min(100%, 340px);
    flex: none;
    background-size: min(280px, 90%) auto;
  }

  .access-right {
    height: auto;
  }

  .access-logo {
    width: min(240px, 70vw);
  }

  .access-panel {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .access-note {
    width: 100%;
    font-size: 0.72rem;
    line-height: 1.6 !important;
    margin-top: 24px;
  }

  .access-detail {
    margin: 0;
    width: 100%;
    font-size: 0.82rem;
  }

  .access-detail th {
    width: 72px;
  }

  .access-detail td {
    text-align: left;
  }

  .access-panel-top {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .access-copyright {
    position: static;
    margin-top: 24px;
    margin-bottom: 20px;
    font-size: 0.68rem;
  }

  .kakushu::before {
    font-size: 0.8rem;
    left: 0.8em;
  }
}
