@charset "UTF-8";
/* src/assets/scss/foundation/_index.scss */
/* 記述の仕方 */
/* src/assets/scss/foundation/_index.scss */
/* ===== 使用例（このファイルを直接ビルドしない） ==================
@use "../foundation" as f;

.title {
  font-size: f.rem(20px);           // → 1.25rem（$base-font-size:16px）
  line-height: f.lh(30px, 20px);    // → 1.5
  letter-spacing: f.spacing(40);    // → 0.04em
}

.lead {
  // スマホ幅に応じて可変（14px〜18pxを rem で制限）
  font-size: f.clamp-vw(14, 18);
}

.hero-copy {
  // 375px カンプ換算：24px 相当を vw で出す
  font-size: f.get_vw(24px, 375);
}
=================================================================== */
/* src/assets/scss/foundation/_index.scss */
/* src/assets/scss/foundation/_index.scss */
/* ===============================================
foundation/_reset.scss  （プロジェクト用 最小リセット）
目的：ブラウザ差をならしつつ、UIのデフォルトを必要以上に壊さない
方針：
  - レイアウト起点だけを調整（box-sizing, margin/padding など）
  - 文字やフォームの見た目は「継承＋最低限」に留める
  - フォーカス可視性は残す（視認性・アクセシビリティ優先）
※ overflow や font-size は reset では触らない（base.scss で管理）
=============================================== */
/* 1) ボックスモデルの一貫性 */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0; /* border-color 指定時に崩れないための初期化 */
  border-style: solid;
}

/* 2) 余白の初期化（必要最低限） */
html, body,
h1, h2, h3, h4, h5, h6,
p, blockquote, figure,
dl, dd {
  margin: 0;
  padding: 0;
}

/* 3) タイポ周り（最小限）
   - 行間は base.scss で最終的に上書きするのでここでは緩く */
html {
  -webkit-text-size-adjust: 100%; /* iOSの自動拡大を抑制 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  line-height: 1.5;
}

/* 4) 画像 / メディアの収まり */
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
}

img, video {
  height: auto;
}

svg {
  vertical-align: middle;
}

/* 5) リストの初期化
   - コンポーネントで独自の丸/番号を付けやすいように */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 6) アンカー（色と装飾はコンポーネントで制御） */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent; /* iOSのタップハイライト対策 */
}

/* 7) フォーム要素：見た目は壊しすぎず、フォントだけ継承 */
button,
input,
select,
textarea {
  font: inherit; /* フォント/サイズ/行間を継承 */
  color: inherit;
  margin: 0;
}

button {
  cursor: pointer; /* ボタンらしさは維持 */
  background: transparent; /* デフォ背景を消す（枠は保持） */
}

textarea {
  resize: vertical; /* 横リサイズはレイアウト崩れの元になりやすい */
}

/* 8) テーブル：基本は素朴に（罫線はコンポーネントで） */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
  text-align: left;
  vertical-align: top;
  padding: 0;
}

