@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: #fffffe;
  color: #222222;
  font-family: "Noto Serif JP", "Amatic SC", "Patua One", "Damion", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
body.m_fixed_sns {
  padding-bottom: 75px;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  outline: none;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

ul,
ol {
  list-style: none;
}

table {
  border: 1px solid #eee;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}
table th,
table td {
  border: 1px solid #eee;
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
}

li {
  border: none;
}

.inner {
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (min-width: 375px) {
  .inner {
    max-width: 375px;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 768px;
    padding: 80px 0;
  }
}
@media screen and (min-width: 1024px) {
  .inner {
    max-width: 1024px;
    padding: 80px 0;
  }
}
@media screen and (min-width: 1280px) {
  .inner {
    max-width: 1280px;
    padding: 80px 0;
  }
}

.section-heading {
  margin: 0 auto;
  text-align: center;
  width: fit-content;
}
.section-heading__en {
  font-family: "Amatic SC";
  font-size: 40px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (min-width: 375px) {
  .section-heading__en {
    line-height: 130%;
  }
}
@media screen and (min-width: 768px) {
  .section-heading__en {
    font-size: 52px;
    letter-spacing: 10.4px;
    line-height: 150%;
  }
}
.section-heading__ja {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 375px) {
  .section-heading__ja {
    line-height: 150%;
  }
}
@media screen and (min-width: 768px) {
  .section-heading__ja {
    font-size: 14px;
    line-height: 150%;
  }
}

.page-header {
  width: 100%;
  margin: 0 auto;
  position: relative; /* 疑似要素の基準点 */
  /* ▼ 1本目の線（外側） */
  outline: 2px solid #fff;
  outline-offset: -12px; /* 内側に10px移動 */
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0; /* 上下左右0（親と同じサイズにする） */
  pointer-events: none; /* 線がクリックを邪魔しないようにする */
  /* ▼ 2本目の線（内側） */
  outline: 1px solid #fff; /* 別の色や太さにしてもOK */
  /* 1本目(-10px) - 間隔(10px) = -20px */
  outline-offset: -16px;
}
@media screen and (min-width: 375px) {
  .page-header {
    height: 120px;
  }
}
@media screen and (min-width: 1280px) {
  .page-header {
    height: 320px;
  }
}
.page-header__en {
  color: #fff;
  text-align: center;
  font-family: "Amatic SC";
  font-weight: 700;
  line-height: 130%; /* 93.6px */
  text-transform: uppercase;
  padding-left: 14px;
}
@media screen and (min-width: 375px) {
  .page-header__en {
    padding-top: 30px;
    font-size: 32px;
    letter-spacing: 6px;
  }
}
@media screen and (min-width: 1280px) {
  .page-header__en {
    font-size: 72px;
    letter-spacing: 14.4px;
    padding-top: 101px;
  }
}
.page-header__ja {
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 1.28px;
}
@media screen and (min-width: 375px) {
  .page-header__ja {
    font-size: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .page-header__ja {
    font-size: 16px;
  }
}

@media screen and (min-width: 375px) {
  .u-hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .u-hidden-sm {
    display: inline-block;
  }
}

@media screen and (min-width: 375px) {
  .u-hidden-xl {
    display: inline-block;
  }
}
@media screen and (min-width: 1280px) {
  .u-hidden-xl {
    display: none;
  }
}

.button {
  background-color: #222;
  width: 100%;
  height: 72px;
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  transition: transform 0.2s ease-in-out;
  max-width: 290px;
}
.button::before {
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  right: -6px;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  transition: transform 0.2s ease-in-out;
}
.button::after {
  content: "";
  display: block;
  position: absolute;
  right: 22px;
  top: 24px;
  width: 16px;
  height: 24px;
  background-image: url("../img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out;
}
.button:hover {
  transform: translate(2px, 2px);
}
.button:hover::before {
  transform: translate(-6px, -6px);
}
.button:hover::after {
  transform: translate(-6px, -6px);
}

.breadcrumbs {
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .breadcrumbs {
    max-width: 375px;
    margin: 0px auto;
    font-size: 12px;
    padding: 6px 20px 0 15px;
  }
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    font-size: 14px;
    padding: 0;
    max-width: 700px;
    margin: 16px auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .breadcrumbs {
    max-width: 934px;
    margin: 16px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .breadcrumbs {
    max-width: 1120px;
    margin: 16px auto 0;
  }
}
.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs > span {
  margin-right: 2px;
  margin-left: 4px;
}
@media screen and (min-width: 1280px) {
  .breadcrumbs > span {
    margin-right: 14px;
    margin-left: 10px;
  }
}

html {
  scroll-behavior: smooth;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-top.scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.scroll-top:active {
  transform: translateY(-1px);
}
.scroll-top a {
  display: block;
  width: 22px;
  height: 12px;
  color: #382620;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
}
.scroll-top a:hover {
  opacity: 0.6;
}
.scroll-top__icon:before {
  content: "\f077";
  bottom: 11px;
  right: 11px;
}

/* =================================
 5. HAMBURGER MENU (スクロールで表示)
================================= */
/* 1. ハンバーガーボタンの基本設定 */
.p-drawer__icon {
  position: fixed;
  z-index: 99999;
  top: 10px;
  right: 10px;
  /* デザイン */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 等間隔に配置 */
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 21px 16px; /* 上下左右の余白 */
  gap: 6px; /* 線と線の間隔 */
  border-radius: 30px;
  background: #382620;
  border: none;
  cursor: pointer;
  /* ▼▼▼ 初期状態：隠しておく（重要） ▼▼▼ */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
  /* 2. 中の3本線 */
}
.p-drawer__icon--bar {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.p-drawer__icon {
  /* ▼▼▼ 3. 表示トリガー（重要） ▼▼▼ */
  /* A. スクロールして JSで 'is-active' がついた時（表示する） */
}
.p-drawer__icon.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-drawer__icon {
  /* B. メニューが開いている時（表示する ＆ 背景を白に） */
}
.p-drawer__icon.js-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: #fff; /* バツ印の時は背景白 */
  /* 線の色を茶色に変更 */
}
.p-drawer__icon.js-show .p-drawer__icon--bar {
  background-color: #382620;
  /* 1本目を回転して下げる */
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
}
.p-drawer__icon.js-show .p-drawer__icon--bar {
  /* 2本目を消す */
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  opacity: 0;
}
.p-drawer__icon.js-show .p-drawer__icon--bar {
  /* 3本目を回転して上げる */
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =================================
   ドロワーメニュー本体
   ================================= */
.p-drawer {
  position: fixed;
  z-index: 19999;
  top: 0;
  right: 0;
  display: flex;
  padding: 10px 10px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  flex: 1 0 0;
  align-self: stretch;
  /* 画面幅設定 */
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100svh;
  background: #382620;
  /* 初期状態：画面右外に隠す */
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  /* アニメーション */
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, visibility 0.4s ease;
  /* メニュー内のレイアウト */
}
.p-drawer__icon-right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.p-drawer__icon-right img {
  width: 120px;
  margin-left: 0;
  margin-right: auto;
}
.p-drawer__body {
  padding: 12px 30px;
  overflow-y: auto;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.p-drawer__nav {
  width: 100%;
}
.p-drawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-drawer__list li {
  margin-bottom: 25px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.p-drawer__list li a {
  color: #fff;
  font-family: "Patua One";
  font-size: 24px;
  text-decoration: none;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 2.88px;
  text-transform: uppercase;
}
.p-drawer__list li a:hover {
  opacity: 0.7;
}
.p-drawer__list li span {
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 10px;
  font-weight: 500;
  line-height: 150%; /* 15px */
}
.p-drawer__sns {
  width: 115px;
  height: 75px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: center;
  /* mixinの定義が必要ですが、元の環境にあると仮定します */
}
@media screen and (min-width: 375px) {
  .p-drawer__sns {
    height: 75px;
  }
}
.p-drawer__sns svg {
  fill: #fff;
  transition: fill 0.3s ease;
}
.p-drawer__sns svg:hover {
  fill: #f07317;
}
.p-drawer {
  /* 黒背景（オーバーレイ） */
}
.p-drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 19998; /* アイコンより下、ドロワーより下 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.p-drawer__overlay.js-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-drawer {
  /* ----------------------
     State (状態変化)
  ---------------------- */
}
.p-drawer.js-show {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.p-drawer {
  /* ----------------------
     Responsive
  ---------------------- */
}
@media screen and (min-width: 1280px) {
  .p-drawer {
    width: 30vw;
  }
}

/* 背景固定用クラス */
body.is-drawer-active {
  overflow: hidden;
  height: 100vh;
}

.layout-container {
  display: flex;
  position: relative;
  background: #f3efeb;
}

.header__list img {
  max-width: 166px;
  width: 100%;
  height: 90px;
  flex-shrink: 0;
}

.header__nav {
  border-bottom: 1px solid #e2e2e2;
  height: auto;
  padding-top: 0;
  width: 16%;
}
.header__nav ul {
  display: none;
  z-index: 10;
  height: auto;
  padding: 18px 17px;
}
@media screen and (min-width: 1280px) {
  .header__nav ul {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
  }
}
.header__nav li {
  font-family: "Patua One";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1.92px;
  text-align: center;
  margin-left: 5px;
}
.header__nav li:nth-child(2) {
  margin-top: 28px;
}
.header__nav li a {
  text-decoration: none;
}
.header__nav li a:hover {
  opacity: 0.6;
}

.header__sub-text {
  display: block;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 10px;
  font-weight: 500;
  line-height: 150%;
  align-self: stretch;
  letter-spacing: 0.05px;
}

.header-sns {
  width: 115px;
  height: 75px;
  margin: 0 auto;
  display: flex;
  gap: 26px;
  align-items: center;
}
@media screen and (min-width: 375px) {
  .header-sns {
    height: 85px;
  }
}
.header-sns svg {
  fill: #382620;
  transition: fill 0.3s ease;
}
.header-sns svg:hover {
  fill: #f07317;
}

.header__fv {
  position: relative;
  overflow: hidden;
  height: auto;
}
@media screen and (min-width: 375px) {
  .header__fv {
    width: 100%;
    overflow: clip;
  }
}
@media screen and (min-width: 768px) {
  .header__fv {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .header__fv {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .header__fv {
    width: 84%;
  }
}

.header__fv img {
  color: transparent;
}
@media screen and (min-width: 375px) {
  .header__fv img {
    -o-object-fit: cover !important;
    object-fit: cover !important;
    -o-object-position: 50% 50% !important;
    object-position: 50% 50% !important;
  }
}

/* Swiper Container */
.header-swiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 375px) {
  .header-swiper {
    height: 667px;
  }
}
@media screen and (min-width: 768px) {
  .header-swiper {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .header-swiper {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .header-swiper {
    width: 100%;
    height: 735px;
  }
}

.header-swiper__text {
  color: #fff;
  font-family: "Noto Serif JP";
  font-weight: 700;
  position: absolute;
  z-index: 100;
}
@media screen and (min-width: 375px) {
  .header-swiper__text {
    font-size: 16px;
    width: 260px;
    top: 18.5%;
    left: 4.5%;
    line-height: 32px;
    letter-spacing: 2.24px;
  }
}
@media screen and (min-width: 1024px) {
  .header-swiper__text {
    font-size: 20px;
    width: 426.927px;
    top: auto;
    bottom: 7%;
    left: 4.5%;
    line-height: 200%; /* 40px */
    letter-spacing: 2.8px;
  }
}

@media screen and (min-width: 375px) {
  .header-swiper__logo {
    display: block;
    position: absolute;
    width: 119.999px;
    height: 65px;
    top: 1%;
    left: 3%;
    z-index: 100;
  }
}
@media screen and (min-width: 768px) {
  .header-swiper__logo {
    display: none;
  }
}

.header-swiper .swiper-slide {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.header-swiper .swiper-slide img {
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 5s ease-in-out;
  display: block;
}
@media screen and (min-width: 375px) {
  .header-swiper .swiper-slide img {
    height: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .header-swiper .swiper-slide img {
    height: 93%;
  }
}

/* ズームイン効果 */
.header-swiper .swiper-slide-active img {
  transform: scale(1.1);
  width: 100%;
}

/* 丸（ドット）の共通設定 */
.swiper-pagination-bullet {
  background-color: #ffffff; /* 選択されていない時の色（白） */
  opacity: 1; /* 透明度をなくす（くっきり白くする） */
}
@media screen and (min-width: 375px) {
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 8px !important;
  }
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 10px; /* 丸の大きさ */
    height: 10px;
    margin: 0 6px !important; /* ドット同士の間隔調整 */
  }
}

/* 選択されている（現在の）丸の設定 */
.swiper-pagination-bullet-active {
  background-color: #d49a6a; /* 選択されている時の色（オレンジ/茶色） */
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  width: 100px;
}

.header__news {
  position: absolute;
  bottom: 76px;
  right: 17px;
  display: flex;
  max-width: 388px;
  width: 100%;
  align-items: center;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
}
@media screen and (min-width: 375px) {
  .header__news {
    bottom: 33px;
    right: 19px;
    max-width: 338px;
    padding: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .header__news {
    bottom: 20px;
    right: 17px;
    display: flex;
    max-width: 388px;
    padding: 16px;
  }
}

.header__news-box {
  display: flex;
  gap: 18px;
  position: relative;
}

.header__news-image {
  width: 100%;
  max-height: 120px;
}
@media screen and (min-width: 375px) {
  .header__news-image {
    max-width: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .header__news-image {
    max-width: 120px;
  }
}

.header__news-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 200px;
  gap: 10px;
}

.fv-header__news-deco {
  position: absolute;
  transform: rotate(5deg);
}
@media screen and (min-width: 375px) {
  .fv-header__news-deco {
    width: 125px;
    height: 72px;
    flex-shrink: 0;
    top: -48%;
    right: -11px;
    transform: rotate(0deg);
  }
}
@media screen and (min-width: 1024px) {
  .fv-header__news-deco {
    width: 166px;
    height: 95.172px;
    top: -50%;
    right: -34px;
    transform: rotate(0deg);
  }
}

.header__news-date {
  color: #222;
  font-family: "Noto Serif JP";
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}

.header__news-text {
  color: #222;
  text-overflow: ellipsis;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 375px) {
  .header__news-text {
    font-size: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .header__news-text {
    font-size: 14px;
  }
}

.header__nav::after {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 76.875%;
  width: 100%;
  background-color: #eae0d5;
  z-index: 0;
  display: block;
  content: "";
}
@media screen and (min-width: 768px) {
  .header__nav::after {
    height: 46%;
  }
}
@media screen and (min-width: 1024px) {
  .header__nav::after {
    height: 49%;
  }
}
@media screen and (min-width: 1280px) {
  .header__nav::after {
    height: 66%;
  }
}

.concept {
  position: relative;
  background: #f3efeb;
  overflow: hidden;
}
@media screen and (min-width: 375px) {
  .concept {
    padding-bottom: 180px;
  }
}
@media screen and (min-width: 1280px) {
  .concept {
    padding-bottom: 140px;
  }
}
.concept .inner {
  padding-top: 40px;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .concept .inner {
    z-index: 10;
    padding-top: 105px;
  }
}
.concept__deco-beans {
  position: absolute;
}
@media screen and (min-width: 375px) {
  .concept__deco-beans {
    width: 145px;
    height: 130px;
    position: absolute;
    right: -17px;
    top: -20px;
  }
}
@media screen and (min-width: 1024px) {
  .concept__deco-beans {
    right: 0px;
    top: -13px;
    width: 262px;
    height: 265px;
    aspect-ratio: 296/265;
  }
}
.concept__content {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .concept__content {
    flex-direction: row;
    gap: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .concept__content {
    flex-direction: row;
    gap: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .concept__content {
    flex-direction: row;
    gap: 64px;
  }
}
.concept__img {
  z-index: 100;
}
.concept__img img {
  max-width: 315px;
  width: 100%;
  height: 401px;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .concept__img img {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 1024px) {
  .concept__img img {
    max-width: 600px;
    height: 764px;
  }
}
@media screen and (min-width: 1280px) {
  .concept__img img {
    max-width: 600px;
    height: 764px;
  }
}
.concept__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 10px;
  text-align-last: left;
}
@media screen and (min-width: 375px) {
  .concept__text {
    max-width: 375px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 40px;
    padding-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .concept__text {
    max-width: 410px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 0;
    gap: 24px;
    margin-top: 32.5px;
  }
}
@media screen and (min-width: 1024px) {
  .concept__text {
    gap: 48px;
    max-width: 567px;
  }
}
@media screen and (min-width: 1280px) {
  .concept__text {
    gap: 48px;
    max-width: 567px;
  }
}

.concept .section-heading {
  margin: 0;
  text-align: start;
}
.concept__heading {
  max-width: 375px;
  width: 100%;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 200%;
}
@media screen and (min-width: 1024px) {
  .concept__heading {
    font-size: 26px;
    max-width: 567px;
    margin-top: -3px;
  }
}
@media screen and (min-width: 1280px) {
  .concept__heading {
    font-size: 28px;
    max-width: 567px;
  }
}
.concept__body {
  max-width: min(335px, 100vw - 40px);
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
}
.concept__body:nth-of-type(2) {
  margin-top: 14px;
}
@media screen and (min-width: 1024px) {
  .concept__body {
    max-width: 375px;
  }
}
@media screen and (min-width: 1280px) {
  .concept__body {
    max-width: 510px;
  }
}

@media screen and (min-width: 375px) {
  .concept__button {
    margin: 0 auto 67px;
    width: 300px;
  }
}
@media screen and (min-width: 1280px) {
  .concept__button {
    margin: 0;
    margin-bottom: 60px;
  }
}

.concept::after {
  position: absolute;
  background: #eae0d5;
  content: "";
}
@media screen and (min-width: 375px) {
  .concept::after {
    bottom: 8.5%;
    width: 94.96875%;
    height: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .concept::after {
    bottom: 14%;
    width: 92.96875%;
    height: 300px;
  }
}

.special-menu {
  background: #eae0d5;
  position: relative;
}
.special-menu__deco-leaves {
  position: absolute;
}
@media screen and (min-width: 375px) {
  .special-menu__deco-leaves {
    width: 90px;
    height: 135px;
    right: 0px;
    top: -173px;
  }
}
@media screen and (min-width: 1024px) {
  .special-menu__deco-leaves {
    right: 0px;
    top: -130px;
    width: 162px;
    height: 228px;
    aspect-ratio: 67/76;
  }
}
.special-menu__deco-balloon {
  position: absolute;
  z-index: 100;
}
@media screen and (min-width: 375px) {
  .special-menu__deco-balloon {
    width: 206px;
    height: 107px;
    right: 0px;
    top: -46px;
  }
}
@media screen and (min-width: 1024px) {
  .special-menu__deco-balloon {
    right: 1%;
    top: 17%;
    width: 307px;
    height: 160px;
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 1920px) {
  .special-menu__deco-balloon {
    right: 15%;
    top: 15%;
    width: 307px;
    height: 160px;
    aspect-ratio: 1/1;
  }
}
.special-menu .section-header {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .special-menu .section-header {
    max-width: 455px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu .section-header .section-title {
    margin-left: 17px;
    line-height: 140%;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu .section-header .section-sub-title {
    margin-left: 10px;
  }
}
.special-menu .inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1280px) {
  .special-menu .inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.special-menu__content {
  max-width: 375px;
  width: 100%;
  position: relative;
  background-color: #fff;
  margin: 60px auto 0;
}
@media screen and (min-width: 375px) {
  .special-menu__content {
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 768px) {
  .special-menu__content {
    max-width: 720px;
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .special-menu__content {
    max-width: 960px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__content {
    max-width: 1200px;
    height: 755px;
  }
}
.special-menu__heading {
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 150%;
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #382620;
  width: 100%;
  height: 35px;
  z-index: 20;
  padding: 8px 10px;
}
@media screen and (min-width: 375px) {
  .special-menu__heading {
    font-size: 14px;
    max-width: 230px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__heading {
    font-size: 18px;
    max-width: 290px;
    height: 37px;
    top: -22px;
    left: 50%;
  }
}
.special-menu__items {
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  padding: 40px 20px 20px;
}
@media screen and (min-width: 768px) {
  .special-menu__items {
    max-width: 700px;
    padding: 60px 20px 20px;
    display: flex;
    gap: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .special-menu__items {
    max-width: 960px;
    padding: 60px 40px 20px;
    display: flex;
    gap: 27px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__items {
    max-width: 1200px;
    padding: 60px 40px;
    display: flex;
    gap: 27px;
    margin-left: 3px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__item:nth-of-type(2), .special-menu__item:nth-of-type(4) {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__lunch-set-item:nth-of-type(2), .special-menu__lunch-set-item:nth-of-type(4) {
    margin-top: 74px;
  }
}
.special-menu__img {
  max-width: 158px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .special-menu__img {
    max-width: 200px;
    height: 200px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__img {
    max-width: 260px;
    height: 260px;
    padding-bottom: 16px;
  }
}
.special-menu__text-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .special-menu__text-wrapper {
    gap: 6px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__text-wrapper {
    gap: 12px;
    margin-top: 0;
  }
}
.special-menu__tag {
  width: 24px;
  height: 24px;
  color: #fff;
  font-family: "Patua One";
  background-color: #382620;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.special-menu__tag:first-of-type {
  margin-top: 0px;
}
@media screen and (min-width: 375px) {
  .special-menu__tag {
    font-size: 19px;
    padding: 2.5px 5.5px;
  }
}
@media screen and (min-width: 1024px) {
  .special-menu__tag {
    font-size: 32px;
    width: 49px;
    height: 49px;
    padding: 4px 15px;
  }
}
.special-menu__text-title {
  max-width: 128px;
  width: 100%;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 375px) {
  .special-menu__text-title {
    margin-top: 0px;
  }
}
@media screen and (min-width: 768px) {
  .special-menu__text-title {
    max-width: 128px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .special-menu__text-title {
    max-width: 140px;
    font-size: 18px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__text-title {
    max-width: 199px;
    font-size: 18px;
    margin-top: 0;
  }
}
.special-menu__lunch-set {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f7f6f4;
  border-radius: 8px;
  padding: 20px 0;
  gap: 0;
  justify-content: space-between;
}
@media screen and (min-width: 375px) {
  .special-menu__lunch-set {
    max-width: 335px;
    margin: 0 auto;
    padding: 30px 0;
  }
}
@media screen and (min-width: 768px) {
  .special-menu__lunch-set {
    margin: 0 32px;
    gap: 38px;
    flex-direction: row;
    padding: 25px 20px;
    max-width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .special-menu__lunch-set {
    margin: 0 60px 0 32px;
    gap: 0;
    padding: 0px 70px 20px 70px;
    max-width: 980px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__lunch-set {
    margin: 0 auto;
    padding: 20px 65px;
    max-width: 1120px;
  }
}
.special-menu__lunch-set-items {
  display: flex;
  gap: 7px;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .special-menu__lunch-set-items {
    gap: 0px;
    height: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__lunch-set-items {
    gap: 0px;
    width: 700px;
    height: 190px;
  }
}
.special-menu__lunch-set-item {
  flex-shrink: 0;
}
.special-menu__lunch-set-item:nth-of-type(6) {
  margin-left: 55px;
  max-width: 275px;
  width: 100%;
  margin-top: -25px;
}
.special-menu__lunch-set-item-title {
  width: 36.05px;
  height: 11.863px;
}
@media screen and (min-width: 375px) {
  .special-menu__lunch-set-item-title {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__lunch-set-item-title {
    width: 68px;
    height: 25px;
  }
}
.special-menu__lunch-set-item-image {
  min-width: 87px;
  height: 68px;
}
@media screen and (min-width: 1024px) {
  .special-menu__lunch-set-item-image {
    min-width: 115px;
    height: 115px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__lunch-set-item-image {
    min-height: 145px;
    height: 100%;
  }
}
@media screen and (min-width: 375px) {
  .special-menu__lunch-set-text-wrapper {
    margin-top: 26px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__lunch-set-text-wrapper {
    text-align: center;
    max-width: 220px;
    width: 100%;
    margin-top: 0;
  }
}
.special-menu__lunch-set-item-text1 {
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .special-menu__lunch-set-item-text1 {
    font-size: 20px;
    text-align: right;
  }
}
.special-menu__lunch-set-item-text2 {
  text-align: center;
  font-family: Damion;
  font-size: 40px;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (min-width: 1280px) {
  .special-menu__lunch-set-item-text2 {
    font-size: 60px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu__lunch-set-item-dot {
    margin-top: 0;
  }
}
.special-menu__lunch-set-item-text3 {
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 1280px) {
  .special-menu__lunch-set-item-text3 {
    text-align: right;
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .special-menu .drink-svg {
    width: 85px;
    height: 22px;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu .drink-svg {
    width: 85px;
    height: 22px;
  }
}
.special-menu .plus-icon {
  display: block;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  align-self: center;
}
@media screen and (min-width: 1280px) {
  .special-menu .plus-icon {
    width: 26px;
    height: 26px;
  }
}
.special-menu .text-before {
  position: absolute;
  top: -20px;
  transform: translateX(-50%);
  z-index: 10;
  left: 16%;
}
@media screen and (min-width: 375px) {
  .special-menu .text-before {
    left: 18%;
  }
}
@media screen and (min-width: 768px) {
  .special-menu .text-before {
    left: 32%;
  }
}
@media screen and (min-width: 1024px) {
  .special-menu .text-before {
    top: -14px;
    left: 37%;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu .text-before {
    left: 38%;
  }
}
.special-menu .text-after {
  position: absolute;
  top: -20px;
  transform: translateX(-50%);
  z-index: 10;
  left: 84%;
}
@media screen and (min-width: 375px) {
  .special-menu .text-after {
    left: 82%;
  }
}
@media screen and (min-width: 768px) {
  .special-menu .text-after {
    left: 68%;
  }
}
@media screen and (min-width: 1024px) {
  .special-menu .text-after {
    top: -14px;
    left: 63%;
  }
}
@media screen and (min-width: 1280px) {
  .special-menu .text-after {
    left: 63%;
  }
}

@media screen and (min-width: 1280px) {
  .special-menu__lunch-set-item-1 {
    margin-right: 45px;
    width: 172px;
    height: 145px;
    padding-left: 20px;
  }
  .special-menu__lunch-set-item-1 p {
    margin-left: 51px;
  }
  .special-menu__lunch-set-item-2 {
    margin-right: 37px;
  }
  .special-menu__lunch-set-item-3 {
    margin-right: 37px;
    width: 150px;
    height: 145px;
  }
  .special-menu__lunch-set-item-3 p {
    margin-left: 42px;
  }
  .special-menu__lunch-set-item-4 {
    padding-right: 32px;
  }
  .special-menu__lunch-set-item-5 p {
    margin-left: 38px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 375px) {
  .special-menu__lunch-set-item-dot ellipse:nth-last-child(-n+6) {
    display: none;
  }
  .special-menu__lunch-set-item-dot {
    margin-left: 70px;
  }
}
.grand-menu {
  background-color: #f3efeb;
  position: relative;
  z-index: 1;
}
.grand-menu__deco-leaves {
  position: absolute;
  left: 0px;
  top: -100px;
  width: 201px;
  height: 228px;
  aspect-ratio: 67/76;
  z-index: 100;
}
.grand-menu__deco-coffee-beans {
  position: absolute;
  z-index: 100;
}
@media screen and (min-width: 375px) {
  .grand-menu__deco-coffee-beans {
    width: 150px;
    height: 143px;
    right: 0px;
    bottom: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu__deco-coffee-beans {
    right: 0px;
    bottom: 44px;
    width: 296px;
    height: 328px;
    aspect-ratio: 296/265;
  }
}
@media screen and (min-width: 375px) {
  .grand-menu {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu {
    padding-bottom: 180px;
  }
}
@media screen and (min-width: 375px) {
  .grand-menu .inner {
    padding: 60px 0 70px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu .inner {
    padding: 80px 0 70px;
  }
}
.grand-menu .section-title {
  margin-left: 5px;
  line-height: 150%;
}
@media screen and (min-width: 1280px) {
  .grand-menu .section-title {
    margin-left: 18px;
  }
}
.grand-menu .section-sub-title {
  margin-left: 0px;
  line-height: 150%;
}
@media screen and (min-width: 1280px) {
  .grand-menu .section-sub-title {
    margin-left: 8px;
  }
}
.grand-menu__bg {
  position: absolute;
  right: 0;
  bottom: 160px;
  width: calc(50vw + 384px);
  height: 79.3184488837%;
  background: #eae0d5;
  z-index: -1;
}
.grand-menu__group {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1280px) {
  .grand-menu__group {
    padding-left: 30px;
    padding-right: 20px;
  }
}
.grand-menu__food-content:nth-of-type(1) {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .grand-menu__food-content:nth-of-type(1) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu__food-content:nth-of-type(1) {
    margin-top: 60px;
  }
}
.grand-menu__food-content:nth-of-type(2), .grand-menu__food-content:nth-of-type(3) {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .grand-menu__food-content:nth-of-type(2), .grand-menu__food-content:nth-of-type(3) {
    margin-top: 96px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu__food-content:nth-of-type(2), .grand-menu__food-content:nth-of-type(3) {
    margin-top: 100px;
  }
}
@media screen and (min-width: 375px) {
  .grand-menu__drink-content {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu__drink-content {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu__drink-content {
    margin-top: 100px;
  }
}
.grand-menu__title {
  max-width: min(335px, 100vw - 40px);
  width: 100%;
  font-size: 25px;
  border-top: 4px double #382620;
  border-bottom: 4px double #382620;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 375px) {
  .grand-menu__title {
    padding: 2px 0px 2px 10px;
    font-size: 20px;
    margin-bottom: 22px;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu__title {
    max-width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu__title {
    max-width: 960px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu__title {
    max-width: 1100px;
    font-size: 24px;
    margin: 0 auto;
    padding: 5px 0px 5px 20px;
  }
}
.grand-menu__items {
  max-width: min(335px, 100vw - 40px);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 375px) {
  .grand-menu__items {
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu__items {
    max-width: 668px;
    display: flex;
    gap: 34px;
    margin-left: 30px;
    margin-right: 30px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu__items {
    max-width: 960px;
    display: flex;
    gap: 34px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu__items {
    max-width: 1100px;
    display: flex;
    gap: 34px;
    margin-left: 65px;
  }
}
@media screen and (min-width: 375px) {
  .grand-menu__item {
    padding-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu__item {
    padding-top: 24px;
  }
}
.grand-menu__item-title {
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 10px;
  max-width: 158px;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .grand-menu__item-title {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu__item-title {
    max-width: 277px;
    font-size: 20px;
    margin-top: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu__item-title {
    max-width: 344px;
    margin-top: 12px;
  }
}
.grand-menu__item-price {
  font-family: "Damion";
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1280px) {
  .grand-menu__item-price {
    font-size: 32px;
  }
}
.grand-menu__item-image {
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 375px) {
  .grand-menu__item-image {
    border: 5px solid #fff;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu__item-image {
    max-width: 190px;
    height: 190px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu__item-image {
    border: 8px solid #fff;
    max-width: 277px;
    height: 277px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu__item-image {
    border: 8px solid #fff;
    max-width: 344px;
    height: 344px;
  }
}
.grand-menu__drink-image {
  width: 0px;
  height: 0px;
  display: none;
  padding: 0;
  margin: 0;
  width: 100%;
  border: 8px solid #fff;
}
@media screen and (min-width: 768px) {
  .grand-menu__drink-image {
    display: none;
    padding: 0;
    margin: 0;
    max-width: 190px;
    height: 190px;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu__drink-image {
    display: block;
    max-width: 277px;
    height: 277px;
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu__drink-image {
    display: block;
    max-width: 324px;
    width: 100%;
    height: 324px;
  }
}
.grand-menu__drink-items {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .grand-menu__drink-items {
    max-width: 295px;
    margin: -3px auto;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu__drink-items {
    flex-direction: row;
    gap: 24px;
    max-width: 720px;
    margin: 20px auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu__drink-items {
    gap: 48px;
    max-width: 960px;
    margin: 20px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu__drink-items {
    gap: 48px;
    max-width: 1100px;
    margin: 20px auto 0;
  }
}
.grand-menu__drink-item {
  max-width: 295px;
  width: 100%;
  padding-top: 0px;
}
@media screen and (min-width: 375px) {
  .grand-menu__drink-item {
    padding-bottom: 38px;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu__drink-item {
    max-width: 190px;
    padding-top: 35px;
  }
  .grand-menu__drink-item:nth-of-type(2) {
    margin-left: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu__drink-item {
    max-width: 197px;
    padding-top: 35px;
  }
  .grand-menu__drink-item:nth-of-type(2) {
    margin-left: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu__drink-item {
    max-width: 197px;
    padding-top: 0px;
  }
  .grand-menu__drink-item:nth-of-type(2) {
    margin-left: 40px;
    padding-top: 0px;
  }
}
.grand-menu__drink-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.grand-menu__drink-text-wrapper {
  display: flex;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  justify-content: space-between;
  align-items: center;
}
.grand-menu__drink-item-title {
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  border-bottom: 1px solid #382620;
  margin-bottom: 20px;
  padding-bottom: 6px;
}
.grand-menu__drink-item-name {
  max-width: 260px;
  color: #222;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .grand-menu__drink-item-name {
    max-width: 137px;
  }
}
.grand-menu__drink-item-price {
  font-family: "Damion";
  font-weight: 400;
  line-height: 150%;
  font-size: 20px;
}
@media screen and (min-width: 375px) {
  .grand-menu__drink-item-price {
    letter-spacing: 0.04em;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu__drink-item-price {
    letter-spacing: 0.04em;
  }
}
@media screen and (min-width: 375px) {
  .grand-menu__button {
    margin: 2px auto 0;
    max-width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu__button {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu__button {
    margin: 42px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu__button {
    margin: 65px auto 0;
  }
}

.gallery {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #eae0d5;
  position: relative;
  z-index: 1;
}
.gallery__deco-plate {
  position: absolute;
}
@media screen and (min-width: 375px) {
  .gallery__deco-plate {
    width: 204px;
    height: 185px;
    left: -60px;
    bottom: -20%;
  }
}
@media screen and (min-width: 1024px) {
  .gallery__deco-plate {
    left: 0;
    width: 280px;
    height: 320px;
  }
}
@media screen and (min-width: 375px) {
  .gallery .inner {
    padding-top: 60px;
    padding-bottom: 67px;
  }
}
@media screen and (min-width: 768px) {
  .gallery .inner {
    padding: 90px 0 80px;
  }
}
@media screen and (min-width: 1024px) {
  .gallery .inner {
    padding: 90px 0 85px;
  }
}
.gallery__deco-balloon {
  position: absolute;
}
@media screen and (min-width: 375px) {
  .gallery__deco-balloon {
    width: 200px;
    height: 104px;
    left: -20px;
    top: -60px;
  }
}
@media screen and (min-width: 1024px) {
  .gallery__deco-balloon {
    left: 24%;
    top: -10%;
    width: 256px;
    height: 145px;
  }
}
@media screen and (min-width: 1920px) {
  .gallery__deco-balloon {
    left: 32%;
    top: -10%;
  }
}
.gallery .section-title {
  margin-left: 0px;
  margin-top: 0px;
  line-height: 150%;
}
@media screen and (min-width: 1280px) {
  .gallery .section-title {
    margin-left: 15px;
    margin-top: -12px;
  }
}
.gallery__items {
  max-width: 335px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
  margin: 40px auto;
}
@media screen and (min-width: 768px) {
  .gallery__items {
    max-width: 720px;
    display: flex;
    gap: 24px;
    margin: 60px auto;
  }
}
@media screen and (min-width: 1024px) {
  .gallery__items {
    max-width: 960px;
    gap: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .gallery__items {
    max-width: 1100px;
    gap: 24px;
  }
}
.gallery__item {
  max-width: 158px;
  height: 158px;
}
@media screen and (min-width: 1024px) {
  .gallery__item {
    max-width: 257px;
    height: 257px;
  }
}
@media screen and (min-width: 1280px) {
  .gallery__item {
    max-width: 257px;
    height: 257px;
  }
}
.gallery__button {
  margin: 0 auto;
}

.news {
  background-color: #f3efeb;
}
.news .inner {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  .news .inner {
    padding-top: 60px;
    padding-bottom: 180px;
    max-width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .news .inner {
    max-width: 720px;
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .news .inner {
    max-width: 960px;
    padding-top: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .news .inner {
    max-width: 1100px;
    padding-top: 85px;
  }
}
.news .section-title {
  margin-left: 0px;
  margin-top: 0px;
  line-height: 150%;
}
@media screen and (min-width: 1280px) {
  .news .section-title {
    margin-left: 17px;
  }
}
.news .section-sub-title {
  line-height: 130%;
}
.news__items {
  padding-top: 30px;
}
@media screen and (min-width: 375px) {
  .news__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 20px 19px;
    max-width: 335px;
    margin: 0 auto;
    padding-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .news__items {
    max-width: 780px;
    padding-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .news__items {
    grid-template-columns: 1fr repeat(2, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 17px 33px;
    padding-top: 60px;
    max-width: 1000px;
  }
}
@media screen and (min-width: 1280px) {
  .news__items {
    max-width: 1090px;
    gap: 30px;
  }
}
.news__item-image {
  width: 100%;
  object-fit: cover;
  margin-bottom: 16px;
}
.news__item-title {
  overflow: hidden;
  color: #382620;
  text-overflow: ellipsis;
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
}
@media screen and (min-width: 1280px) {
  .news__item-title {
    font-size: 20px;
  }
}
.news__date {
  font-size: 14px;
  font-family: "Noto Serif JP";
  font-weight: 500;
  color: #382620;
}
.news .img-wide {
  overflow: hidden;
}
.news .news__item:first-child .news__item-image {
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .news .news__item:first-child .news__item-image {
    width: 510px;
    max-width: 510px;
  }
}
.news .news__item:first-child .news__item-image:hover {
  transform: scale(1.05);
}
.news__item:first-child {
  max-width: 335px;
  width: 100%;
}
.news__item:first-child .news__item-image {
  height: 210px;
}
@media screen and (min-width: 1280px) {
  .news__item:first-child .news__item-image {
    max-width: 510px;
  }
}
.news__item:first-child .news__text {
  font-size: 12px;
  font-weight: 500;
  line-height: 180%;
  max-width: 100%;
  color: #382620;
}
@media screen and (min-width: 375px) {
  .news__item:first-child .news__text {
    margin-top: 20px;
    line-height: 150%;
  }
}
@media screen and (min-width: 1280px) {
  .news__item:first-child .news__text {
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 375px) {
  .news__item:first-child .news__date {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .news__item:first-child .news__date {
    margin-top: 0;
  }
}
@media screen and (min-width: 375px) {
  .news__item:first-child {
    grid-column: 1/3;
    grid-row: 1/3;
  }
}
@media screen and (min-width: 768px) {
  .news__item:first-child {
    grid-column: 1/5;
    grid-row: 1/3;
  }
}
@media screen and (min-width: 1024px) {
  .news__item:first-child {
    grid-column: 1/2;
    grid-row: 1/3;
    width: auto;
  }
  .news__item:first-child .news__item-image {
    height: 320px;
  }
  .news__item:first-child .news__text {
    max-width: 335px;
  }
}
@media screen and (min-width: 1024px) {
  .news__item:first-child__item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .news__item:first-child__item:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  .news__item:first-child__item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .news__item:first-child__item:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }
}
@media screen and (min-width: 1280px) {
  .news__item:first-child {
    grid-column: 1/2;
    grid-row: 1/3;
    max-width: 510px;
    width: 100%;
  }
  .news__item:first-child .news__item-image {
    height: 320px;
  }
  .news__item:first-child .news__text {
    max-width: 510px;
  }
}
.news__item:not(:first-child) {
  width: 175px;
}
@media screen and (min-width: 375px) {
  .news__item:not(:first-child) {
    width: 158px;
  }
}
@media screen and (min-width: 768px) {
  .news__item:not(:first-child) {
    width: 158px;
  }
}
@media screen and (min-width: 1024px) {
  .news__item:not(:first-child) {
    width: 275px;
  }
}
@media screen and (min-width: 1280px) {
  .news__item:not(:first-child) {
    width: 265px;
  }
}
.news__item:not(:first-child) .news__item-image {
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  height: 100px;
  margin-bottom: 8px;
}
.news__item:not(:first-child) .news__item-image:hover {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .news__item:not(:first-child) .news__item-image {
    height: 158px;
    margin-bottom: 19px;
  }
}
@media screen and (min-width: 1280px) {
  .news__item:not(:first-child) .news__item-image {
    height: 166px;
    margin-bottom: 12px;
  }
}
.news__item:not(:first-child) .news__item-title {
  font-size: 12px;
}
@media screen and (min-width: 1280px) {
  .news__item:not(:first-child) .news__item-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.news__item:not(:first-child) .news__date {
  font-size: 12px;
  margin-top: 10px;
}
@media screen and (min-width: 1280px) {
  .news__item:not(:first-child) .news__date {
    font-size: 14px;
    margin-top: 12px;
  }
}
@media screen and (min-width: 375px) {
  .news__button {
    margin: 40px auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .news__button {
    margin: 35px auto 0;
  }
}
.news__button a {
  text-decoration: none;
}

.news__item {
  position: relative;
}
.news__item a {
  text-decoration: none;
}

/* タグ全体の位置指定 */
.tag {
  position: absolute;
  top: 10px;
  left: -10px;
  z-index: 10;
}
@media screen and (min-width: 375px) {
  .tag {
    top: 4px;
    left: -11px;
  }
}
@media screen and (min-width: 1280px) {
  .tag {
    top: 0px;
    left: -10px;
  }
}

@media screen and (min-width: 375px) {
  .header__tag {
    top: -5px;
    left: -18px;
  }
}
@media screen and (min-width: 1280px) {
  .header__tag {
    top: -10px;
    left: -23px;
  }
}

.top-news__tag {
  position: absolute;
  top: 10px;
  left: -10px;
  z-index: 10;
}
@media screen and (min-width: 375px) {
  .top-news__tag {
    top: 0px;
    left: -9px;
  }
}
@media screen and (min-width: 1280px) {
  .top-news__tag {
    top: 0px;
    left: -10px;
  }
}

.tag__text {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background-color: #382620;
}

.news__item:first-child .tag__text {
  font-size: 16px;
  margin-top: 22px;
}

.news__item:not(:first-child) .tag__text {
  margin-top: 10px;
}

.tag__text::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent #aaa transparent transparent;
  border-style: solid;
  border-width: 0 8px 4px 0;
}

.tag__text::after {
  position: absolute;
  top: 0;
  right: -5px;
  z-index: 1;
  width: 5px;
  height: 100%;
  content: "";
  border-color: #382620 transparent #382620 #382620;
  border-style: solid;
  border-width: 11px 5px 11px 0;
}

.news__item-title .title-pc {
  display: block;
}
@media (max-width: 767px) {
  .news__item-title .title-pc {
    display: none;
  }
}
.news__item-title .title-mobile {
  display: none;
}
@media (max-width: 767px) {
  .news__item-title .title-mobile {
    display: block;
  }
}

.news__text .text-pc {
  display: block;
}
@media (max-width: 767px) {
  .news__text .text-pc {
    display: none;
  }
}
.news__text .text-mobile {
  display: none;
  width: 337px;
}
@media (max-width: 767px) {
  .news__text .text-mobile {
    display: block;
  }
}

.access {
  background-color: #eae0d5;
  position: relative;
}
.access__deco-bread {
  position: absolute;
  aspect-ratio: 177/160;
  z-index: 1;
}
@media screen and (min-width: 375px) {
  .access__deco-bread {
    width: 162px;
    height: 179px;
    right: 0px;
    top: -93px;
  }
}
@media screen and (min-width: 1024px) {
  .access__deco-bread {
    right: 0px;
    top: -160px;
    width: 298px;
    height: 359px;
  }
}
.access__deco-coffee-beans {
  position: absolute;
  aspect-ratio: 296/265;
  z-index: 1;
}
@media screen and (min-width: 375px) {
  .access__deco-coffee-beans {
    width: 128px;
    height: 108px;
    left: -36px;
    bottom: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .access__deco-coffee-beans {
    left: -20px;
    bottom: -115px;
    width: 296px;
    height: 265px;
  }
}
.access__deco-balloon {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 375px) {
  .access__deco-balloon {
    width: 200px;
    height: 172px;
    position: absolute;
    left: -31.562px;
    top: -44.12px;
  }
}
@media screen and (min-width: 768px) {
  .access__deco-balloon {
    width: 200px;
    height: 172px;
    position: absolute;
    left: 130px;
    top: -44.12px;
  }
}
@media screen and (min-width: 1024px) {
  .access__deco-balloon {
    width: 200px;
    height: 172px;
    position: absolute;
    top: -4%;
    left: 24%;
  }
}
@media screen and (min-width: 1024px) {
  .access__deco-balloon {
    top: -6%;
    left: 26.5%;
    width: 233px;
    height: 200.002px;
  }
}
@media screen and (min-width: 1920px) {
  .access__deco-balloon {
    top: -7%;
    left: 36%;
  }
}
.access .inner {
  padding-bottom: 80px;
}
@media screen and (min-width: 375px) {
  .access .inner {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .access .inner {
    padding-top: 80px;
  }
}
.access .section-title {
  z-index: 100;
  line-height: 160%;
}
@media screen and (min-width: 375px) {
  .access .section-title {
    margin-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .access .section-title {
    margin-left: 13px;
    margin-top: -5px;
  }
}
@media screen and (min-width: 1024px) {
  .access .top__section-title {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .access .section-sub-title {
    line-height: 130%;
  }
}
.access__content {
  margin: 40px auto 0;
  position: relative;
  z-index: 100;
}
.access__map {
  max-width: 335px;
  width: 100%;
  align-self: stretch;
  margin: 0 auto 40px;
}
@media screen and (min-width: 375px) {
  .access__map {
    margin: 0 auto 40px;
    height: 180px;
    border: 4px solid #fff;
  }
}
@media screen and (min-width: 768px) {
  .access__map {
    max-width: 688px;
    margin: 0 auto 25px;
    height: 360px;
  }
}
@media screen and (min-width: 1024px) {
  .access__map {
    max-width: 688px;
    margin: 0 auto 25px;
    border: 10px solid #fff;
    height: 360px;
  }
}
@media screen and (min-width: 1280px) {
  .access__map {
    max-width: 688px;
    margin: 0 auto 40px;
    height: 377px;
  }
}
.access__map iframe {
  max-width: 312px;
  width: 100%;
  height: 172px;
}
@media screen and (min-width: 375px) {
  .access__map iframe {
    max-width: 330px;
  }
}
@media screen and (min-width: 768px) {
  .access__map iframe {
    max-width: 668px;
    height: 340px;
  }
}
@media screen and (min-width: 1024px) {
  .access__map iframe {
    max-width: 668px;
    height: 340px;
  }
}
@media screen and (min-width: 1280px) {
  .access__map iframe {
    max-width: 668px;
    height: 360px;
  }
}
.access__info {
  max-width: min(335px, 100vw - 40px);
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .access__info {
    display: flex;
    gap: 40px;
    max-width: 690px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .access__info {
    max-width: 688px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .access__info {
    gap: 45px;
    max-width: 688px;
    margin: 0 auto;
    padding-left: 4px;
  }
}
.access__info-col {
  max-width: 324px;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .access__info-col {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .access__info-col {
    margin-top: 0;
  }
}
.access__info-text-box {
  max-width: 335px;
  margin-bottom: 19px;
  display: flex;
  gap: 24px;
  padding-bottom: 6px;
  align-items: flex-start;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 155%;
  border-bottom: 1px solid #382620;
}
@media screen and (min-width: 375px) {
  .access__info-text-box {
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 768px) {
  .access__info-text-box {
    max-width: 324px;
  }
}
.access__info-text-box:last-child {
  margin-bottom: 0;
}
.access__info-title {
  width: 56px;
}

#footer {
  background: #382620;
}
#footer > .inner {
  padding-top: 0;
  padding-bottom: 20px;
}

.footer-sns {
  width: 105px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .footer-sns {
    gap: 28px;
  }
}
.footer-sns svg {
  fill: #fff;
  transition: fill 0.3s ease;
}

.copy {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  margin-bottom: 2px;
  text-align: center;
}

.shop-access {
  background-color: #f3efeb;
}
.shop-access .inner {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  .shop-access .inner {
    padding-top: 0px;
    max-width: 335px;
    padding-bottom: 155px;
  }
}
@media screen and (min-width: 1024px) {
  .shop-access .inner {
    padding-top: 80px;
    padding-bottom: 32px;
    max-width: 688px;
  }
}
@media screen and (min-width: 375px) {
  .shop-access__content {
    margin: 60px auto 0;
  }
}
@media screen and (min-width: 768px) {
  .shop-access__content {
    margin: 0;
    padding-bottom: 120px;
  }
}
.shop-access__title {
  width: 100%;
  display: flex;
  padding-left: 10px;
  align-items: center;
  align-self: stretch;
  border-left: 6px solid #382620;
  color: #382620;
  font-family: "Noto Serif JP";
  padding-left: 16px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 0;
}
@media screen and (min-width: 375px) {
  .shop-access__title {
    font-size: 18px;
    padding-left: 10px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .shop-access__title {
    font-size: 24px;
    padding-left: 10px;
    margin-bottom: 24px;
  }
}
.shop-access__image {
  max-width: 335px;
  width: 100%;
  align-self: stretch;
  margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
  .shop-access__image {
    max-width: 688px;
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 1024px) {
  .shop-access__image {
    max-width: 688px;
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 1280px) {
  .shop-access__image {
    max-width: 688px;
  }
}
.shop-access__info {
  max-width: 335px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .shop-access__info {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 690px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .shop-access__info {
    flex-direction: row;
    max-width: 688px;
    margin: 0 auto;
    gap: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .shop-access__info {
    max-width: 688px;
    margin: 0 auto;
  }
}
.shop-access__info-col {
  max-width: 335px;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .shop-access__info-col:nth-of-type(2) {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .shop-access__info-col:nth-of-type(2) {
    margin-top: 0;
  }
}
.shop-access__info-text-box {
  max-width: 335px;
  display: flex;
  gap: 24px;
  padding-bottom: 6px;
  align-items: flex-start;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  border-bottom: 1px solid #382620;
}
@media screen and (min-width: 375px) {
  .shop-access__info-text-box {
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 768px) {
  .shop-access__info-text-box {
    max-width: 324px;
    margin-bottom: 20px;
  }
}
.shop-access__info-text-box:last-child {
  margin-bottom: 0;
}
.shop-access__info-title {
  max-width: 56px;
  width: 100%;
}

.grand-menu-page {
  background-color: #f3efeb;
}
@media screen and (min-width: 375px) {
  .grand-menu-page .inner {
    padding: 60px 0 120px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page .inner {
    padding: 80px 0 160px;
  }
}
@media screen and (min-width: 375px) {
  .grand-menu-page .menu-filter {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page .menu-filter {
    margin-bottom: 75px;
  }
}
.grand-menu-page .menu-filter__items {
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 375px) {
  .grand-menu-page .menu-filter__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    gap: 16px 8px;
    max-width: 340px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu-page .menu-filter__items {
    display: flex;
    max-width: 750px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page .menu-filter__items {
    display: flex;
    max-width: 1020px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page .menu-filter__items {
    display: flex;
    gap: 8px;
    max-width: 1000px;
  }
}
.grand-menu-page .menu-filter__item {
  background: #888;
  border: 2px solid #fff;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
  outline: 1px solid #fff;
  outline-offset: -10px;
}
@media screen and (min-width: 375px) {
  .grand-menu-page .menu-filter__item {
    width: 170px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page .menu-filter__item {
    padding: 24px;
    width: 207px;
  }
}
.grand-menu-page .menu-filter__item:hover, .grand-menu-page .menu-filter__item.active {
  background: #382620;
  border-color: 1px solid #fff;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.grand-menu-page .menu-filter__text {
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .grand-menu-page .menu-filter__text {
    font-size: 16px;
  }
}
.grand-menu-page .menu-grid__items {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  width: 1100px;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  .grand-menu-page .menu-grid__items {
    gap: 22px 19px;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu-page .menu-grid__items {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page .menu-grid__items {
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page .menu-grid__items {
    gap: 40px;
    grid-template-columns: repeat(4, 245px);
    justify-content: center;
    width: 1100px;
    margin: 0 auto;
  }
}
.grand-menu-page .menu-grid__item:hover {
  transform: translateY(-4px);
}
.grand-menu-page .menu-grid__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media screen and (min-width: 375px) {
  .grand-menu-page .menu-grid__item img {
    height: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page .menu-grid__item img {
    height: 245px;
  }
}
.grand-menu-page .menu-grid__item-title {
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  margin: 0;
}
@media screen and (min-width: 375px) {
  .grand-menu-page .menu-grid__item-title {
    padding-top: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page .menu-grid__item-title {
    padding-top: 12px;
  }
}
.grand-menu-page .menu-grid__item-category {
  color: #ffffff;
  font-family: "Noto Serif JP";
  font-size: 12px;
  font-weight: 500;
  margin: 8px 16px;
}
@media screen and (min-width: 1024px) {
  .grand-menu-page .menu-grid__item-category {
    font-size: 14px;
    margin: 8px 20px;
  }
}
.grand-menu-page .menu-grid__item-price {
  color: #382620;
  font-family: "Damion";
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  text-align: center;
  line-height: 150%;
}
@media screen and (min-width: 375px) {
  .grand-menu-page .menu-grid__item-price {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page .menu-grid__item-price {
    font-size: 24px;
  }
}

.grand-menu-page__drink-content {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  .grand-menu-page__drink-content {
    margin-top: 43px;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu-page__drink-content {
    max-width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page__drink-content {
    max-width: 960px;
    margin-top: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page__drink-content {
    max-width: 1100px;
    margin-top: 80px;
  }
}
.grand-menu-page__drink-items {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .grand-menu-page__drink-items {
    max-width: 295px;
    margin: 60px auto 0;
    margin-left: 39px;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu-page__drink-items {
    flex-direction: row;
    gap: 24px;
    max-width: 720px;
    margin: 20px auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page__drink-items {
    gap: 48px;
    max-width: 960px;
    margin: 20px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page__drink-items {
    gap: 48px;
    max-width: 1100px;
    margin: 20px auto 0;
  }
}
@media screen and (min-width: 375px) {
  .grand-menu-page__drink-item-2 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu-page__drink-item-2 {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page__drink-item-2 {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page__drink-item-2 {
    display: block;
  }
}
.grand-menu-page__drink-item-2 .grand-menu-page__drink-image {
  display: block;
  max-width: 327px;
  width: 100%;
  height: 327px;
  border: 8px solid #fff;
}
.grand-menu-page__drink-item {
  max-width: 295px;
  width: 100%;
  padding-top: 0px;
}
@media screen and (min-width: 375px) {
  .grand-menu-page__drink-item {
    padding-bottom: 27px;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu-page__drink-item {
    max-width: 190px;
    padding-top: 35px;
  }
  .grand-menu-page__drink-item:nth-of-type(2) {
    margin-left: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page__drink-item {
    max-width: 197px;
    padding-top: 35px;
  }
  .grand-menu-page__drink-item:nth-of-type(2) {
    margin-left: 0px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page__drink-item {
    max-width: 197px;
    padding-top: 0px;
  }
  .grand-menu-page__drink-item:nth-of-type(2) {
    margin-left: 40px;
    padding-top: 0px;
  }
}
.grand-menu-page__drink-image {
  width: 0px;
  height: 0px;
  display: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .grand-menu-page__drink-image {
    display: none;
    max-width: 190px;
    height: 190px;
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page__drink-image {
    display: block;
    max-width: 277px;
    height: 277px;
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page__drink-image {
    display: block;
    max-width: 327px;
    height: 327px;
    width: 100%;
  }
}
.grand-menu-page__drink-item-title {
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  border-bottom: 1px solid #382620;
  margin-bottom: 20px;
  padding-bottom: 6px;
}
.grand-menu-page__drink-text-wrapper {
  display: flex;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.grand-menu-page__drink-item-name {
  max-width: 260px;
  color: #222;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 1024px) {
  .grand-menu-page__drink-item-name {
    max-width: 137px;
  }
}
.grand-menu-page__drink-item-price {
  font-family: "Damion";
  font-weight: 400;
  line-height: 150%;
  font-size: 20px;
}
.grand-menu-page__title {
  max-width: min(335px, 100vw - 40px);
  width: 100%;
  font-size: 25px;
  border-top: 4px double #382620;
  border-bottom: 4px double #382620;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 375px) {
  .grand-menu-page__title {
    padding: 2px 0px 2px 7px;
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu-page__title {
    max-width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page__title {
    max-width: 960px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page__title {
    max-width: 1110px;
    font-size: 24px;
    margin: 0px 70px 0px;
    padding: 7px 0px 7px 25px;
  }
}
.grand-menu-page__items {
  max-width: min(335px, 100vw - 40px);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 375px) {
  .grand-menu-page__items {
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu-page__items {
    max-width: 668px;
    display: flex;
    gap: 34px;
    margin-left: 30px;
    margin-right: 30px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page__items {
    max-width: 960px;
    display: flex;
    gap: 34px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page__items {
    max-width: 1100px;
    display: flex;
    gap: 34px;
    margin-left: 75px;
  }
}
@media screen and (min-width: 375px) {
  .grand-menu-page__item {
    padding-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page__item {
    padding-top: 24px;
  }
}
.grand-menu-page__item-title {
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 10px;
  max-width: 158px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .grand-menu-page__item-title {
    max-width: 277px;
    font-size: 20px;
    margin-top: 12px;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page__item-title {
    max-width: 344px;
    margin-top: 9px;
  }
}
.grand-menu-page__item-price {
  font-family: "Damion";
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}
@media screen and (min-width: 1280px) {
  .grand-menu-page__item-price {
    font-size: 32px;
  }
}
@media screen and (min-width: 375px) {
  .grand-menu-page__button {
    margin: 0 auto;
    max-width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .grand-menu-page__button {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .grand-menu-page__button {
    margin: 42px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .grand-menu-page__button {
    margin: 42px auto 0;
  }
}

#drink-section {
  display: block !important;
}

@media screen and (min-width: 375px) {
  .concept-page .inner {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .concept-page .inner {
    padding: 80px 0 80px;
    max-width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .concept-page .inner {
    padding: 80px 0;
    max-width: 1000px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-page .inner {
    padding: 80px 0 0;
    max-width: 1100px;
  }
}

.concept-page__box {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 auto;
  flex-direction: column;
}
.concept-page__box.is-reverse {
  flex-direction: column-reverse;
}
@media screen and (min-width: 375px) {
  .concept-page__box.is-reverse {
    padding-top: 73px;
  }
}
@media screen and (min-width: 768px) {
  .concept-page__box.is-reverse {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .concept-page__box.is-reverse {
    flex-direction: row;
    padding-top: 130px;
  }
}
@media screen and (min-width: 375px) {
  .concept-page__box {
    gap: 32px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .concept-page__box {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .concept-page__box {
    flex-direction: row;
    max-width: 960px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-page__box {
    gap: 70px;
    flex-direction: row;
    flex-wrap: nowrap;
    padding-bottom: 205px;
    max-width: 1099px;
    width: 100%;
  }
  .concept-page__box:nth-of-type(2) {
    flex-direction: row;
  }
}
.concept-page__box:last-of-type {
  padding-bottom: 80px;
}
@media screen and (min-width: 375px) {
  .concept-page__box:last-of-type {
    padding-bottom: 160px;
  }
}
.concept-page__box h3 {
  color: #222;
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 200%;
}
@media screen and (min-width: 375px) {
  .concept-page__box h3 {
    font-size: 21px;
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-page__box h3 {
    font-size: 28px;
    letter-spacing: 0.2px;
  }
}
.concept-page__box p {
  color: #222;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
}
@media screen and (min-width: 375px) {
  .concept-page__box p {
    max-width: 335px;
    width: 100%;
    padding-top: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-page__box p {
    padding-top: 34px;
    max-width: 389px;
  }
}

.concept-page__text-box {
  max-width: 389px;
  width: 100%;
  padding-top: 140px;
}
@media screen and (min-width: 375px) {
  .concept-page__text-box:nth-of-type(1) {
    padding-top: 60px;
    padding-left: 18px;
  }
  .concept-page__text-box:nth-of-type(2) {
    padding-top: 100px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .concept-page__text-box:nth-of-type(1) {
    padding-top: 0px;
    padding-left: 0px;
  }
  .concept-page__text-box:nth-of-type(2) {
    padding-top: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .concept-page__text-box:nth-of-type(1) {
    padding-top: 140px;
    padding-left: 0px;
  }
  .concept-page__text-box:nth-of-type(2) {
    padding-top: 0px;
    padding-left: 0;
  }
}
@media screen and (min-width: 1280px) {
  .concept-page__text-box:nth-of-type(1) {
    padding-top: 140px;
    padding-left: 0px;
  }
  .concept-page__text-box:nth-of-type(2) {
    padding-top: 100px;
  }
}
.concept-page__text-box.concept-page__text-box--last {
  padding-top: 68px;
}
@media screen and (min-width: 375px) {
  .concept-page__text-box.concept-page__text-box--last {
    padding-top: 65px;
  }
}

.concept-page__image-box-1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
}
@media screen and (min-width: 375px) {
  .concept-page__image-box-1 {
    max-width: 335px;
    width: 100%;
    height: 209px;
    margin: 0 auto;
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .concept-page__image-box-1 {
    gap: 30px;
    max-width: 500px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-page__image-box-1 {
    -moz-text-align-last: 640px;
    gap: 20px;
    max-width: 640px;
  }
}

.concept-page__image-box-1 img:first-child {
  width: 100%;
  height: auto;
  grid-column: 1;
  grid-row: 1;
}

.concept-page__image-second-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  grid-column: 1;
  grid-row: 2;
}
@media screen and (min-width: 1024px) {
  .concept-page__image-second-row {
    gap: 30px;
  }
}
.concept-page__image-second-row img {
  height: auto;
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .concept-page__image-second-row img {
    max-width: 162px;
  }
}
@media screen and (min-width: 1024px) {
  .concept-page__image-second-row img {
    max-width: 310px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-page__image-second-row img {
    max-width: 310px;
  }
}

.concept-page__image-box-2 {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .concept-page__image-box-2 {
    max-width: 284px;
    height: 212px;
    margin-left: 19%;
  }
}
@media screen and (min-width: 768px) {
  .concept-page__image-box-2 {
    max-width: 500px;
    height: 480px;
    margin-left: 13%;
  }
}
@media screen and (min-width: 1024px) {
  .concept-page__image-box-2 {
    max-width: 640px;
    height: 537px;
    margin-left: 13%;
  }
}
@media screen and (min-width: 1280px) {
  .concept-page__image-box-2 {
    max-width: 640px;
    height: 537px;
    margin-left: 9%;
  }
}

.concept-page__image-box-2--top {
  width: 100%;
  z-index: 20;
}
@media screen and (min-width: 375px) {
  .concept-page__image-box-2--top {
    position: static;
    width: 278px;
  }
}
@media screen and (min-width: 768px) {
  .concept-page__image-box-2--top {
    position: absolute;
    top: 0;
    right: 0;
    width: 360px;
  }
}
@media screen and (min-width: 1024px) {
  .concept-page__image-box-2--top {
    position: absolute;
    top: 0;
    right: 0;
    width: 414px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-page__image-box-2--top {
    position: absolute;
    top: 0;
    right: 0;
    width: 540px;
  }
}
.concept-page__image-box-2--top img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.concept-page__image-box-2--bottom {
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 375px) {
  .concept-page__image-box-2--bottom {
    max-width: 183px;
    position: static;
    margin-left: -18%;
    margin-top: -25%;
  }
}
@media screen and (min-width: 768px) {
  .concept-page__image-box-2--bottom {
    position: absolute;
    max-width: 2400px;
    bottom: 95px;
    left: -50px;
  }
}
@media screen and (min-width: 1024px) {
  .concept-page__image-box-2--bottom {
    position: absolute;
    max-width: 280px;
    bottom: 95px;
    left: -50px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-page__image-box-2--bottom {
    position: absolute;
    max-width: 350px;
    bottom: 0;
    left: 0px;
  }
}

.concept-page__image-box-3 {
  width: 100%;
}
@media screen and (min-width: 375px) {
  .concept-page__image-box-3 {
    max-width: 335px;
    height: 210px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .concept-page__image-box-3 {
    max-width: 500px;
    height: 300px;
  }
}
@media screen and (min-width: 1280px) {
  .concept-page__image-box-3 {
    max-width: 640px;
    height: 400px;
  }
}

.news-page {
  padding-bottom: 120px;
  background: #f3efeb;
}
@media screen and (min-width: 375px) {
  .news-page {
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .news-page {
    padding-bottom: 73px;
  }
}
@media screen and (min-width: 1280px) {
  .news-page {
    padding-bottom: 150px;
  }
}
.news-page .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 375px) {
  .news-page .inner {
    flex-direction: column;
    padding: 60px 0 140px;
  }
}
@media screen and (min-width: 768px) {
  .news-page .inner {
    flex-direction: row;
    max-width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .news-page .inner {
    flex-direction: row;
    padding: 0;
    max-width: 980px;
  }
}
@media screen and (min-width: 1280px) {
  .news-page .inner {
    flex-direction: row;
    max-width: 1100px;
  }
}
.news-page .inner.single-news {
  max-width: 688px;
}
.news-page__tag {
  position: absolute;
  top: 10px;
  left: -10px;
  z-index: 10;
}
@media screen and (min-width: 375px) {
  .news-page__tag {
    top: 6px;
    left: -8px;
  }
}
@media screen and (min-width: 1280px) {
  .news-page__tag {
    top: 3px;
    left: -8px;
  }
}
.news-page .tag__text {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background-color: #382620;
}
.news-page__wrapper-left .img-wide {
  overflow: hidden;
}
.news-page__wrapper-left__item-image {
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}
.news-page__wrapper-left__item-image:hover {
  transform: scale(1.05);
}
.news-page__title {
  color: #382620;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  padding: 20px 0;
}
.news-page__date {
  color: #382620;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.news-page__date-2 {
  color: #222;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.5;
  font-size: 12px;
}
.news-page__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  border: none;
}
.news-page__text h4 {
  display: flex;
  max-width: 688px;
  width: 100%;
  height: 36px;
  padding-left: 16px;
  align-items: flex-start;
  border-left: 6px solid #382620;
}
.news-page__text h5 {
  display: flex;
  max-width: 688px;
  width: 100%;
  padding-bottom: 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid #382620;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #382620;
}
.news-page__text h6 {
  color: #382620;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
.news-page__text ul li {
  list-style-type: disc;
}
.news-page__text ol li {
  list-style-type: decimal;
}
.news-page__text li {
  color: #222222;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.news-page__text p {
  color: #222222;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.news-page__items .news-page__text {
  display: none;
}
.news-page__text-bold {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.news-page__text-white-box {
  background: #f8f8f8;
  display: flex;
  max-width: 688px;
  padding: 40px;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  font-family: "Noto Serif JP", serif;
  color: #222222;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 16px;
}
.news-page__image-small {
  margin-top: 16px;
}

.news-page__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 320px) {
  .news-page__items {
    max-width: 270px;
    grid-template-columns: repeat(2, 130px);
    gap: 10px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 375px) {
  .news-page__items {
    grid-template-columns: repeat(2, 158px);
    gap: 24px 18px;
    margin-top: 0px;
    max-width: 335px;
  }
}
@media screen and (min-width: 768px) {
  .news-page__items {
    max-width: 380px;
  }
}
@media screen and (min-width: 1024px) {
  .news-page__items {
    grid-template-columns: repeat(2, 280px);
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    max-width: 990px;
  }
}
@media screen and (min-width: 1280px) {
  .news-page__items {
    grid-template-columns: repeat(2, 340px);
    max-width: 720px;
    gap: 40px 40px;
    max-width: 1100px;
  }
}
.news-page__items .news-page__item {
  width: 100%;
  position: relative;
}
.news-page__items .news-page__item a {
  text-decoration: none;
  border: none;
}
@media screen and (min-width: 375px) {
  .news-page__items .news-page__item {
    max-width: 158px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .news-page__items .news-page__item {
    max-width: 188px;
  }
}
@media screen and (min-width: 1024px) {
  .news-page__items .news-page__item {
    max-width: 340px;
  }
}
@media screen and (min-width: 1280px) {
  .news-page__items .news-page__item {
    max-width: 340px;
  }
}
.news-page__items .news-page__item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media screen and (min-width: 320px) {
  .news-page__items .news-page__item-image {
    height: 99px;
  }
}
@media screen and (min-width: 375px) {
  .news-page__items .news-page__item-image {
    height: 99px;
  }
}
@media screen and (min-width: 1024px) {
  .news-page__items .news-page__item-image {
    height: 213px;
  }
}
@media screen and (min-width: 1280px) {
  .news-page__items .news-page__item-image {
    height: 213px;
  }
}
.news-page__items .news-page__item-title {
  color: #382620;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  border: none !important;
}
@media screen and (min-width: 375px) {
  .news-page__items .news-page__item-title {
    font-size: 12px;
    padding-top: 8px;
  }
}
@media screen and (min-width: 1024px) {
  .news-page__items .news-page__item-title {
    font-size: 16px;
    padding-top: 12px;
  }
}
.news-page__items .news-page__date {
  color: #222222;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 375px) {
  .news-page__items .news-page__date {
    font-size: 12px;
    padding-top: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .news-page__items .news-page__date {
    font-size: 14px;
    padding-top: 13px;
  }
}
@media screen and (min-width: 1280px) {
  .news-page__items .news-page__date {
    font-size: 14px;
  }
}

.news-page__wrapper-right-1 {
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 320px) {
  .news-page__wrapper-right-1 {
    max-width: min(300px, 100vw - 40px);
    margin: 0 auto;
  }
}
@media screen and (min-width: 375px) {
  .news-page__wrapper-right-1 {
    max-width: min(335px, 100vw - 40px);
    height: 565px;
    margin: 0 auto;
    padding: 12px 20px 20px;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .news-page__wrapper-right-1 {
    height: 571px;
    max-width: min(310px, 100vw - 40px);
    height: 660px;
  }
}
@media screen and (min-width: 1024px) {
  .news-page__wrapper-right-1 {
    padding-top: 7px;
    max-width: 320px;
    padding: 20px;
    margin: 80px 0 0;
    gap: 20px;
    font-size: 14px;
    height: 571px;
  }
}
.news-page__wrapper-right-1 h3 {
  font-weight: 700;
  line-height: 1.5;
  color: #382620;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  margin: 0;
}
@media screen and (min-width: 320px) {
  .news-page__wrapper-right-1 h3 {
    font-size: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 375px) {
  .news-page__wrapper-right-1 h3 {
    font-size: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .news-page__wrapper-right-1 h3 {
    padding-top: 0px;
    padding-bottom: 20px;
  }
}
.news-page__wrapper-right-1 .news-page__item a {
  max-width: 280px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.news-page__wrapper-right-1 .news-page__item-right-text {
  /* もしここに margin や padding があれば調整 */
  display: flex;
  flex-direction: column; /* 中身を縦並びにする */
  justify-content: center; /* 箱の中でも念のため真ん中寄せ */
  gap: 10px;
}
.news-page__wrapper-right-1 .news-page__item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center center;
}
.news-page__wrapper-right-1 .news-page__item-right-title {
  overflow: hidden;
  color: #222222;
  text-overflow: ellipsis;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
  width: 166px;
  line-height: 150%;
}
.news-page__wrapper-right-1 .news-page__text {
  display: none;
}

.news-page__item a {
  text-decoration: none;
}

.news-page__wrapper-right-2 {
  width: 320px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 87px;
}
@media screen and (min-width: 320px) {
  .news-page__wrapper-right-2 {
    width: 300px;
    margin: 20px auto;
  }
}
@media screen and (min-width: 375px) {
  .news-page__wrapper-right-2 {
    margin: 60px auto 0;
    width: 335px;
    padding: 20px 20px 10px;
  }
}
@media screen and (min-width: 768px) {
  .news-page__wrapper-right-2 {
    margin: 20px auto;
    width: 310px;
    padding: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .news-page__wrapper-right-2 {
    margin: 60px auto;
    width: 320px;
  }
}
@media screen and (min-width: 1280px) {
  .news-page__wrapper-right-2 {
    width: 335px;
  }
}
.news-page__wrapper-right-2 h3 {
  color: #222222;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.news-page__wrapper-right-2 li {
  color: #222222;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  border: none !important;
}
.news-page__wrapper-right-2 li a {
  text-decoration: none;
  border: none;
}

.news-page__wrapper-right-2--border {
  width: 32px;
  height: 1px;
  background: #222222;
}

@media screen and (min-width: 375px) {
  .news__pagination {
    padding-top: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .news__pagination {
    padding-top: 55px;
  }
}
@media screen and (min-width: 1280px) {
  .news__pagination {
    padding-top: 55px;
  }
}
.news__pagination .page-numbers {
  display: flex;
  padding: 8px 15px;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
  gap: 12px;
  width: 173px;
}
.news__pagination .page-numbers li {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid #382620;
  background: #fff;
}
.news__pagination .page-numbers li:has(.current), .news__pagination .page-numbers li:has(span.current) {
  background: #382620;
  color: #fff;
  border-radius: 20px;
}
.news__pagination .page-numbers li:has(.current) span,
.news__pagination .page-numbers li:has(.current) a, .news__pagination .page-numbers li:has(span.current) span,
.news__pagination .page-numbers li:has(span.current) a {
  color: #fff;
}
.news__pagination .page-numbers li:not(.current):hover {
  border-radius: 20px;
  background: rgba(56, 38, 32, 0.1);
}

.news-page-detail {
  background: #f3efeb;
}
.news-page-detail .inner {
  max-width: 375px;
}
@media screen and (min-width: 1280px) {
  .news-page-detail .inner {
    max-width: 688px;
  }
}
.news-page-detail__content {
  margin: 43px auto 0;
  width: 335px;
}
@media screen and (min-width: 1280px) {
  .news-page-detail__content {
    width: 688px;
    margin: 0 auto;
  }
}
.news-page-detail__content img {
  width: 335px;
  height: 176px;
}
@media screen and (min-width: 1280px) {
  .news-page-detail__content img {
    width: 688px;
    height: 361px;
  }
}
.news-page-detail .news-page-detail__title {
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  padding: 20px 0 14px;
}
@media screen and (min-width: 1280px) {
  .news-page-detail .news-page-detail__title {
    font-size: 28px;
  }
}
.news-page-detail .news-page-detail__text {
  gap: 0;
}
.news-page-detail .news-page-detail__date {
  color: #382620;
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 150%;
  font-size: 14px;
}
.news-page-detail h2 {
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  border-left: 6px solid #382620;
  padding-left: 10px;
  margin-top: 40px;
}
@media screen and (min-width: 1280px) {
  .news-page-detail h2 {
    font-size: 24px;
  }
}
.news-page-detail p {
  margin-top: 14px;
  font-size: 14px;
  color: #222;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
}
@media screen and (min-width: 1280px) {
  .news-page-detail p {
    margin-top: 16px;
    font-size: 16px;
  }
}
.news-page-detail blockquote {
  background: #f8f8f8;
  display: flex;
  width: 335px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  margin-top: 14px;
}
@media screen and (min-width: 1280px) {
  .news-page-detail blockquote {
    padding: 40px;
    width: 688px;
    gap: 16px;
    margin-top: 16px;
  }
}
.news-page-detail blockquote p {
  margin-top: 0;
}
.news-page-detail blockquote p:nth-of-type(2) {
  color: #222;
  text-align: right;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
}
.news-page-detail h3 {
  font-size: 16px;
  margin-top: 40px;
  color: #382620;
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 150%;
  padding-bottom: 12px;
  border-bottom: 1px solid #382620;
}
@media screen and (min-width: 1280px) {
  .news-page-detail h3 {
    font-size: 20px;
  }
}
.news-page-detail p img {
  height: 122px;
}
@media screen and (min-width: 1280px) {
  .news-page-detail p img {
    height: 250px;
  }
}
.news-page-detail h4 {
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 40px;
  border: none;
  padding-left: 0;
  margin-bottom: 10px;
}
@media screen and (min-width: 1280px) {
  .news-page-detail h4 {
    font-size: 16px;
  }
}
.news-page-detail ul {
  padding-left: 21px;
  color: #222;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
}
@media screen and (min-width: 1280px) {
  .news-page-detail ul {
    font-size: 16px;
    padding-left: 25px;
    padding-top: 18px;
  }
}
.news-page-detail ol {
  padding-top: 10px;
  padding-left: 21px;
  color: #222;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
}
@media screen and (min-width: 1280px) {
  .news-page-detail ol {
    font-size: 16px;
    padding-left: 25px;
  }
}

.related-posts {
  background: #f3efeb;
}
.related-posts .inner {
  max-width: 335px;
  padding-top: 100px;
  padding-bottom: 160px;
}
@media screen and (min-width: 1280px) {
  .related-posts .inner {
    max-width: 688px;
    padding-top: 40px;
  }
}

.related-title {
  color: #382620;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 40px;
}
@media screen and (min-width: 1280px) {
  .related-title {
    font-size: 28px;
    margin-bottom: 60px;
  }
}

.related-grid {
  display: flex;
  gap: 19px;
}
@media screen and (min-width: 1280px) {
  .related-grid {
    gap: 40px;
  }
}

.related-card {
  position: relative;
}

.related-thumb img {
  width: 158px;
}
@media screen and (min-width: 1280px) {
  .related-thumb img {
    width: 202px;
  }
}

.related-card-title {
  color: #222;
  text-overflow: ellipsis;
  font-family: "Noto Serif JP";
  font-size: 12px;
  font-weight: 700;
  line-height: 150%; /* 24px */
  margin-top: 12px;
  width: 155px;
  margin-bottom: 6px;
}
@media screen and (min-width: 1280px) {
  .related-card-title {
    width: 202px;
    font-size: 16px;
  }
}

.related-date {
  color: #222;
  font-family: "Noto Serif JP";
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  margin-top: 12px;
}
@media screen and (min-width: 1280px) {
  .related-date {
    font-size: 14px;
  }
}

.related-tag {
  position: absolute;
  top: 10px;
  left: -10px;
  z-index: 10;
}
@media screen and (min-width: 375px) {
  .related-tag {
    top: 4px;
    left: -11px;
  }
}
@media screen and (min-width: 1280px) {
  .related-tag {
    top: 7px;
    left: -8px;
  }
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  padding-top: 35px;
  align-items: center;
  width: 335px;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .post-navigation {
    width: 688px;
    padding-top: 40px;
  }
}

.nav-prev {
  color: #382620;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 1280px) {
  .nav-prev {
    font-size: 16px;
  }
}

.nav-next {
  width: 70px;
}
@media screen and (min-width: 1280px) {
  .nav-next {
    width: 80px;
  }
}

.nav-list {
  display: flex;
  height: 47px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #382620;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  border: 1px solid #382620;
  width: 128px;
}
@media screen and (min-width: 1280px) {
  .nav-list {
    font-size: 16px;
    width: 136px;
  }
}

@media screen and (min-width: 375px) {
  .product-items-page .inner {
    padding: 60px 0 160px;
  }
}
@media screen and (min-width: 1280px) {
  .product-items-page .inner {
    padding: 80px 0 160px;
  }
}

.product-grid {
  display: grid;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    max-width: 335px;
  }
}
@media screen and (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
  }
}
@media screen and (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 40px 40px;
    max-width: 1100px;
  }
}

.large-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .large-item {
    grid-row: 1/3;
    grid-column: 1/3;
    max-width: 335px;
  }
}
@media screen and (min-width: 1024px) {
  .large-item {
    grid-column: 1/3;
    grid-row: 1/3;
    max-width: 450px;
  }
}
@media screen and (min-width: 1280px) {
  .large-item {
    grid-column: 1/3;
    grid-row: 1/3;
    max-width: 530px;
  }
}

@media screen and (min-width: 375px) {
  .product-item:nth-child(2),
  .product-item:nth-child(3),
  .product-item:nth-child(4),
  .product-item:nth-child(5),
  .product-item:nth-child(6),
  .product-item:nth-child(7),
  .product-item:nth-child(8),
  .product-item:nth-child(9) {
    max-width: 158px;
  }
}
@media screen and (min-width: 1024px) {
  .product-item:nth-child(2),
  .product-item:nth-child(3),
  .product-item:nth-child(4),
  .product-item:nth-child(5),
  .product-item:nth-child(6),
  .product-item:nth-child(7),
  .product-item:nth-child(8),
  .product-item:nth-child(9) {
    max-width: 200px;
  }
}
@media screen and (min-width: 1280px) {
  .product-item:nth-child(2),
  .product-item:nth-child(3),
  .product-item:nth-child(4),
  .product-item:nth-child(5),
  .product-item:nth-child(6),
  .product-item:nth-child(7),
  .product-item:nth-child(8),
  .product-item:nth-child(9) {
    max-width: 245px;
  }
}
@media screen and (min-width: 1280px) and (min-width: 375px) {
  .product-item:nth-child(2) {
    grid-column: 1;
    grid-row: 3;
  }
}
@media screen and (min-width: 1280px) and (min-width: 1280px) {
  .product-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }
}
@media screen and (min-width: 1280px) and (min-width: 375px) {
  .product-item:nth-child(3) {
    grid-column: 2;
    grid-row: 3;
  }
}
@media screen and (min-width: 1280px) and (min-width: 1280px) {
  .product-item:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
  }
}
@media screen and (min-width: 1280px) and (min-width: 375px) {
  .product-item:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }
}
@media screen and (min-width: 1280px) and (min-width: 1280px) {
  .product-item:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }
}
@media screen and (min-width: 1280px) and (min-width: 375px) {
  .product-item:nth-child(5) {
    grid-column: 2;
    grid-row: 4;
  }
}
@media screen and (min-width: 1280px) and (min-width: 1280px) {
  .product-item:nth-child(5) {
    grid-column: 4;
    grid-row: 2;
  }
}
@media screen and (min-width: 1280px) and (min-width: 375px) {
  .product-item:nth-child(6) {
    grid-column: 1;
    grid-row: 5;
  }
}
@media screen and (min-width: 1280px) and (min-width: 1280px) {
  .product-item:nth-child(6) {
    grid-column: 1;
    grid-row: 3;
  }
}
@media screen and (min-width: 1280px) and (min-width: 375px) {
  .product-item:nth-child(7) {
    grid-column: 2;
    grid-row: 5;
  }
}
@media screen and (min-width: 1280px) and (min-width: 1280px) {
  .product-item:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
  }
}
@media screen and (min-width: 1280px) and (min-width: 375px) {
  .product-item:nth-child(8) {
    grid-column: 1;
    grid-row: 6;
  }
}
@media screen and (min-width: 1280px) and (min-width: 1280px) {
  .product-item:nth-child(8) {
    grid-column: 3;
    grid-row: 3;
  }
}
@media screen and (min-width: 1280px) and (min-width: 375px) {
  .product-item:nth-child(9) {
    grid-column: 2;
    grid-row: 6;
  }
}
@media screen and (min-width: 1280px) and (min-width: 1280px) {
  .product-item:nth-child(9) {
    grid-column: 4;
    grid-row: 3;
  }
}
.large-item .product-item__title {
  color: #222;
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 375px) {
  .large-item .product-item__title {
    font-size: 20px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .large-item .product-item__title {
    font-size: 24px;
  }
}

.product-item__title {
  color: #222;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 8px;
}

.large-item .product-item__price {
  color: #222;
  text-align: center;
  font-family: Damion;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
}
@media screen and (min-width: 375px) {
  .large-item .product-item__price {
    font-size: 30px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .large-item .product-item__price {
    font-size: 32px;
  }
}

.product-item__price {
  color: #222;
  text-align: center;
  font-family: Damion;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  margin-top: 8px;
}

.large-item .product-item__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #382620;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .large-item .product-item__button {
    max-width: 133px;
    font-size: 12px;
    padding: 6px 12px;
    margin: 0px auto;
  }
}
@media screen and (min-width: 1280px) {
  .large-item .product-item__button {
    margin: 8px auto 0;
    max-width: 175px;
    padding: 8px 24px;
    font-size: 14px;
  }
}

.product-item__button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #382620;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .product-item__button {
    max-width: 133px;
    font-size: 12px;
    padding: 6px 12px;
    margin: 8px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .product-item__button {
    margin: 8px auto 0;
    max-width: 175px;
    padding: 8px 24px;
    font-size: 14px;
  }
}

.product-item__wrapping-box {
  display: flex;
  width: 100%;
  border: 4px solid #382620;
  background: #fff;
  outline: 1px solid #382620;
  outline-offset: -10px;
}
@media screen and (min-width: 375px) {
  .product-item__wrapping-box {
    max-width: 335px;
    height: 508px;
    flex-direction: column;
    padding: 33px 36px;
    gap: 34px;
    margin: 60px auto 0;
  }
}
@media screen and (min-width: 768px) {
  .product-item__wrapping-box {
    flex-direction: row;
    max-width: 700px;
    height: 440px;
    padding: 79px 60px;
    gap: 60px;
    margin: 110px auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .product-item__wrapping-box {
    flex-direction: row;
    max-width: 1000px;
    height: 440px;
    padding: 79px 60px;
    gap: 60px;
    margin: 110px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .product-item__wrapping-box {
    flex-direction: row;
    max-width: 1100px;
    height: 458px;
    padding: 75px 56px;
    gap: 60px;
    margin: 100px auto 0;
  }
}

@media screen and (min-width: 375px) {
  .product-item__wrapping-text {
    width: 255px;
    margin-top: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .product-item__wrapping-text {
    width: 400px;
  }
}
@media screen and (min-width: 1280px) {
  .product-item__wrapping-text {
    width: 460px;
    margin-top: 36px;
  }
}
.product-item__wrapping-text h3 {
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 375px) {
  .product-item__wrapping-text h3 {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .product-item__wrapping-text h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .product-item__wrapping-text h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  .product-item__wrapping-text h3 {
    font-size: 24px;
  }
}
.product-item__wrapping-text p {
  color: #222;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
}
@media screen and (min-width: 375px) {
  .product-item__wrapping-text p {
    font-size: 14px;
    padding-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .product-item__wrapping-text p {
    font-size: 14px;
    padding-top: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .product-item__wrapping-text p {
    font-size: 16px;
    padding-top: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .product-item__wrapping-text p {
    font-size: 16px;
    padding-top: 30px;
  }
}

.product-item__wrapping-image {
  width: 100%;
}
@media screen and (min-width: 375px) {
  .product-item__wrapping-image {
    max-width: 255px;
    height: 166px;
  }
}
@media screen and (min-width: 1024px) {
  .product-item__wrapping-image {
    max-width: 400px;
    height: 260px;
  }
}
@media screen and (min-width: 1280px) {
  .product-item__wrapping-image {
    max-width: 460px;
    height: 300px;
  }
}

.contact-page {
  background-color: #f3efeb;
}
.contact-page .inner {
  width: 100%;
}
@media screen and (min-width: 375px) {
  .contact-page .inner {
    max-width: min(375px, 100% - 40px);
    padding: 60px 0 130px;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .inner {
    max-width: 688px;
    padding: 80px 0 125px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-page .inner {
    max-width: 688px;
    padding: 80px 0 125px;
  }
}
@media screen and (min-width: 1280px) {
  .contact-page .inner {
    max-width: 688px;
    padding: 80px 0 135px;
  }
}
.contact-page .contact__section-title {
  color: #382620;
  text-align: center;
  font-family: "Noto Serif JP";
  font-weight: 700;
  line-height: 150%;
  padding-bottom: 20px;
}
@media screen and (min-width: 375px) {
  .contact-page .contact__section-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-page .contact__section-title {
    font-size: 28px;
    padding-bottom: 24px;
  }
}
.contact-page .contact__sub-title {
  color: #382620;
  font-family: "Noto Serif JP";
  font-weight: 500;
  line-height: 200%;
}
@media screen and (min-width: 375px) {
  .contact-page .contact__sub-title {
    font-size: 14px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-page .contact__sub-title {
    font-size: 16px;
    padding-bottom: 80px;
  }
}
.contact-page .contact__radio-box {
  display: flex;
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  padding-bottom: 36px;
}
@media screen and (min-width: 375px) {
  .contact-page .contact__radio-box {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .contact-page .contact__radio-box {
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
  .contact-page .contact__radio-box {
    padding-bottom: 40px;
  }
}
.contact-page .contact__radio {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 375px) {
  .contact-page .contact__radio {
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-page .contact__radio {
    gap: 10px;
  }
}
.contact-page input[type=radio i] {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 0;
  appearance: none;
  border: 1px solid #000;
  position: relative;
  vertical-align: middle;
}
.contact-page input[type=radio i]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #f07317;
  width: 12px;
  height: 12px;
}
.contact-page .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.contact-page .wpcf7-list-item-label {
  vertical-align: top;
  margin-left: 5px;
}
.contact-page .contact__text-box {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 375px) {
  .contact-page .contact__text-box {
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .contact-page .contact__text-box {
    gap: 40px;
  }
}

.wpcf7-form-control-wrap {
  margin-top: -6px;
}

.submit-container {
  margin: 0 auto;
}

/* 送信ボタン本体のスタイル */
.submit__button {
  /* 1. 形とサイズ */
  position: relative;
  display: inline-block;
  display: flex;
  width: 290px;
  padding: 24px 0;
  justify-content: center;
  align-items: center;
  background: #222;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 16px;
}
.submit__button::before {
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  right: -6px;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  transition: transform 0.2s ease-in-out;
}
.submit__button::after {
  content: "";
  display: block;
  position: absolute;
  right: 22px;
  top: 24px;
  width: 16px;
  height: 24px;
  background-image: url("../img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out;
}
.submit__button:hover {
  transform: translate(2px, 2px);
}
.submit__button:hover::before {
  transform: translate(-6px, -6px);
}
.submit__button:hover::after {
  transform: translate(-6px, -6px);
}

/* 入力欄（input / textarea）そのものにデザインを当てる */
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
  /* ここに枠線や背景のデザインを集約する */
  width: 100%;
  height: auto;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #382620; /* 枠線 */
  background: #fff; /* 背景色 */
  /* フォント調整 */
  font-size: 16px;
  color: #382620;
  outline: none; /* クリック時の青い枠線を消す */
  appearance: none; /* スマホでのデフォルト装飾をリセット */
  /* 角丸の崩れ防止 */
  box-sizing: border-box;
}
@media screen and (min-width: 375px) {
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=email],
  .wpcf7-form input[type=tel],
  .wpcf7-form textarea {
    width: 335px;
  }
}
@media screen and (min-width: 1024px) {
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=email],
  .wpcf7-form input[type=tel],
  .wpcf7-form textarea {
    width: 490px;
  }
}
.wpcf7-form textarea {
  resize: vertical; /* 縦方向だけリサイズ許可（任意） */
}
@media screen and (min-width: 375px) {
  .wpcf7-form textarea {
    height: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .wpcf7-form textarea {
    height: 238px;
  }
}

.contact__tag {
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 11px;
  font-weight: 700;
  line-height: 150%;
  width: 34px;
  height: 19px;
  padding: 1px 6px;
  gap: 10px;
  border-radius: 2px;
  background: #f07317;
  margin-left: 8px;
}

.contact__field {
  display: flex;
}
@media screen and (min-width: 375px) {
  .contact__field {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .contact__field {
    flex-direction: row;
    align-items: center;
  }
  .contact__field:nth-of-type(4) {
    align-items: flex-start; /* テキストエリアのときは上揃えにする */
  }
}

.contact__title {
  display: inline-block; /* 文字をブロック要素にして改行させる */
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  width: 100%;
  width: 200px;
}
@media screen and (min-width: 375px) {
  .contact__title {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .contact__title {
    margin-bottom: 8px; /* 入力欄との隙間 */
  }
}

.contact__title-top {
  display: inline-block; /* 文字をブロック要素にして改行させる */
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  width: 100%;
  width: 200px;
}
@media screen and (min-width: 375px) {
  .contact__title-top {
    margin-bottom: px;
  }
}
@media screen and (min-width: 1024px) {
  .contact__title-top {
    margin-bottom: 8px; /* 入力欄との隙間 */
  }
}

.contact__privacy {
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (min-width: 375px) {
  .contact__privacy {
    margin-top: -7px;
  }
}
@media screen and (min-width: 1280px) {
  .contact__privacy {
    margin-top: -7px;
  }
}

.contact__big-text {
  color: #382620;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 28px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  margin-bottom: 20px;
}

.contact__small-text {
  color: #382620;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  text-align: center;
  padding-bottom: 160px;
}

/*# sourceMappingURL=style.css.map */