/* 9) その他の素朴な初期化 */
hr {
  height: 0;
  border: 0;
  border-top: 1px solid currentColor; /* 必要なら見た目定義 */
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

small {
  font-size: 80%;
}

/* 10) フォーカス可視性の確保（アクセシビリティ） */
:focus {
  outline: 2px solid #382620;
  outline-offset: 2px;
}

/* src/assets/scss/foundation/_index.scss */
/* src/assets/scss/foundation/_base.scss
   基礎スタイル（resetの後に読み込まれる前提）
   ※ ここでは “フォルダのまとめ役” を参照せず、
      必要なモジュールだけ個別に @use するのが安全
*/
html {
  /* 横はみ出し対策。最新ブラウザなら clip が推奨（hiddenでもOK） */
  overflow-x: clip;
  /* デフォルトはSP帯（320〜767px想定） */
  font-size: clamp(0.875rem, 0.249rem + 3.132vw, 1.75rem);
  /* PC帯：1280pxを基準に 16px を上限、14pxを下限に可変
     - f.vw(16) は 1280px 基準で 1.25vw（= 1280px時に16px）
     - clamp(min, preferred, max) で読みやすく
  */
}

body {
  position: relative;
  color: #222222;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  line-height: 150%;
  background-color: #f3efeb;
  margin: 0;
  padding: 0;
  /* 100vw はスクロールバー幅ぶんはみ出しやすいので 100% 推奨 */
  width: 100%;
  overflow-x: clip;
}
body.is-footer-sns-fixed {
  padding-bottom: 4.6875rem;
}

img {
  display: block;
  /* レイアウト衝突を避けるなら max-width の方が無難 */
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: inherit;
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-header-sidemenu {
  display: none;
}

.p-header-sidemenu__logo {
  width: 10.375rem;
  height: 5.8125rem;
}

.p-header-sidemenu__nav-lists {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}

.p-header-sidemenu__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #222222;
}
.p-header-sidemenu__link:hover .p-header-sidemenu__link-en,
.p-header-sidemenu__link:hover .p-header-sidemenu__link-jp {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}
.p-header-sidemenu__link .p-header-sidemenu__link-en {
  font-family: "Patua One", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  letter-spacing: 1.92px;
  transition: all 0.3s ease-in-out;
}
.p-header-sidemenu__link .p-header-sidemenu__link-jp {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 150%;
  transition: all 0.3s ease-in-out;
}

.p-header-sidemenu__sns {
  margin-top: 4.84375vw;
}

.p-header-sidemenu__sns-gap {
  gap: 1.875vw;
}

.fab.fa-twitter.fa-twitter-sidemenu {
  font-size: 5.2vw; /* デフォルトのフォントサイズ */
}

.fab.fa-instagram.fa-instagram-sidemenu {
  font-size: 5.3333333333vw; /* デフォルトのフォントサイズ */
}

.fab.fa-youtube.fa-youtube-sidemenu {
  font-size: 5.6vw; /* デフォルトのフォントサイズ */
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-top-page-fv__option-wrapper {
  position: absolute;
  inset: 0;
  padding: 2.6666666667vw 5.3333333333vw 8.5333333333vw 3.7333333333vw;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none; /* 全体はクリック無効にして… */
}

/* …必要なリンクだけ戻す */
.p-top-page-fv__option a,
.p-top-page-fv__option button {
  pointer-events: auto;
}

.p-top-page-fv__option {
  position: relative;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p-top-page__word {
  display: flex;
  flex-direction: column;
  gap: 13.0666666667vw;
}

.p-top-page-fv__logo {
  margin-left: -1.0666666667vw;
}
.p-top-page-fv__logo .p-top-page-fv__logo-svg {
  width: 32vw;
  height: 17.3333333333vw;
}

.p-top-page-word__text {
  padding-left: 1.6vw;
  color: #fff;
  font-weight: 700;
  font-size: 4.2666666667vw;
  line-height: 200%;
  letter-spacing: 2.24px;
}

/* ズームアニメーション定義 */
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .p-top-page-swiper-slide__img,
.swiper-slide-duplicate-active .p-top-page-swiper-slide__img,
.swiper-slide-prev .p-top-page-swiper-slide__img {
  animation: zoomUp 12s linear 0s normal both;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

/* ここを置き換え */
.p-top-page__swiper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 375/667;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.p-top-page__swiper-wrapper {
  width: 100%;
}

.p-top-page-fv-swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* はみ出しを防ぐために画像の親要素に overflow: hidden */
.p-top-page-swiper-slide__img {
  display: block;
  width: 100%;
  height: 100%;
}

/* 画像が親いっぱいに表示されるように調整 */
.p-top-page-swiper-slide__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* ページネーションのカスタマイズ */
#p-top-page__swiper .swiper-pagination {
  display: flex;
  justify-content: flex-start;
  gap: 4.2666666667vw;
  position: absolute;
  bottom: 3.2vw;
  left: 5.3333333333vw;
  z-index: 10;
  will-change: transform;
}
#p-top-page__swiper .swiper-pagination-bullet {
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  background-color: #fff;
  opacity: 1;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
#p-top-page__swiper .swiper-pagination-bullet-active {
  background-color: #d59b71;
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-top-page__sidemenu-and-swiper-wrapper {
  position: relative;
}
.p-top-page__sidemenu-and-swiper-wrapper::after {
  display: none;
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-top-page-concept__wrapper {
  padding-top: 20.8vw;
  padding-bottom: 32vw;
  padding-inline: 0 !important;
}

.p-top-page-concept__content {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 12.2666666667vw;
  padding-bottom: 16vw;
  z-index: 1;
}
.p-top-page-concept__content::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 26.6666666667vw;
  background-color: #eae0d5;
  right: 5.3333333333vw;
  bottom: 0;
  z-index: -1;
}
.p-top-page-concept__content::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  transform: translate(12%, -75%);
  width: 38.6666666667vw;
  height: 34.6666666667vw;
  background: url("../img/top/top-img_p-top-page-concept-cofeebeens-sp.png") no-repeat center center/contain;
}

.p-top-page-concept__img {
  width: 84vw;
}

.p-top-page-concept__items {
  padding: 0px 5.3333333333vw 5.3333333333vw 5.3333333333vw;
}

.p-top-page-concept-items__title {
  color: #222222;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 200%; /* 200% */
  padding: 10.1333333333vw 0 10.6666666667vw 0;
}

.p-top-page-concept-items__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.7333333333vw;
}

.p-top-page-concept-items__text {
  color: #222222;
  font-size: 3.7333333333vw;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 200% */
}

.p-top-page-concept-items__button {
  text-align: center;
  margin-top: 10.6666666667vw;
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-special-lunch-set {
  background: #eae0d5;
  z-index: 1;
}
.p-special-lunch-set__wrapper {
  padding-inline: 0px !important;
}

.p-special-lunch-set__content {
  position: relative;
  padding-top: 20.8vw;
  padding-bottom: 16vw;
}
.p-special-lunch-set__content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-11%, 52%);
  width: 50.6666666667vw;
  height: 50.6666666667vw;
  background: url("../img/top/top-img_p-special-lunch-set__content-bg_left.webp") no-repeat center center/contain;
}
.p-special-lunch-set__content::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: -45.3333333333vw;
  right: -33px;
  width: 31.7333333333vw;
  height: 36vw;
  background: url("../img/top/top-img_p-special-lunch-set__content-bg_right.webp") no-repeat center center/cover;
}

.p-special-lunch-content__heading-container {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-special-lunch-content__heading-container .p-special-lunch-set__fukidasi-sp {
  position: absolute;
  display: block;
  top: -32.8vw;
  right: -18.9333333333vw;
  width: 54.9333333333vw;
  height: 28.5333333333vw;
}

.p-special-lunch-set__container {
  position: relative;
  max-width: 1200px;
  background: #fff;
  margin-top: 15.4666666667vw;
  padding: 10.6666666667vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
  box-sizing: content-box;
}

.p-special-lunch-set__kazari {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.p-special-lunch-set-kazari__img-sp {
  min-width: 71.7333333333vw;
}

.p-special-lunch-set-kazari__img-pc {
  display: none;
}

.p-special-lunch-set__fukidasi-pc {
  position: absolute;
  display: none;
}

.p-special-lunch-set__pasta-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 5.0666666667vw;
       column-gap: 5.0666666667vw;
  row-gap: 5.3333333333vw;
}

.p-special-lunch-set__pasta-card:hover .p-special-lunch-set__pasta-card-img img {
  transform: scale(1.1); /* 画像を10%拡大 */
  transition: transform 0.3s ease; /* スムーズな拡大アニメーション */
}

.p-special-lunch-set__pasta-card-img {
  overflow: hidden;
}
.p-special-lunch-set__pasta-card-img img {
  transition: transform 0.3s ease; /* ホバー時のアニメーションを設定 */
}

.p-special-lunch-set__pasta-card-figcaption {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.top-sp-lunch__card-tag {
  width: 6.4vw;
  height: 6.4vw;
}

.top-sp-lunch__card-tag-pc {
  display: none;
}

.p-special-lunch-set__pasta-card-title {
  color: #222222;
  font-size: 3.7333333333vw;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.p-special-lunch-set__set-menu {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw;
  border-radius: 8px;
  background: #f7f6f4;
  padding: 20px 0px 22px 0px;
}

.p-special-lunch-set--set-menu-illust-card__img {
  display: block;
  width: 89.3333333333vw;
  height: 26.1333333333vw;
}
.p-special-lunch-set--set-menu-illust-card__img img {
  width: 100%;
  height: auto;
}

.p-special-lunch-set--set-menu__text-content {
  color: #222;
  text-align: center;
  min-width: 58.9333333333vw;
}

.p-special-lunch-set--set-menu__title {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 150%;
}

.p-special-lunch-set--set-menu__price {
  position: relative;
  font-family: "Damion", sans-serif;
  font-size: 10.6666666667vw;
  font-weight: 400;
  line-height: 100%;
  margin-top: 1px;
}
.p-special-lunch-set--set-menu__price::after {
  position: absolute;
  content: "";
  background: radial-gradient(circle, #222 30%, transparent 30%);
  background-size: 12px 4px; /* ドットの直径4px + 間隔8px = 12px */
  background-repeat: repeat-x;
  height: 4px; /* ドットの高さ */
  width: 40.2666666667vw; /* 下線の幅を親要素に合わせる */
  bottom: -13px; /* テキストの下に配置 */
  left: 50%;
  transform: translateX(-52%);
}

.p-special-lunch-set--set-menu__time {
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 150%;
  padding-top: 6.6666666667vw;
  letter-spacing: 0.2px;
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-gramd-menu__wrapper {
  padding-top: 20.8vw;
  padding-bottom: 32vw;
}

.p-gramd-menu__content {
  padding-bottom: 17.6vw;
  position: relative;
  z-index: 1;
}
.p-gramd-menu__content::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 73.0666666667vw;
  height: 417.3333333333vw;
  background-color: #eae0d5;
  z-index: -1;
}
.p-gramd-menu__content::after {
  content: "";
  position: absolute;
  width: 44.8vw;
  height: 38.1333333333vw;
  right: -50px;
  bottom: -26.6666666667vw;
  background: url("../img/top/top-img_p-grand-menu-bg_right-coffee-beans2.webp") no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.p-gramd-menu__lists {
  margin-top: 11.2vw;
  display: flex;
  flex-direction: column;
  gap: 11.4666666667vw;
}

.p-gramd-menu__cards {
  margin-top: 6.4vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 5.0666666667vw;
       column-gap: 5.0666666667vw;
  row-gap: 5.0666666667vw;
}

.p-gramd-menu__card:hover .p-gramd-menu-card__img img {
  transform: scale(1.1); /* 画像を10%拡大 */
  transition: transform 0.3s ease; /* スムーズな拡大アニメーション */
}
.p-gramd-menu__card .p-gramd-menu-card__img {
  border: 5px solid #fff;
  overflow: hidden;
}
.p-gramd-menu__card img {
  transition: transform 0.3s ease; /* ホバー時のアニメーションを設定 */
}

.p-gramd-menu-card__text {
  color: #222222;
  padding-top: 12px;
}

.p-gramd-menu-items__name {
  font-size: 3.7333333333vw;
  font-weight: 700;
  line-height: 150%;
}

.p-gramd-menu-items__price {
  font-family: "Damion", sans-serif;
  font-size: 6.4vw;
  font-weight: 400;
  line-height: 150%;
  padding-top: 1px;
}
.p-gramd-menu-items__price .p-gramd-menu-items__price-number {
  margin-right: 0.5333333333vw;
}

.p-gramd-menu-drink-card__drink-img {
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.p-gramd-menu-drink-card__drink-img:hover img {
  transform: scale(1.1); /* 画像を10%拡大 */
  transition: transform 0.3s ease; /* スムーズな拡大アニメーション */
}
.p-gramd-menu-drink-card__drink-img img {
  transition: transform 0.3s ease; /* ホバー時のアニメーションを設定 */
}

.p-gramd-menu-card-drink-menus__body {
  flex-grow: 1;
  display: grid;
  row-gap: 9.0666666667vw;
  width: 88vw;
  padding: 6.1333333333vw 4vw 0 5.3333333333vw;
}

.p-gramd-menu-card-drink-menus__items {
  width: 100%;
  color: #222222;
}

.p-gramd-menu-card-drink-menus__title {
  font-size: 4.2666666667vw;
  border-bottom: 1px solid #222222;
  font-weight: 700;
  line-height: 150%;
  text-align: left;
  padding-bottom: 1.6vw;
}

.p-gramd-menu-card-drink-menus__list {
  display: flex;
  flex-direction: column;
  gap: 2.1333333333vw;
  padding: 0;
  margin-top: 6.4vw;
}

.p-gramd-menu-card-drink-menus__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.p-gramd-menu-card-drink-menus__name {
  font-size: 3.7333333333vw;
  font-weight: 700;
  line-height: 150%;
  text-align: left;
  white-space: nowrap;
}

.p-gramd-menu-card-drink-menus__price {
  display: flex;
  gap: 1.0666666667vw;
  text-align: right;
  font-family: "Damion", sans-serif;
  font-size: 5.3333333333vw;
  font-weight: 400;
  line-height: 150%;
  white-space: nowrap;
  transform: translateY(-5px);
}

.p-grand-menu-entry-button {
  text-align: center;
  margin-top: 9.3333333333vw;
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-top-page-gallery {
  background: #eae0d5;
}

.p-top-page-gallery__content {
  position: relative;
  padding-top: 20.8vw;
  padding-bottom: 17.6vw;
}

.p-top-page-gallery-content__bg-img {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-44%, 78%);
  width: 54.4vw;
  height: 49.3333333333vw;
}

.p-top-page-gallery-content__head-container {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  padding-left: 5px;
}

.p-top-page-gallery-content__fukidashi {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-75%, -132%);
  width: 53.3333333333vw;
  height: 27.7333333333vw;
}

.p-top-page-gallery__items {
  margin-top: 37px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.0666666667vw;
}

.p-top-page-gallery__item {
  overflow: hidden;
}
.p-top-page-gallery__item:hover img {
  transform: scale(1.1); /* 画像を10%拡大 */
  transition: transform 0.3s ease; /* スムーズな拡大アニメーション */
}
.p-top-page-gallery__item img {
  transition: transform 0.3s ease; /* ホバー時のアニメーションを設定 */
}

.p-top-page-gallery-entry-button {
  text-align: center;
  margin-top: 40px;
}

.p-top-page-news__content {
  padding-top: 20.8vw;
  padding-bottom: 49.6vw;
}

.p-top-page-news__items {
  margin-top: 10.1333333333vw;
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw;
}

.p-top-page-news-card {
  position: relative;
  width: 100%;
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.p-top-page-news-card:hover .p-top-page-news-card-box__body,
.p-top-page-news-card:hover .p-top-page-news__card-big__body {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.p-top-page-news-card:hover .p-top-page-news-card__img img {
  transform: scale(1.1); /* 画像を10%拡大 */
  transition: transform 0.3s ease; /* スムーズな拡大アニメーション */
}

.p-top-page-news-card__tag {
  position: relative;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  top: 0px;
  left: 0px;
  transform: translate(-2.1333333333vw, 2.6666666667vw);
  z-index: 1;
}
.p-top-page-news-card__tag::after {
  content: "";
  position: absolute;
  fill: #aaa;
  bottom: 0;
  left: 0;
  width: 2.1333333333vw;
  height: 1.3333333333vw;
  background: url("../img/common/common-icon_category-background-triangle.svg") no-repeat center center/contain;
  transform: translate(0vw, 1.3333333333vw);
  z-index: 2;
}
.p-top-page-news-card__tag-text {
  color: #fff;
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 150%;
  padding: 0.5333333333vw 2.6666666667vw 0.5333333333vw 2.6666666667vw;
  background: #382620;
}

.p-top-page-news-card__img {
  text-align: center;
  overflow: hidden;
}
.p-top-page-news-card__img img {
  aspect-ratio: 158/99; /* 画像のアスペクト比を維持 */
  transition: transform 0.3s ease; /* ホバー時のアニメーションを設定 */
}

/* 大きいニュースカード */
.p-top-page-news__card-box-big {
  width: 100%;
}

.p-top-page-news__card-big__tag {
  top: 0;
  left: 0;
  position: relative;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  transform: translate(-2.1333333333vw, 5.3333333333vw);
  z-index: 1;
}
.p-top-page-news__card-big__tag::after {
  content: "";
  position: absolute;
  fill: #aaa;
  bottom: 0px;
  left: 0px;
  width: 2.1333333333vw;
  height: 1.3333333333vw;
  background: url("../img/common/common-icon_category-background-triangle.svg") no-repeat center center/contain;
  transform: translate(0vw, 1.3333333333vw);
  z-index: 2;
}
.p-top-page-news__card-big__tag-text {
  color: #fff;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 150%;
  padding: 0.5333333333vw 2.6666666667vw 0.5333333333vw 2.6666666667vw;
  background: #382620;
}

.p-top-page-news__card-big__body {
  padding-top: 17px;
}

.p-top-page-news__card-big-body__title {
  color: #222222;
  font-size: 3.7333333333vw;
  font-weight: 700;
  line-height: 150%;
  margin-left: 1px;
}

.p-top-page-news__card-big-body__text p {
  font-size: 3.2vw;
  font-weight: 400;
  line-height: 150%;
  padding-top: 20px;
  margin-bottom: 17px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-top-page-news__card-big-body__date {
  color: #222222;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 150%;
}

/* 小さいニュースカード */
.p-top-page-news__card-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.0666666667vw;
  row-gap: 4.8vw;
}

.p-top-page-news-card-box__body {
  padding-top: 9px;
}

.p-top-page-news-card__title {
  color: #222222;
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-top-page-news-card__date {
  color: #222222;
  font-size: 3.2vw;
  font-weight: 500;
  line-height: 150%;
}

.p-top-page-news-entry-button {
  margin-top: 10.4vw;
  text-align: center;
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-fv-news__card {
  margin-left: 1.6vw;
}

.p-fv-news-card {
  position: relative;
  display: inline-block;
  width: 89.3333333333vw;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0.85;
  background: #fff;
  padding: 3.2vw;
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.p-fv-news-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0%, -52%);
  width: 33.6vw;
  height: 21.8666666667vw;
  background: url("../img/top/top-icon_p-top-page-pick-up.webp") no-repeat center center/contain;
  opacity: 1;
}
.p-fv-news-card:hover .p-fv-news-card__body {
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.p-fv-news-card:hover .p-fv-news-card__img img {
  transform: scale(1.1); /* 画像を10%拡大 */
  transition: transform 0.3s ease; /* スムーズな拡大アニメーション */
}
.p-fv-news-card .p-fv-news-card__tag {
  position: relative;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  transform: translate(-2.1333333333vw, 2.1333333333vw);
  z-index: 1;
}
.p-fv-news-card .p-fv-news-card__tag::after {
  content: "";
  position: absolute;
  fill: #aaa;
  bottom: 0;
  left: 0;
  width: 2.1333333333vw;
  height: 1.3333333333vw;
  background: url("../img/common/common-icon_category-background-triangle.svg") no-repeat center center/contain;
  transform: translate(-0.2666666667vw, 1.3333333333vw);
  z-index: 2;
}
.p-fv-news-card .p-fv-news-card__tag-text {
  color: #fff;
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 150%;
  padding: 0.5333333333vw 2.6666666667vw 0.5333333333vw 2.6666666667vw;
  background: #382620;
}
.p-fv-news-card .p-fv-news-card__tag-deco {
  width: 1.3333333333vw;
  height: 5.8666666667vw;
}

.p-fv-news-card__content {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.p-fv-news-card__img {
  text-align: center;
  overflow: hidden;
  width: 26.6666666667vw;
  height: 26.6666666667vw;
}
.p-fv-news-card__img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease; /* ホバー時のアニメーションを設定 */
}

.p-fv-news-card__body {
  width: 52vw;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 2.6666666667vw;
  padding-top: 18px;
}

.p-fv-news-card__title {
  color: #222222;
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 150%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-fv-news-card__date {
  color: #222222;
  font-size: 3.2vw;
  font-weight: 500;
  line-height: normal;
}

@media screen and (min-width: 768px){
  html {
    font-size: clamp(14px, 1.25vw, 16px);
  }
  .p-header-sidemenu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-width: 15.625vw;
    padding: 1.40625vw 1.328125vw;
    height: auto;
    margin: 0 auto;
  }
  .p-header-sidemenu__logo {
    width: clamp(99.6px, 12.96875vw, 166px);
    height: clamp(55.8px, 7.265625vw, 93px);
  }
  .p-header-sidemenu__nav {
    margin-top: 4.453125vw;
  }
  .p-header-sidemenu__nav-lists {
    gap: 2.5vw;
  }
  .p-header-sidemenu__link {
    gap: 0;
  }
  .p-header-sidemenu__link .p-header-sidemenu__link-en {
    font-size: 1.25vw;
  }
  .p-header-sidemenu__link .p-header-sidemenu__link-jp {
    font-size: 0.78125vw;
  }
  .c-icon-sns__item--sidemenu {
    width: 1.875vw;
    height: 1.875vw;
  }
  .fab.fa-twitter.fa-twitter-sidemenu {
    font-size: 1.5234375vw;
  }
  .fab.fa-instagram.fa-instagram-sidemenu {
    font-size: 1.5625vw;
  }
  .fab.fa-youtube.fa-youtube-sidemenu {
    font-size: 1.640625vw;
  }
  .p-top-page-fv__option-wrapper {
    padding: 0 1.5625vw 20px 1.5625vw;
    bottom: 0;
  }
  .p-top-page-fv__option {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .p-top-page__word {
    gap: 0;
  }
  .p-top-page-fv__logo {
    margin-left: -4px;
  }
  .p-top-page-word__text {
    letter-spacing: 2.8px;
    font-size: 1.5625vw;
    padding-left: 6px;
    padding-bottom: 2.5vw;
    white-space: nowrap;
  }
  .p-top-page__swiper {
    /* 画像の元サイズ 1080x735 → 比率固定。未対応ブラウザ向けにmin-heightも用意可 */
    aspect-ratio: 1080/735;
    width: 84.375vw;
    height: 57.421875vw;
  }
  #p-top-page__swiper .swiper-pagination {
    gap: 1.25vw;
    left: 1.5625vw;
    bottom: 1.5625vw;
  }
  #p-top-page__swiper .swiper-pagination-bullet {
    width: 0.625vw;
    height: 0.625vw;
  }
  .p-top-page__sidemenu-and-swiper-wrapper {
    width: 100%; /* 親要素の幅いっぱいに広げる */
    max-width: 1280px; /* 最大幅は維持する場合 */
    margin: 0 auto; /* 中央寄せにする場合 */
    padding-bottom: 4.296875vw; /* 下部の余白を設定 */
  }
  .p-top-page__sidemenu-and-swiper-wrapper::after {
    content: "";
    position: absolute;
    background: #eae0d5;
    display: block;
    bottom: 0px;
    right: 0;
    width: 76.875vw;
    height: 62.109375vw;
    z-index: -1;
  }
  .p-top-page__sidemenu-and-swiper {
    display: flex;
  }
  .p-top-page-concept__wrapper {
    padding-top: 5rem;
    padding-bottom: 10rem;
    padding-inline: 0 !important;
  }
  .p-top-page-concept__content {
    justify-content: start;
    flex-direction: row;
    padding: 0 7.03125vw 6.25vw 0;
    gap: 6.25vw;
  }
  .p-top-page-concept__content::before {
    right: 7.03125vw;
    height: 300px;
  }
  .p-top-page-concept__content::after {
    width: 23.125vw;
    height: 20.703125vw;
    transform: translate(13%, -45%);
  }
  .p-top-page-concept__img {
    width: 46.875vw;
    height: 59.6875vw;
  }
  .p-top-page-concept__items {
    width: 39.84375vw;
    padding: 0;
  }
  .p-top-page-concept-items__title {
    font-size: 2.1875vw;
    padding: 3.671875vw 0 3.75vw 0;
  }
  .p-top-page-concept-items__text-wrapper {
    gap: 1.09375vw;
  }
  .p-top-page-concept-items__text {
    font-size: 0.875rem;
  }
  .p-top-page-concept-items__button {
    margin-top: 3.828125vw;
    text-align: left;
    padding-left: 7px;
  }
  .p-special-lunch-set__wrapper {
    padding-inline: 3.125vw !important;
  }
  .p-special-lunch-set__content {
    padding-top: 5.0625rem;
    padding-bottom: 5rem;
  }
  .p-special-lunch-set__content::before {
    height: 32.421875vw;
    width: 32.421875vw;
    transform: translate(-38%, 64%);
    background: url("../img/top/top-img_p-special-lunch-set__content-bg_left-pc.webp") no-repeat center center/contain;
  }
  .p-special-lunch-set__content::after {
    width: 15.703125vw;
    height: 17.8125vw;
    right: -74px;
    top: -130px;
  }
  .p-special-lunch-content__heading-container .p-special-lunch-set__fukidasi-sp {
    display: none;
  }
  .p-special-lunch-set__container {
    margin-top: 4.609375vw;
    padding: 4.6875vw 3.125vw 3.125vw 3.125vw;
  }
  .p-special-lunch-set__kazari {
    top: -1.5625vw;
  }
  .p-special-lunch-set-kazari__img-sp {
    display: none;
  }
  .p-special-lunch-set-kazari__img-pc {
    display: block;
    width: 20.5rem;
  }
  .p-special-lunch-set__fukidasi-pc {
    top: -60px;
    right: -23px;
    width: 24.0625vw;
    height: 12.5vw;
    display: block;
  }
  .p-special-lunch-set__pasta-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.03125vw;
  }
  .p-special-lunch-set__pasta-card:nth-child(2),
  .p-special-lunch-set__pasta-card:nth-child(4) {
    margin-top: 3.125vw;
  }
  .p-special-lunch-set__pasta-card-figcaption {
    gap: 0.9375vw;
    margin-top: 1.25vw;
  }
  .top-sp-lunch__card-tag {
    display: none;
  }
  .top-sp-lunch__card-tag-pc {
    display: block;
    width: 3.828125vw;
    height: 3.828125vw;
  }
  .p-special-lunch-set__pasta-card-title {
    font-size: 1.40625vw;
  }
  .p-special-lunch-set__set-menu {
    justify-content: space-between;
    gap: 1.875vw;
    margin-top: 4.6875vw;
    flex-direction: row;
    padding: 1.40625vw 5.46875vw 1.71875vw 5.390625vw;
  }
  .p-special-lunch-set--set-menu-illust-card__img {
    width: 54.6875vw;
    height: 14.84375vw;
    padding-top: 2px;
  }
  .p-special-lunch-set--set-menu__text-content {
    min-width: 17.1875vw;
  }
  .p-special-lunch-set--set-menu__title {
    padding-top: 0.46875vw;
    font-size: 1.5625vw;
    text-align: right;
  }
  .p-special-lunch-set--set-menu__price {
    padding-left: 6px;
    font-size: 4.6875vw;
    line-height: 1.4;
  }
  .p-special-lunch-set--set-menu__price::after {
    width: 17.578125vw;
    bottom: -0.234375vw;
  }
  .p-special-lunch-set--set-menu__time {
    font-size: 1.09375vw;
    padding-top: 1.171875vw;
    text-align: right;
  }
  .p-gramd-menu__wrapper {
    padding-top: 6.6875rem;
    padding-bottom: 10rem;
  }
  .p-gramd-menu__content {
    padding-bottom: 5.3125rem;
  }
  .p-gramd-menu__content::before {
    right: -90px;
    width: 80vw;
    height: 171.5625vw;
  }
  .p-gramd-menu__content::after {
    width: 30.46875vw;
    height: 25.78125vw;
    right: -13.984375vw;
    bottom: -120px;
  }
  .p-gramd-menu__lists {
    margin-top: 4.921875vw;
    gap: 8.046875vw;
  }
  .p-gramd-menu__cards {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.1875vw;
    -moz-column-gap: 2.65625vw;
         column-gap: 2.65625vw;
    row-gap: 2.65625vw;
  }
  .p-gramd-menu__card .p-gramd-menu-card__img {
    border: 4px solid #fff;
  }
  .p-gramd-menu-card__text {
    padding-top: 12px;
  }
  .p-gramd-menu-items__name {
    font-size: 1.25rem;
  }
  .p-gramd-menu-items__price {
    font-size: 2rem;
  }
  .p-gramd-menu-items__price .p-gramd-menu-items__price-number {
    margin-right: 0px;
  }
  .p-gramd-menu__drink-card-and-drink-menus {
    display: flex;
    flex-direction: row;
    gap: 2.8125vw;
    margin-top: 2.265625vw;
  }
  .p-gramd-menu-drink-card__drink-img {
    width: 23.4375vw;
    border: 4px solid #fff;
  }
  .p-gramd-menu-card-drink-menus__body {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.34375vw;
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    padding: 0;
  }
  .p-gramd-menu-card-drink-menus__title {
    font-size: 1rem;
    padding-bottom: 0.3125rem;
  }
  .p-gramd-menu-card-drink-menus__list {
    margin-top: 1.875vw;
    gap: 8px;
  }
  .p-gramd-menu-card-drink-menus__name {
    font-size: 0.875rem;
  }
  .p-gramd-menu-card-drink-menus__price {
    font-size: 1.25rem;
  }
  .p-grand-menu-entry-button {
    margin-top: 4.6875vw;
  }
  .p-top-page-gallery__content {
    padding-top: 6.8125rem;
    padding-bottom: 5.375rem;
  }
  .p-top-page-gallery-content__bg-img {
    width: 27.65625vw;
    height: 25vw;
    transform: translate(-50%, 56%);
  }
  .p-top-page-gallery-content__fukidashi {
    width: 266px;
    height: 137px;
    transform: translate(-93%, -122%);
  }
  .p-top-page-gallery__items {
    margin-top: 4.53125vw;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875vw;
  }
  .p-top-page-gallery-entry-button {
    margin-top: 4.765625vw;
  }
  .p-top-page-news__content {
    padding-top: 6.75rem;
    padding-bottom: 5.375rem;
  }
  .p-top-page-news__items {
    flex-direction: row;
    gap: 2.34375vw;
    margin-top: 4.609375vw;
  }
  .p-top-page-news-card__tag {
    font-size: 1.09375vw;
    transform: translate(-0.625vw, 0.78125vw);
  }
  .p-top-page-news-card__tag::after {
    width: 0.625vw;
    height: 0.390625vw;
    transform: translate(0.078125vw, 0.390625vw);
  }
  .p-top-page-news-card__tag-text {
    font-size: 12px;
    padding: 0.5333333333vw 2.6666666667vw 0.5333333333vw 2.6666666667vw;
  }
  .p-top-page-news-card__tag-text {
    font-size: 12px;
    padding: 2px 10px;
  }
  .p-top-page-news__card-box-big {
    min-width: 39.84375vw;
    max-width: 39.921875vw;
  }
  .p-top-page-news__card-big__tag {
    font-size: 1.25vw;
    transform: translate(-0.625vw, 1.484375vw);
  }
  .p-top-page-news__card-big__tag::after {
    width: 0.625vw;
    height: 0.390625vw;
    transform: translate(0.078125vw, 0.390625vw);
  }
  .p-top-page-news__card-big__tag-text {
    font-size: 16px;
    padding: 0.5333333333vw 2.6666666667vw 0.5333333333vw 2.6666666667vw;
  }
  .p-top-page-news__card-big__tag-text {
    font-size: 16px;
    padding: 2px 10px;
  }
  .p-top-page-news__card-big__body {
    padding-top: 1.40625vw;
    padding-bottom: 0;
  }
  .p-top-page-news__card-big-body__title {
    font-size: 1.25rem;
  }
  .p-top-page-news__card-big-body__text p {
    padding-top: 1.5625vw;
    margin-bottom: 1.25vw;
    font-size: 0.875rem;
  }
  .p-top-page-news__card-big-body__date {
    font-size: 0.875rem;
    margin-top: 10px;
  }
  .p-top-page-news__card-box {
    gap: 2.34375vw;
    flex-grow: 1;
    row-gap: 2.1875vw;
  }
  .p-top-page-news-card-box__body {
    padding-top: 1.015625vw;
    padding-bottom: 0;
  }
  .p-top-page-news-card__title {
    font-size: 1rem;
    margin-bottom: 0.703125vw;
  }
  .p-top-page-news-card__date {
    font-size: 0.875rem;
  }
  .p-top-page-news-entry-button {
    margin-top: 60px;
  }
  .p-fv-news__card {
    margin-left: 6px;
  }
  .p-fv-news-card {
    min-width: 30.234375vw;
    max-width: 30.3125vw;
    height: auto;
    padding: 1.25vw;
  }
  .p-fv-news-card::after {
    width: 13.125vw;
    height: 8.515625vw;
    transform: translate(0%, -47%);
  }
  .p-fv-news-card .p-fv-news-card__tag {
    transform: translate(-0.625vw, 0.625vw);
  }
  .p-fv-news-card .p-fv-news-card__tag::after {
    width: 0.625vw;
    height: 0.390625vw;
    transform: translate(-0.078125vw, 0.390625vw);
  }
  .p-fv-news-card .p-fv-news-card__tag-text {
    font-size: 0.9375vw;
    padding: 0.15625vw 0.78125vw 0.15625vw 0.78125vw;
  }
  .p-fv-news-card .p-fv-news-card__tag-deco {
    width: 0.390625vw;
    height: 1.71875vw;
  }
  .p-fv-news-card__img {
    width: 9.375vw;
    height: 9.375vw;
  }
  .p-fv-news-card__body {
    width: 17.1875vw;
    padding-top: 1.875vw;
    padding-bottom: 0;
    gap: 0.9375vw;
  }
  .p-fv-news-card__title {
    font-size: 1.09375vw;
    line-height: 150%;
  }
  .p-fv-news-card__date {
    font-size: 12px;
  }
}

@media screen and (min-width: 1024px){
  .p-gramd-menu__card .p-gramd-menu-card__img {
    border: 8px solid #fff;
  }
  .p-gramd-menu__drink-card-and-drink-menus {
    gap: 6.71875vw;
  }
  .p-gramd-menu-drink-card__drink-img {
    width: 25.546875vw;
    border: 8px solid #fff;
  }
  .p-gramd-menu-card-drink-menus__body {
    gap: 3.75vw;
  }
}

@media screen and (min-width: 1280px){
  .p-header-sidemenu {
    padding: 18px 17px;
    min-width: 200px;
  }
  .p-header-sidemenu__nav {
    margin-top: 57px;
  }
  .p-header-sidemenu__nav-lists {
    gap: 32px;
  }
  .p-header-sidemenu__link .p-header-sidemenu__link-en {
    font-size: 16px;
  }
  .p-header-sidemenu__link .p-header-sidemenu__link-jp {
    font-size: 10px;
  }
  .p-header-sidemenu__sns {
    margin-top: 62px;
  }
  .p-header-sidemenu__sns-gap {
    gap: 24px;
  }
  .c-icon-sns__item--sidemenu {
    width: 24px;
    height: 24px;
  }
  .fab.fa-twitter.fa-twitter-sidemenu {
    font-size: 19.5px;
  }
  .fab.fa-instagram.fa-instagram-sidemenu {
    font-size: 20px;
  }
  .fab.fa-youtube.fa-youtube-sidemenu {
    font-size: 21px;
  }
  .p-top-page-fv__option-wrapper {
    padding: 0 20px 20px 20px;
    bottom: 0;
  }
  .p-top-page-word__text {
    font-size: 20px;
    padding-left: 30px;
    padding-bottom: 32px;
  }
  .p-top-page__swiper {
    width: 1080px;
    height: 735px;
  }
  #p-top-page__swiper .swiper-pagination {
    gap: 16px;
    left: 20px;
    bottom: 20px;
  }
  #p-top-page__swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .p-top-page__sidemenu-and-swiper-wrapper {
    padding-bottom: 58px;
  }
  .p-top-page__sidemenu-and-swiper-wrapper::after {
    width: 984px;
    height: 795px;
  }
  .p-top-page-concept__wrapper {
    padding-top: 80px;
    padding-bottom: 160px;
  }
  .p-top-page-concept__content {
    flex-direction: row;
    padding: 0px 90px 80px 0;
    gap: 80px;
  }
  .p-top-page-concept__content::before {
    right: 90px;
    height: 300px;
  }
  .p-top-page-concept__content::after {
    width: 296px;
    height: 265px;
  }
  .p-top-page-concept__img {
    width: 600px;
    height: 764px;
  }
  .p-top-page-concept__items {
    width: 510px;
    padding: 60px 0px 20px 0;
  }
  .p-top-page-concept-items__title {
    font-size: 28px;
    padding: 47px 0 48px 0;
  }
  .p-top-page-concept-items__text-wrapper {
    gap: 14px;
  }
  .p-top-page-concept-items__text {
    font-size: 14px;
  }
  .p-top-page-concept-items__button {
    margin-top: 49px;
  }
  .p-special-lunch-set__wrapper {
    padding-inline: 40px !important;
  }
  .p-special-lunch-set__content {
    padding-top: 108px;
    padding-bottom: 80px;
  }
  .p-special-lunch-set__content::before {
    width: 415px;
    height: 415px;
  }
  .p-special-lunch-set__content::after {
    width: 201px;
    height: 228px;
  }
  .p-special-lunch-set__container {
    margin-top: 59px;
    padding: 60px 40px 40px 40px;
  }
  .p-special-lunch-set__kazari {
    top: -20px;
  }
  .p-special-lunch-set-kazari__img-pc {
    width: 328px;
  }
  .p-special-lunch-set__fukidasi-pc {
    top: -60px;
    right: -24px;
    width: 308px;
    height: 160px;
    display: block;
  }
  .p-special-lunch-set__pasta-cards {
    gap: 26px;
  }
  .p-special-lunch-set__pasta-card:nth-child(2),
  .p-special-lunch-set__pasta-card:nth-child(4) {
    margin-top: 40px;
  }
  .p-special-lunch-set__pasta-card-figcaption {
    gap: 12px;
    margin-top: 16px;
  }
  .top-sp-lunch__card-tag-pc {
    width: 49px;
    height: 49px;
  }
  .p-special-lunch-set__pasta-card-title {
    font-size: 18px;
  }
  .p-special-lunch-set__set-menu {
    margin-top: 60px;
    flex-direction: row;
    padding: 18px 70px 22px 69px;
    gap: 24px;
  }
  .p-special-lunch-set--set-menu-illust-card__img {
    width: 700px;
    height: 190px;
    padding-top: 2px;
  }
  .p-special-lunch-set--set-menu__text-content {
    min-width: 220px;
  }
  .p-special-lunch-set--set-menu__title {
    padding-top: 6px;
    font-size: 20px;
    text-align: right;
  }
  .p-special-lunch-set--set-menu__price {
    font-size: 60px;
  }
  .p-special-lunch-set--set-menu__price::after {
    background-size: 11.7px 4px;
    width: 217px;
    bottom: -3px;
    transform: translateX(-50%);
  }
  .p-special-lunch-set--set-menu__time {
    font-size: 14px;
    padding-top: 15px;
    text-align: right;
  }
  .p-gramd-menu__wrapper {
    padding-top: 107px;
    padding-bottom: 160px;
  }
  .p-gramd-menu__content {
    padding-bottom: 85px;
  }
  .p-gramd-menu__content::before {
    right: -90px;
    width: 1024px;
    height: 2196px;
  }
  .p-gramd-menu__content::after {
    right: -179px;
    bottom: -120px;
    width: 390px;
    height: 330px;
  }
  .p-gramd-menu__lists {
    margin-top: 63px;
    gap: 103px;
  }
  .p-gramd-menu__cards {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
    -moz-column-gap: 34px;
         column-gap: 34px;
    row-gap: 34px;
  }
  .p-gramd-menu-items__name {
    font-size: 20px;
  }
  .p-gramd-menu-items__price {
    font-size: 32px;
  }
  .p-gramd-menu-items__price .p-gramd-menu-items__price-number {
    margin-right: 0px;
  }
  .p-gramd-menu__drink-card-and-drink-menus {
    gap: 86px;
    margin-top: 28px;
  }
  .p-gramd-menu-drink-card__drink-img {
    width: 327px;
  }
  .p-gramd-menu-card-drink-menus__body {
    gap: 48px;
  }
  .p-gramd-menu-card-drink-menus__title {
    font-size: 16px;
    padding-bottom: 5px;
  }
  .p-gramd-menu-card-drink-menus__list {
    margin-top: 24px;
  }
  .p-gramd-menu-card-drink-menus__name {
    font-size: 14px;
  }
  .p-gramd-menu-card-drink-menus__price {
    font-size: 20px;
  }
  .p-grand-menu-entry-button {
    margin-top: 60px;
  }
  .p-top-page-gallery__content {
    padding-top: 109px;
    padding-bottom: 86px;
  }
  .p-top-page-gallery-content__bg-img {
    width: 354px;
    height: 320px;
  }
  .p-top-page-gallery__items {
    gap: 24px;
    margin-top: 58px;
  }
  .p-top-page-gallery-entry-button {
    margin-top: 61px;
  }
  .p-top-page-news__content {
    padding-top: 108px;
    padding-bottom: 86px;
  }
  .p-top-page-news__items {
    flex-direction: row;
    gap: 30px;
    margin-top: 59px;
  }
  .p-top-page-news-card__tag {
    font-size: 14px;
    transform: translate(-8px, 10px);
  }
  .p-top-page-news-card__tag::after {
    width: 8px;
    height: 5px;
    transform: translate(1px, 5px);
  }
  .p-top-page-news__card-box-big {
    min-width: 510px;
    max-width: 511px;
  }
  .p-top-page-news__card-big__tag {
    font-size: 16px;
    transform: translate(-8px, 19px);
  }
  .p-top-page-news__card-big__tag::after {
    width: 8px;
    height: 5px;
    transform: translate(1px, 5px);
  }
  .p-top-page-news__card-big__body {
    padding-top: 16px;
  }
  .p-top-page-news__card-big-body__title {
    font-size: 20px;
  }
  .p-top-page-news__card-big-body__text p {
    padding-top: 20px;
    margin-bottom: 16px;
    font-size: 14px;
  }
  .p-top-page-news__card-big-body__date {
    font-size: 14px;
  }
  .p-top-page-news__card-box {
    gap: 30px;
    flex-grow: 1;
    row-gap: 28px;
  }
  .p-top-page-news-card-box__body {
    padding-top: 13px;
  }
  .p-top-page-news-card__title {
    font-size: 16px;
    margin-bottom: 9px;
  }
  .p-top-page-news-card__date {
    font-size: 14px;
  }
  .p-fv-news-card {
    min-width: 387px;
    max-width: 388px;
    padding: 16px;
  }
  .p-fv-news-card::after {
    width: 168px;
    height: 109px;
  }
  .p-fv-news-card .p-fv-news-card__tag {
    transform: translate(-8px, 8px);
  }
  .p-fv-news-card .p-fv-news-card__tag::after {
    width: 8px;
    height: 5px;
    transform: translate(-1px, 5px);
  }
  .p-fv-news-card .p-fv-news-card__tag-text {
    font-size: 12px;
    padding: 2px 10px;
  }
  .p-fv-news-card .p-fv-news-card__tag-deco {
    width: 5px;
    height: 22px;
  }
  .p-fv-news-card__img {
    width: 120px;
    height: 120px;
  }
  .p-fv-news-card__body {
    width: 209px;
    padding-top: 24px;
    gap: 12px;
  }
  .p-fv-news-card__title {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px){
  body.is-footer-sns-fixed {
    padding-bottom: 4.1875rem;
  }
}

@media screen and (max-width: 374px){
  .p-gramd-menu-card-drink-menus__body {
    width: 85.3333333333vw;
  }
}
/*# sourceMappingURL=top.css.map */