@charset "UTF-8";
/* 
* {
  outline: 1px solid red;
} */


:root {
  /* 色管理用の変数 */
  --black-color: #170303;
  --blue-color: #001c2b;
  --white-color: #fff;
  --white-color02: #fafafa;
  --beige-color: #f9f0e1;
  --beige-color02: #d8d1bf;
  --primary-color: #b58f4c;
  --accent-color: #c27c5a;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

body {
  color: var(--black-color);
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
/* 英語の文字は→『font-family: "Alegreya", serif;』 */

/* ---------- utility ---------- */

/* タイトル */
.title {
  padding-top: 64px;
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .title {
    padding-top: 100px; /* 上の余白を少し増加 */
  }
}

.subtitle {
  font-size: 24px; /* フォントサイズを維持 */
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Alegreya", serif;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .subtitle {
    line-height: 1.5; /* 読みやすさ向上 */
    color: #001c2b;
    margin-bottom: 0px; /* 下の余白を調整 */
    font-size: 32px;
  }
}

.subtitle::after {
  content: "";
  position: absolute;
  left: 50%; /* 水平方向の中央揃え */
  bottom: -12px; /* 線と文字の間隔を調整 */
  transform: translateX(-50%);
  width: 100px; /* 下線の幅を固定 */
  height: 1px; /* 線の太さ */
  background-color: #001c2b; /* 線の色 */
}

@media screen and (min-width: 768px) {
  .subtitle::after {
    width: 160px; /* 線の幅を広げる */
    bottom: -16px; /* 線と文字の間隔を画面サイズに応じて調整 */
  }
}

.title_caption {
  display: block;

  font-size: 14px; /* フォントサイズを維持 */
  color: #001c2b;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .title_caption {
    font-size: 24px;
  }
}
/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 64px 0;
}

/* header */

.l_header {
  width: 100%;
  padding: 16px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .l_header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l_header-logo {
  font-size: 20px;
  font-weight: bold;
  color: var(--white-color);
  height: 50px;
  width: 50px;
}

.l_header-logo_link {
  height: 100%;
  display: block;
}

.l_header-logo_img {
  width: 100%;
  height: 100%;
}

.l_header-nav {
  display: none;
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    display: block;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
}

.l_header-nav_item {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.l_header-nav_item:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item:not(:first-child) {
    margin-top: 0;
  }
}

.top_kv_btn-wrapper {
  width: 264px;
  height: 60px;
  margin: 40px auto 0;
}

.top_kv-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.top_kv-scroll_txt {
  font-size: 12px;
  font-weight: bold;
  color: var(--white-color);
  text-align: center;
}

.top_kv-scroll_arrow {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 8px auto 0;
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

.m_hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: var(--z-index-menu);
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background: var(--white-color);
  left: 50%;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

/* footer */
.l_footer {
  background-image: url(../img/01_top/footerSPback.png);
  width: 100%;
  min-height: 150px;
  background-size: cover;
  object-fit: cover;
}

.l_footer-logo {
  width: 44px;
  height: 44px;
}

.l_footer-content {
  padding-top: 34px;
  text-align: center;
}

.l_footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.l_footer-brand_title {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 10%;
  line-height: 43.3px;
  margin-top: 34px;
}

.l_footer-logo_black {
  width: 45px;
  height: 45px;
  margin-top: 34px;
}
@media screen and (min-width: 1080px) {
  .l_footer-logo_black {
    width: 135px;
    height: 135px;
  }
}
.l_footer-copy {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 10%;
  line-height: 25.2px;
  padding-top: 7px;
}

.l_footer-nav_list {
  padding: 0 16px;
  height: 64px;
  display: flex;
  color: white;
  justify-content: center;
  margin: 0 auto;
}

.l_footer-nav_item {
  font-weight: bold;
}

.l_footer-nav_item:not(:first-child) {
  margin-left: 8px;
}

.l_footer-nav_link {
  font-weight: bold;
  font-size: 14px;
  line-height: 24.4px;
  font-family: "Alegreya", serif;
  padding-top: 4px;
}

/* ボタン */

.btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.btn_input {
  padding: 5.5px 18px;
  transition: 0.3s;
  color: var(--white-color);
  background: var(--accent-color);
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .btn_input {
    padding: 10px 24px; /* ボタンを大きくするために内側の余白を増加 */
    font-size: 16px; /* フォントサイズを大きくする */
    border-radius: 6px; /* ボタンの角丸を少し大きく */
  }
}

.btn_input:hover {
  background-color: #b8a994;
}

.top_story_btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_story_btn_input {
  padding: 5.5px 18px;
  transition: 0.3s;
  color: var(--accent-color);
  background: var(--white-color);
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .top_story_btn_input {
    padding: 10px 24px; /* ボタンを大きくするために内側の余白を増加 */
    font-size: 16px; /* フォントサイズを大きくする */
    border-radius: 6px; /* ボタンの角丸を少し大きく */
  }
}

.top_story_btn:hover {
  background-color: var(--white-color);
}

/* ---------- top ---------- */
/* topの人はここから書いてください */

.top_kv {
  height: 100vh;
}

.top_kv-inner {
  position: relative;
  height: 100%;
}

.top_kv_img-link {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.top_kv_box {
  width: 100%;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white-color02);
  font-size: 16px;
}

@media screen and (min-width: 1080px) {
  .top_kv_box {
    font-size: 24px;
  }
}

.top_kv_sample-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

.l_toppage_chara-title {
  font-size: 16px;
  letter-spacing: 0;
  color: var(--white-color02);
  position: absolute; /* 親要素内での絶対位置 */
  bottom: 10%; /* 下から10%の位置に配置（調整可能） */
  left: 50%; /* 中央寄せの基点 */
  transform: translateX(-50%); /* 完全に中央寄せ */
  text-align: center;
  margin: 0; /* 不要な余白を削除 */
  width: 90%; /* テキストの幅を制限（スマホで横に広がりすぎないように） */
  word-break: break-word; /* 長い単語で改行を許可 */
}

@media screen and (min-width: 1080px) {
  .l_toppage_chara-title {
    font-size: 32px;
    bottom: 5%; /* デスクトップ時の調整（必要に応じて変更） */
  }
}

.news {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #d8d1bf;
  padding-top: 32px;
  width: 100%;
}

.news-container {
  padding: 32px;
  padding-bottom: 40px;
  text-align: center;
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.news-tag {
  width: 57px;
  height: 22px;
  font-size: 8px;
  font-weight: bold;
  color: #001c2b;
  background-color: transparent;
  border: 1px solid #000;
  padding: 0px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  margin-right: 8px;
}

.news-date {
  font-size: 12px;
  margin: 0;
  color: #000;
}

.news-text {
  font-size: 14px;
  margin-top: 4px;
  text-align: left;
}

.news-item {
  margin: 32px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #001c2b;
}


.toppage-story {
  background-image: url(../img/01_top/back2.png);
  opacity: 0.8;
  padding: 16px;
  padding-bottom: 40px;
  text-align: center;
}

.top_story_detail {
  margin: 32px 32px;
  text-align: center;
  font-size: 14px;
  line-height: 32.4px;
  letter-spacing: 0;
  color: #001c2b;
}

@media screen and (min-width: 768px) {
  .top_story_detail {
    line-height: 32.4px;
    letter-spacing: 0.1em;
    font-size: 18px;
    text-shadow: var(--white-color02) 0 3px 6px;
    padding: 32px;
  }
}

.toppage-menu {
  position: relative;
  background-image: url(../img/01_top/MenuBack.png);
  background-size: cover;
  background-position: center;
  height: 150px;
}

@media screen and (min-width: 1080px) {
  .toppage-menu {
    height: 300px; /* 高さを増やして背景画像をより見やすく */
    background-size: cover; /* 背景画像が崩れないように設定 */
  }
}
.menu-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* 縦方向中央揃え */
}

.menu-overlay {
  position: absolute; /* 絶対位置を指定 */
  top: 50%; /* 親要素の高さの50% */
  left: 50%; /* 親要素の幅の50% */
  transform: translate(-50%, -50%); /* 中央に配置 */
  background-color: rgba(0, 0, 0, 0.5); /* 黒色の半透明 */
  width: 80%; /* 横幅を親要素の80%に設定 */
  max-width: 1200px; /* 必要なら最大幅を設定 */
  padding: 16px; /* 内側の余白を調整 */
  border-radius: 8px; /* 長方形の角を丸める */
  text-align: center; /* テキストを中央揃え */
}

@media screen and (min-width: 1080px) {
  .menu-overlay {
    width: 60%; /* 横幅を広げて情報を見やすく */
    padding: 32px; /* 内側の余白を増加 */
    border-radius: 12px; /* 角を少し丸める */
  }
}

.menu-subtitle {
  color: #fff; /* 上書きして白文字に変更 */
}

@media screen and (min-width: 1080px) {
  .menu-subtitle {
    font-size: 36px; /* サブタイトルの文字を大きく */
    margin-bottom: 16px; /* 下のキャプションとの間隔を調整 */
  }
}

.menu-subtitle::after {
  background-color: #fff !important; /* 強制的に白色にする */
}

@media screen and (min-width: 768px) {
  .menu-subtitle::after {
    margin-top: 24px;
    width: 200px; /* 線の幅 */
  }
}

.menu-subtitle {
  color: #fff !important; /* 強制的に白色にする */
}

@media screen and (min-width: 1080px) {
  .menu-subtitle::after {
    margin-top: 16px; /* 線と文字の間隔を調整 */
    width: 240px; /* 線の幅を広げる */
  }
}

.menu-caption {
  color: #fff !important;
}

@media screen and (min-width: 1080px) {
  .menu-caption {
    font-size: 18px; /* キャプションを少し大きく */
  }
}

/* Morningメニューとランチメニュー */
/* メニューセクションのデザイン */
.menu-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0; /* 上下の余白を少なく調整 */
  background-color: #d8d1bf; /* 背景色 */
}

.menu-container {
  display: flex;
  gap: 24px; /* メニュー間の余白を少し縮める */
}

@media screen and (min-width: 1080px) {
  .menu-container {
    width: 100%; /* 画面全体に広げる */
    margin: 0 auto; /* 中央揃え */
    gap: 40px; /* メニュー間の余白を調整 */
    display: flex;
    justify-content: space-around; /* 項目を画面幅いっぱいに均等配置 */
  }
}

.menu-item {
  position: relative;
  width: 146px; /* 写真の幅 */
  height: 70px; /* 写真の高さ */
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 1080px) {
  .menu-item {
    width: 45%; /* 各メニュー項目を画面幅の45%に設定 */
    height: 300px; /* 高さを増加してインパクトを強調 */
    border-radius: 16px; /* 柔らかい角丸デザイン */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4); /* 影をさらに強調 */
    position: relative;
  }
}

.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .menu-item img {
    width: 100%; /* 幅を完全に親要素に合わせる */
    height: 100%; /* 高さも親要素に合わせる */
    object-fit: cover; /* 画像のアスペクト比を崩さない */
  }
}

.morningmenu-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 写真の中央に配置 */
  color: white;
  font-size: 20px; /* 文字サイズ */
  font-weight: bold;
  text-align: center; /* テキストを中央揃え */
  line-height: 1; /* 上下の間隔を縮める */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 1080px) {
  .morningmenu-title {
    font-size: 32px; /* 文字サイズをさらに大きく */
    text-shadow: 5px 5px 12px rgba(0, 0, 0, 0.9); /* テキストの影を強調 */
  }
}

/* COFFEEセクション */
.coffee-section {
  background-color: #d8d1bf;
  text-align: center;
  padding: 40px 20px;
}

.coffee-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #6b4f34;
}

.coffee-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

@media (min-width: 1200px) {
  .coffee-container {
    gap: 40px; /* 大きい画面でさらに広げる */
  }
}
.coffee-item {
  background-color: #f4e8d9;
  width: 300px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  flex: 1 1 calc(33.333% - 40px); /* 各アイテムを横並びにし、幅を調整 */
  max-width: 300px; /* アイテムの最大幅 */
}

.coffee-item {
  flex: 1 1 100%; /* 小さい画面では縦並びにする */
}

.coffee-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  border-radius: 50%;
  object-fit: cover;
}

.coffee-text {
  margin-top: 10px;
}

.coffee-name {
  font-size: 18px;
  font-weight: bold;
  color: #6b4f34;
}

.coffee-price {
  font-size: 16px;
  color: #6b4f34;
}

/* DESERTセクション */
.desert-section {
  background-color: #d8d1bf; /* COFFEEセクションと同じ背景色 */
  text-align: center;
  padding: 40px 20px;
}

.desert-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #6b4f34;
}

.desert-container {
  display: flex;
  flex-wrap: wrap; /* 折り返しを許可 */
  justify-content: center; /* 中央揃え */
  gap: 20px; /* 要素間の間隔 */
}

@media screen and (min-width: 1080px) {
  .desert-container {
    gap: 40px; /* 大きい画面でさらに広げる */
  }
}

.desert-item {
  background-color: #f4e8d9;
  width: 300px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  flex: 1 1 calc(33.333% - 40px); /* 各アイテムを横並びにし、幅を調整 */
  max-width: 300px; /* アイテムの最大幅 */
}

@media screen and (min-width: 1080px) {
  .desert-item,
  .desert-item_w {
    flex: 1 1 calc(33.333% - 40px); /* 横に3列で均等配置 */
    max-width: 300px; /* 最大幅を指定 */
  }
}

.desert-item img {
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
  border-radius: 50%;
  object-fit: cover;
}

.desert-item_w img {
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(0.6); /* サイズ */
}

@media screen and (min-width: 1080px) {
  .desert-item img,
  .desert-item_w img {
    transform: none; /* スケールをリセット */
  }
}

.desert-text {
  margin-top: 8px;
}

.desert-name {
  font-size: 18px;
  font-weight: bold;
  color: #6b4f34;
}

.desert-price {
  font-size: 16px;
  color: #6b4f34;
}

/* LOCATIONセクション */
.location {
  position: relative;
  background-image: url(../img/01_top/Back2.png);
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  z-index: 0; /* 背景を後ろに配置 */
}

.location::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    255,
    255,
    255,
    0.5
  ); /* 白のオーバーレイを50%透明に設定 */
  z-index: -1; /* 背景のさらに下に配置 */
}

.section_location_container,
.location-details {
  position: relative; /* 背景のオーバーレイに影響されないように相対位置指定 */
  z-index: 1; /* テキストを前面に表示 */
}

.title_caption {
  display: block;
  margin-top: 24px; /* 適度な余白 */
  font-size: 14px; /* フォントサイズを維持 */
  color: #001c2b;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .title_caption {
    margin-top: 40px; /* 上の余白を抑える */
    font-size: 24px;
  }
}

.location-details {
  max-width: 800px;
  margin: 0 auto;
  color: #3b2c1a; /* 背景とのコントラストを強化 */
  font-size: 14px;
  line-height: 1.8;
}

.location-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(59, 44, 26, 0.3);
  padding-bottom: 15px;
}

.location-item:last-child {
  border-bottom: none; /* 最後の要素の下線を削除 */
  margin-bottom: 0; /* 必要に応じて余白も調整 */
}

.location-heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.location-item ul {
  padding-left: 20px;
  list-style-type: disc;
}

.location-item p,
.location-item li {
  color: #3b2c1a;
}

iframe {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
}

/* トップお知らせ */
.top_contact {
  background-color: var(--beige-color02);
  padding: 32px;
}

.top_contact_tytle {
  margin-bottom: 24px;
}

/* トップインスタ */
.top_Instagram {
  background-color: var(--white-color02white-color02);
  width: 100%;
}

.instagram-wrrapper {
  display: flex; /* 写真とテキストを横並びにする */
  align-items: center; /* 縦方向で中央揃え */
  justify-content: center;
  gap: 8px; /* 写真とテキストの間にスペース */
}

.instagram_img {
  width: 150px;
  height: 150px;
  border-radius: 10px; /* 写真に角丸を付けたい場合 */
}

.instagram_text-wrapper {
  display: flex;
  flex-direction: column; /* テキストを縦並びにする */
}

.instagram_txt {
  font-size: 18px;
  color: var(--black-coloer);
  line-height: 1.5; /* 行間を調整 */
}

.instagram_txt2 {
  font-size: 18px;
  color: var(--black-coloer);
  line-height: 1.5; /* 行間を調整 */
  font-family: Oleo Script;
  font-weight: bold;
  margin-top: 8px;
}

.top_pay {
  padding: 16px;
  max-width: 600px;
  margin: auto;
}

/* ---------- story ---------- */
/* storyの人はここから書いてください */

.story_kv-wrapper {
  height: 412px;
}
.story_kv {
  background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(51, 51, 51, 0.4)),
    url(../img/02_story/Drip.jpg) center top / cover;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.origin_kv {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url(../img/02_story/sp_STORY1.png);
  background-position: 0;
}

@media screen and (min-width: 768px) {
  .origin_kv {
    background-image: url(../img/02_story/pc_STORY1.png);
    height: auto;
    background-size: cover;
  }
}

.story_des {
  padding: 64px 0 16px 0;
}

@media screen and (min-width: 1080px) {
  .story_des {
    padding: 120px 143px 116px 143px;
  }
}
.story_detail-wrapper {
  
  padding-top: 32px;
}

@media screen and (min-width: 1080px) {
  .story_detail-wrapper {
    padding-top: 64px;

    margin: 0 auto;
  }
}

.story_sub-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #170303;
}
@media screen and (min-width: 768px) {
  .story_sub-title {
    font-size: 24px;
  }
}

.story_detail {
  margin: 32px 16px;
  text-align: center;
  font-size: 14px;
  line-height: 32.4px;
  letter-spacing: 0;
  text-shadow: 0px 0px 4px #fff;
}

@media screen and (min-width: 768px) {
  .story_detail {
    line-height: 32.4px;
    letter-spacing: 0.1em;
    font-size: 18px;
    text-shadow: var(--white-color02) 0 3px 6px;
    margin-top: 32px;
  }
}

.beans_img {
  height: 239px;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .beans_img {
    height: 390px;
    width: 100%;
    object-fit: cover;
  }
}

.inside_img {
  height: 245px;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .inside_img {
    height: 390px;
    width: 100%;
    object-fit: cover;
  }
}
.drip_img {
  height: 234px;
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1080px) {
  .drip_img {
    height: 390px;
    width: 100%;
    object-position: center light;
    transition: object-position 0.3s ease;
  }
}

.concept_kv {
  background-image: url(../img/02_story/sp_story2.png);
  width: 100%;
  height: 590px;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .concept_kv {
    background-image: url(../img/02_story/pc_STORY2.png);
    width: 100%;
    min-height: 653px;
    background-position: right;
    background-size: cover;
  }
}
.commitment_kv {
  background-image: url(../img/02_story/sp_story3.png);
  width: 100%;
  min-height: 706px;
}
@media screen and (min-width: 768px) {
  .commitment_kv {
    background-image: url(../img/02_story/pc_story3.png);
    height: 825px;
  }
}

/* 吹き出しのスタイル(sp) */
.speech-bubble {
  position: relative;
  width: 285px;
  height: 36px;
  padding: 10px;
  background-color: #f9f0e1;
  color: #170303;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .speech-bubble {
    width: 794px;
    height: 80px;
  }
}

/* 吹き出しの三角形部分 */
.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #f9f0e1;
}
@media screen and (min-width: 768px) {
  .speech-bubble::after {
    bottom: -40px;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid #f9f0e1;
  }
}

.experience {
  padding: 64px 32px;
}
@media screen and (min-width: 768px) {
  .experience {
    padding: 120px 64px;
  }
}
.experience__title {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #170303;
  line-height: 32.4px;
}
@media screen and (min-width: 768px) {
  .experience__title {
    font-size: 24px;
    text-align: center;
  }
}

.experience__description {
  padding-top: 32px;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 32.4px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .experience__description {
    padding-top: 64px;
    font-size: 18px;
  }
}
.unique-difference {
  padding: 0px 32px;
}
@media screen and (min-width: 768px) {
  .unique-difference {
    padding: 0px 64px;
  }
}

.side_bar {
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center;
  white-space: nowrap;
  margin-bottom: 54px;
}
@media screen and (min-width: 768px) {
  .side_bar {
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: center;
    white-space: nowrap;
    margin-bottom: 54px;
  }
}

.side_bar:before,
.side_bar:after {
  border-top: 2px solid;
  content: "";
  width: 80px;
}
@media screen and (min-width: 768px) {
  .side_bar:before,
  .side_bar:after {
    border-top: 2px solid;
    content: "";
    width: 100px;
  }
}
.side_bar:before {
  margin-right: 19px; /* 文字の右隣 */
}
@media screen and (min-width: 768px) {
  .side_bar:before {
    margin-right: 120px; /* 文字の右隣 */
  }
}
.side_bar:after {
  margin-left: 19px; /* 文字の左隣 */
}
@media screen and (min-width: 768px) {
  .side_bar:after {
    margin-left: 120px; /* 文字の左隣 */
  }
}

.unique-difference__title {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 24.4px;
}
@media screen and (min-width: 768px) {
  .unique-difference__title {
    font-size: 24px;
    text-align: center;
    
  }
}
@media screen and (min-width: 768px) {
  .unique-difference_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.unique-difference_item {
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  .unique-difference_item {
    padding: 120px 0;
    margin-left: 32px;
  }
}
@media screen and (min-width: 768px) {
  .unique-difference_item:first-child{
    margin-left: 0px;
  }
}

.unique-difference_img-wrapper {
  float: right;
  
}
@media screen and (min-width: 768px) {
  .unique-difference_img-wrapper {
    width: 300px;
    height: 250px;
    float: right;
   
    display: flex;
  }
}

.unique-difference_circle {
  background: #f9f0e1;
  margin-top: 173px;
  border-radius: 50%;
  width: 230px;
  height: 230px;
}

@media screen and (min-width: 768px) {
  .unique-difference_circle {
    width: 300px;
    height: 250px;
  }
}
.unique-difference_des:nth-of-type(1) {
  text-align: center;
  font-size: 14.4px;
  line-height: 24.4px;
  letter-spacing: 0;
  font-weight: bold;
  padding: 82px 21px 50px 18px;
}

@media screen and (min-width: 768px) {
  .unique-difference_circle:nth-child(2n) {
    margin-top: 200px;
    width: 300px;
    height: 250px;
    font-size: 18px;
    padding-top: 20px;
    
  }
}
.visit-now {
  font-size: 14.4px;
  font-weight: bold;
  text-align: right;
  color: #170303;
}
@media screen and (min-width: 768px) {
  .visit-now {
    font-size: 24px;
    text-align: center;
    justify-content: center;
  }
}
.hidden-oasis_background {
  background-image: url(../img/02_story/STORY\ Bottom.png);
  min-width: 100%;
  height: 471px;
  margin-top: 64px;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .hidden-oasis_background {
    background-image: url(../img/02_story/STORY\ Bottom.png);
    min-width: 100%;
    height: 1000px;
    background-size: cover; /* アスペクト比を維持しつつコンテナを埋める */
    background-position: center; /* 中央部分を表示 */
    background-repeat: no-repeat; /* 繰り返しを防ぐ */
  }
}
.hidden-oasis_txt {
  padding: 170px 19px;
  font-size: 14.4px;
  color: #fff;
  text-shadow: 0px 0px 4px #fff;
  text-align: center;
  line-height: 32.4px;
  letter-spacing: 10%;

}

@media screen and (min-width: 768px) {
  .hidden-oasis_txt {
    padding: 500px 64px;
    font-size: 24px;
    line-height: 50px;
  }
}

/* ---------- menu ---------- */
/* menuの人はここから書いてください */
.menu_kv {
  position: relative;
  height: 413px;
  background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(51, 51, 51, 0.4)),
    url(../img/03_menu/Menu\ Latest\ PSP.png) center top / cover;
}

.menu_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fafafa;
}
.menu_subtitle {
  color: #fafafa;
}
.menu_subtitle::after {
  background-color: #fafafa;
}

.menu-title_caption {
  color: #fafafa;
}
.menu_coffee {
  background-image: url(../img/03_menu/Luxury\ coffee\ background.png);
  background-size: cover;
  min-height: 262px;
  z-index: -100;
}
@media screen and (min-width: 1080px) {
  .menu_coffee {
    min-height: 469px;
    min-width: 100%;
  }
}

.menu_coffee-inner {
  color: var(--beige-color);
  font-size: 24px;
  font-weight: bold;
  z-index: 100;
  padding-top: 34px;
}

@media screen and (min-width: 1080px) {
  .menu_coffee-inner {
    color: #f9f0e1;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 200px;
  }
}

.menu_coffee-img-wrap {
  position: relative;
}

.menu_coffe-img {
  width: 320px;
  position: absolute;
  top: -90px;
  right: 0;
  z-index: -10;
}

.menu_drink-menu {
  background-image: url(../img/03_menu/SP\ coffee\ menu\ background\ 1.png);
  width: 100%;
  background-size: cover;
}
@media screen and (min-width: 1080px) {
  .menu_drink-menu {
    background-image: url(../img/03_menu/PC\ coffee\ menu\ background\ 1.png);
    max-width: 1384px;
    height: 2502px;
    background-size: cover;
    background-position: center;
  }
}
.menu_drink {
  padding-top: 53px;
}
@media screen and (min-width: 1080px) {
  .menu_drink {
    padding-top: 120px;
  }
}
.menu_drink-ttl {
  font-size: 32px;
  font-weight: 900;
  color: var(--beige-color);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.251);
}
@media screen and (min-width: 1080px) {
  .menu_drink-ttl {
    font-size: 48px;
    font-weight: 900;
    color: #f9f0e1;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.251);
    display: flex;
    justify-content: center;
  }
}

.drink_menu-txt {
  font-size: 24px;
  font-weight: 800;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.251);
  color: var(--beige-color);
  display: inline-block;
}
@media screen and (min-width: 1080px) {
  .drink_menu-txt {
    font-size: 36px;
    color: #f9f0e1;
    display: inline-block;
    padding-top: 25px;
    padding-left: 40%;
  }
}

.drink_menu-txt2 {
  font-size: 14px;
  font-weight: 800;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.251);
  color: var(--beige-color);
  display: inline-block;
  margin: 0 10px;
}
@media screen and (min-width: 1080px) {
  .drink_menu-txt2 {
    font-size: 18px;
    font-weight: 800;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.251);
    color: #f9f0e1;
    display: inline-block;
    margin: 0 auto;
  }
}

.drink_coffee-menu-wrap {
  display: flex;
  gap: 50px;
  padding: 10px 30px;
  justify-content: space-around;
}
@media screen and (min-width: 1080px) {
  .drink_coffee-menu-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 143px;
    margin: 0 auto;
    margin-bottom: 100px;
  }
}

.drink_coffee-menu_txt {
  width: 110px;
  height: 20px;
  background-color: #d9d9d9;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .drink_coffee-menu_txt {
    width: 100%;
    height: 62px;
    font-size: 24px;
    padding: 10px;
  }
}

.drink_coffee-menu_img-wrap {
  padding-top: 5px;
  width: 108px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .drink_coffee-menu_img-wrap {
    padding-top: 15px;
    width: 225px;
  }
}

.drink_coffee-menu_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drink_coffee-menu2-wrap {
  display: flex;
  gap: 12px;
  padding-top: 10px;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .drink_coffee-menu2-wrap {
    gap: 96px;
    align-items: flex-start;
    padding: 56px;
  }
}

.drink_coffee-menu2 {
  text-align: center;
}

.drink_coffee-menu2_txt {
  color: #d8d1bf;
  font-size: 10px;
  margin-bottom: 8px;
}

@media screen and (min-width: 1080px) {
  .drink_coffee-menu2_txt {
    color: #d8d1bf;
    font-size: 24px;
    margin-bottom: 16px; /* 画像との間隔を広げる */
  }
}

.drink_coffee-menu2_img {
  width: 72px;
  height: 58px;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .drink_coffee-menu2_img {
    width: 200px; /* 画像の幅を200pxに変更 */
    height: auto; /* 縦横比を維持 */
  }
}

.drink_coffee-menu2_img-wrap {
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .drink_coffee-menu2_img-wrap {
    width: auto; /* 必要に応じて幅を調整 */
    margin: 0 auto;
  }
}

/* .drink_coffee-menu2_img{
  width: 72px;
  height: 58px;
  margin: 0 auto;

} */
/* .drink_coffee-menu2_img-wrap{
  width: 72px;
}
@media screen and (min-width: 1080px) {
  .drink_coffee-menu2_img-wrap {
    width: 167px;
    margin: auto;
  }
} */

.drink_coffee-kinds-wrap {
  margin-top: 55px;
}
@media screen and (min-width: 1080px) {
  .drink_coffee-kinds-wrap {
    width: 826px;
    height: 473px;
    margin: 120px auto;
    padding-top: 50px;
  }
}

.drink_coffee-kinds_img {
  max-width: 80%; /* 親要素に対する幅の割合 */
  height: auto; /* 縦横比を保つ */
  display: block; /* 中央揃えを助ける */
  margin: 0 auto; /* 水平中央揃え */
}

.drink_coffee-kinds_img-wrap {
  text-align: center; /* 子要素を中央揃え */
  overflow: hidden; /* 必要に応じてはみ出た部分を隠す */
}

.drink_coffee-kinds {
  max-width: 80%;
  height: 185px;
  background-color: #f9f0e1;
  border-radius: 10px;
  margin: 0 auto;
  padding: 11px 30px;
}
@media screen and (min-width: 1080px) {
  .drink_coffee-kinds {
    width: 705px;
    height: 366px;
    background-color: #f9f0e1;
    border-radius: 10px;
    margin: 0 auto;
    padding: 11px 30px;
  }
}

.drink_coffee-kinds-item {
  display: flex;
  justify-content: space-between;
  height: 33px;
}
@media screen and (min-width: 1080px) {
  .drink_coffee-kinds-item {
    height: 76px;
  }
}

.drink_coffee-kinds-coffee,
.drink_coffee-kinds-price {
  color: #423b3b;
  font-weight: bold;
  font-size: 13px;
}
@media screen and (min-width: 1080px) {
  .drink_coffee-kinds-coffee,
  .drink_coffee-kinds-price {
    font-size: 20px;
    line-height: 32.4px;
    font-weight: 900;
  }
}

.drink_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-bottom: 66px;
}
@media screen and (min-width: 1080px) {
  .drink_wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 350px;
    padding: 0 150px;
    padding-bottom: 92px;
  }
}

.drink_tea-ttl {
  font-weight: bold;
  font-size: 24px;
  color: #f9f0e1;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .drink_tea-ttl {
    font-size: 48px;
    padding-top: 100px;
  }
}

.drink_tea {
  display: flex;
  gap: 5px;
}
@media screen and (min-width: 1080px) {
  .drink_tea {
    gap: 11px;
  }
}

.drink_tea-txt,
.drink_tea-price {
  font-weight: 800;
  font-size: 12px;
  color: #f9f0e1;
  height: 33px;
}
@media screen and (min-width: 1080px) {
  .drink_tea-txt,
  .drink_tea-price {
    font-size: 24px;
    margin: 0 auto;
    height: 64px;
  }
}
/* ここまで */

.menu_food-menu_wrap {
  background-image: url(../img/03_menu/Menu\ background\ 1.png);
}
@media screen and (min-width: 1080px) {
  .menu_food-menu_wrap {
    min-height: 1552px;
  }
}

.menu_food-ttl {
  color: #001c2b;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding-top: 16px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .menu_food-ttl {
    color: #001c2b;
    font-size: 48px;
    font-weight: 700;
    padding-top: 41px;
  }
}

.menu_food-ttl::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 1px;
  background-color: #001c2b;
  display: block;
  text-align: center;
  top: 120%;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (min-width: 1080px) {
  .menu_food-ttl::after {
    content: "";

    width: 200px;
    height: 1px;
    top: 100%;
  }
}
.menu_food-txt {
  font-size: 14px;
  text-align: center;
  margin-top: 24px;
  padding-bottom: 16px;
  color: #001c2b;
}
@media screen and (min-width: 1080px) {
  .menu_food-txt {
    font-size: 40px;
    font-weight: 700;
    margin-top: 21px;
    padding-bottom: 56px;
    line-height: 32.4px;
  }
}
@media screen and (min-width: 1080px) {
  .menu_morning-df {
    display: flex;
    justify-content: space-between;
  }
}
.menu_morning-food-wrap {
  background-image: url(../img/03_menu/Morning\ Menu.png);
  height: 520px;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .menu_morning-food-wrap {
    height: 408px;
    width: 100%;
    background-position: center;
  }
}

.menu_morning-food {
  position: absolute;
  background-image: url(../img/03_menu/Special\ menu\ image\ background.png);
  min-width: 252px;
  height: 90px;
  top: 72px;
  left: 0px;
}

@media screen and (min-width: 1080px) {
  .menu_morning-food {
    width: 80%;
    height: 50%;
    justify-content: center;
    left: 10%;
    display: flex;
    justify-content: center; /* 左右中央 */
    align-items: center; /* 上下中央 */
    flex-direction: column;
    gap: 20px;
  }
}
.menu_morning-food_ttl {
  font-size: 32px;
  font-weight: 700;
  text-align-last: center;
  font-family: "Abhaya Libre Medium", serif;
  line-height: 32px;
  padding: 18px 23px 0px 23px;
}

@media screen and (min-width: 1080px) {
  .menu_morning-food_ttl {
    font-size: 56px;
  }
}

.menu_morning-food_time {
  font-size: 18px;
  text-align: center;
  font-family: "Abhaya Libre ExtraBold", serif;
}

@media screen and (min-width: 1080px) {
  .menu_morning-food_time {
    font-size: 32px;
    margin-top: 16px;
  }
}

.menu_food-menu {
  position: relative;
}
.menu_morning-set {
  width: 156px;
  height: 83px;
  border-radius: 10px;
  background-color: #170303;
  opacity: 50%;
  position: absolute;
  top: 55%;
  right: 10%;
}

@media screen and (min-width: 1080px) {
  .menu_morning-set {
    display: none;
  }
}

.menu_morning-set-ttl {
  font-size: 20px;
  color: var(--white-color);
  text-align: center;
}

.menu_morning-set-txt,
.menu_morning-set-price {
  font-size: 12px;
  color: var(--white-color);
  text-align: center;
}

/* ここからトッピング */
.menu_topping {
  width: 180px;
}

@media screen and (min-width: 1080px) {
  .menu_topping {
    width: 50%;
  }
}
.menu_topping-wrap {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
}

.menu_topping-ttl {
  font-size: 20px;
  font-weight: bold;
  color: #001c2b;
  margin-top: 10px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .menu_topping-ttl {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.menu_topping-price {
  font-size: 13px;
  font-weight: bold;
  color: #524c48;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .menu_topping-price {
    display: none;
  }
}
.menu_topping-price::after,
.menu_topping-price::before {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  border: 1px dotted #4f4d47;
}

@media screen and (min-width: 1080px) {
  .menu_topping-price::after,
  .menu_topping-price::before {
    content: none; /* 疑似要素の内容を消す */
    border: none; /* ボーダーも非表示 */
    width: 0; /* 幅を0にして無効化 */
    height: 0; /* 高さを0にして無効化 */
  }
}

.menu_topping-price::before {
  top: 50%;
  left: 5%;
}

.menu_topping-price::after {
  top: 50%;
}

.menu_topping-menu_wrap {
  display: flex;
  gap: 0 24px;
  justify-content: center;
  margin-top: 10px;
}

@media screen and (min-width: 1080px) {
  .menu_topping-menu_wrap {
    display: flex;
    justify-content: space-around; /* 横並びで中央配置 */
    margin-top: 10px;
  }
}
.menu_topping-menu_wrap2 {
  display: flex;
  flex-direction: column; /* 子要素を縦方向に並べる */
  gap: 16px; /* 行間のスペース */
  margin-top: 10px;
}

.menu_topping-row {
  display: flex;
  gap: 16px; /* アイテム間の間隔 */
  justify-content: center; /* 横並びのアイテムの中央寄せ */
}

.menu_topping-menu {
  text-align: center;
}

.menu_topping-menu_ttl {
  font-size: 10px;
}

.menu_topping-menu_img {
  width: 70px;
  height: 40px;
  object-fit: cover;
}

.menu_topping-menu_img2 {
  width: 70px;
  height: 48px;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .menu_topping-drink {
    width: 50%;
  }
}
.menu_topping-drink-ttl {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .menu_topping-drink-ttl {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.menu_topping-drink-en,
.menu_topping-drink-jp {
  font-size: 12px;
  letter-spacing: 0;
  font-family: Arial;
}

@media screen and (min-width: 1080px) {
  .menu_topping-drink-jp {
    font-size: 24px;
    display: flex;
    justify-content: center; /* 横方向の中央寄せ */
    text-align: left; /* 文字を左寄せ */
    align-items: center; /* 縦方向の中央寄せ */
    width: 100%; /* 親要素の幅を占める */
  }
}

@media screen and (min-width: 1080px) {
  .menu_topping-drink-en {
    margin-top: 32px;
    font-size: 24px;
    display: flex;
    justify-content: center; /* 横方向の中央寄せ */
    text-align: left; /* 文字を左寄せ */
    align-items: center; /* 縦方向の中央寄せ */
    width: 100%; /* 親要素の幅を占める */
  }
}
/* PC版用のレスポンシブ設定 */
@media screen and (min-width: 1080px) {
  .menu_topping-menu_wrap,
  .menu_topping-menu_wrap2 {
    display: grid; /* グリッドレイアウトを使用 */
    grid-template-columns: 1fr; /* 1列に設定 */
    gap: 12px; /* グリッド間の間隔を調整 */
  }

  .menu_topping-menu {
    display: flex;
    flex-direction: row; /* 画像と文字を横並びに */
    align-items: center;
    justify-content: center; /* アイテムを中央に配置 */
    padding: 10px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 12px; /* 各メニューアイテムの下の間隔を調整 */
  }

  /* 1, 3, 5行目に余白を追加 */
  .menu_topping-menu:nth-child(odd) {
    gap: 20px; /* 写真と文字の間に余白を取る */
  }

  /* 2行目以降の反転 */
  .menu_topping-menu:nth-child(2n) {
    flex-direction: row-reverse; /* 2行目、4行目、6行目の順番で画像と文字を反転 */
  }

  .menu_topping-menu_img,
  .menu_topping-menu_img2 {
    width: 200px; /* 画像の幅を統一 */
    height: 100px; /* 画像の高さを統一 */
    object-fit: cover;
    border-radius: 8px;
    margin-right: -40px; /* 画像とテキストを少し重ねる */
    position: relative;
    z-index: 1; /* 画像がテキストより前に表示されるように */
  }

  .menu_topping-menu_ttl {
    font-size: 18px; /* テキストのフォントサイズ調整 */
    margin-top: 0;
    padding: 20px; /* テキスト周りの余白を広げる */
    background-color: #f1f1f1; /* 四角の背景色 */
    border-radius: 8px;
    border: 2px solid var(--black-color); /* 四角の周りに黒い線を追加 */
    z-index: 0; /* テキストが画像より後ろに表示されるように */
    width: 240px; /* 四角の幅を統一 */
    height: 80px; /* 四角の高さを統一 */
    display: flex;
    justify-content: center;
    align-items: center; /* テキストを中央に配置 */
    text-align: center; /* テキスト中央揃え */
  }

  .menu_topping-menu_wrap {
    margin-top: 20px;
    gap: 12px; /* 行間の間隔を狭める */
  }

  .menu_topping-menu_wrap2 {
    margin-top: 20px;
    gap: 12px; /* 行間の間隔を狭める */
  }

  /* menu_topping-row を修正 */
  .menu_topping-row {
    display: flex; /* フレックスボックスに変更 */
    flex-direction: column; /* アイテムを縦に並べる */
    gap: 12px; /* アイテム間のスペース */
  }
}

/* ここからlunch */
.menu-lunch {
  background-image: url(../img/03_menu/Lunch\ background.png);
}

.menu-lunch-wrap {
  background-color: #d9d9d9;
  width: 327px;
  padding: 24px 0;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .menu-lunch-wrap {
    width: 90%;
    height: 80%;
    margin: 48px auto;
  }
}
.menu-lunch-line {
  width: 311px;
  border: #000;
}

@media screen and (min-width: 1080px) {
  .menu-lunch-line {
    width: 100%;
  }
}
.menu-lunch-ttl {
  font-size: 32px;
  color: #000;
  text-align: center;
  text-shadow: 1px 1px 1px #59453b;
}

@media screen and (min-width: 1080px) {
  .menu-lunch-ttl {
    font-size: 64px;
  }
}
.menu-lunch-info {
  display: flex;
  justify-content: space-around;
}

.menu-lunch-price,
.menu-lunch-time {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (min-width: 1080px) {
  .menu-lunch-price,
  .menu-lunch-time {
    font-size: 32px;
  }
}

.menu-main {
  width: 280px;
  background-color: #fffefe;
  margin: 16px 24px;
}

@media screen and (min-width: 1080px) {
  .menu-main {
    width: 80%;
    margin: 16px auto; /* PC版で中央寄せ */
  }
}

.menu-main-ttl {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  font-family: Medium;
}

@media screen and (min-width: 1080px) {
  .menu-main-ttl {
    font-size: 28px;
  }
}
.menu-main-item-wrap {
  display: flex;
  justify-content: center;
  gap: 10px 28px;
  flex-wrap: wrap;
}

.menu-main-img {
  width: 88px;
  height: 64px;
}

@media screen and (min-width: 1080px) {
  .menu-main-img {
    width: 200px;
    height: 150px;
  }
}
.menu-main-txt {
  font-weight: bold;
  font-size: 11px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .menu-main-txt {
    font-size: 24px;
  }
}

.menu-plus {
  margin: 16px 151px;
  width: 12px;
  height: 36px;
  display: inline-block;
  background: #000;
  border-radius: 0.1em;
  position: relative;
}

.menu-plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: inherit;
  transform: translate(-50%);
  transform: rotate(90deg);
}

@media screen and (min-width: 1080px) {
  .menu-plus {
    margin: 16px auto; /* 横方向に中央揃え */
    display: block; /* inline-block ではなく block にして中央揃え */
  }

  .menu-plus::before {
    left: 50%; /* 親要素の幅に対して中央に配置 */
    transform: translateX(-50%) rotate(90deg); /* 水平方向に50%移動して中央に */
  }
}

.menu-setdrink-ttl {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .menu-setdrink-ttl {
    font-size: 28px;
  }
}
.menu-setdrink-wrap {
  width: 280px;
  height: 104px;
  background-color: var(--beige-color);
  display: flex;
  margin: 0 auto;
  justify-content: space-around;
}

@media screen and (min-width: 1080px) {
  .menu-setdrink-wrap {
    width: 600px;
    height: 200px;
    align-items: center; /* 縦方向に中央揃え */
    display: flex;
  }
}

.menu-setdrink-img {
  width: 120px;
  padding: 12px 0;
  padding-left: 12px;
}

@media screen and (min-width: 1080px) {
  .menu-setdrink-img {
    width: 220px;
  }
}
.menu-setdrink-menu {
  font-weight: bold;
  font-size: 11px;
}

@media screen and (min-width: 1080px) {
  .menu-setdrink-menu {
    font-size: 20px;
  }
}

.menu-lunch {
  padding: 8px 13px;
}

.menu-option-ttl-wrap {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media screen and (min-width: 1080px) {
  .menu-option-ttl-wrap {
    align-items: center;
  }
}
.menu-option-ttl {
  font-weight: 500;
  font-size: 32px;
  color: #5f4747;
}

.menu-option-inx {
  color: #000;
  font-size: 10px;
}

.menu-option-wrap {
  width: 280px;
  height: 184px;
  background-color: var(--beige-color);
  margin: 0 auto;
  display: flex;
  padding: 10px;
}

@media screen and (min-width: 1080px) {
  .menu-option-wrap {
    width: 600px;
    height: 300px;
    justify-content: space-around;
  }
}
.menu-option-salad {
  width: 120px;
  height: 80px;
}

@media screen and (min-width: 1080px) {
  .menu-option-salad{
    width: 200px;
  }
}
@media screen and (min-width: 1080px) {
  .menu-option-salad {
    margin-bottom: 20px; /* サラダ間の余白を調整 */
  }

  .menu-option-menu {
    display: flex;
    flex-direction: column; /* 縦並びにする */
    gap: 40px; /* サラダとスープ間の余白を追加 */
  }
}



.menu-option-salad_ttl {
  font-weight: bold;
  font-size: 11px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .menu-option-salad_ttl {
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    margin-top: 10px;
  }
}

.menu-option-salad-wrap {
  display: flex;
}

@media screen and (min-width: 1080px) {
  .menu-option-salad-wrap{
    justify-content: space-between;
    align-items: center;
  }
}

.menu-option-salad-img {
  width: 72px;
  height: 56px;
}

@media screen and (min-width: 1080px) {
  .menu-option-salad-img{
    width: 150px;
    height: 100px;
  }
}


.menu-option-salad_price {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding-left: 2px;
}

@media screen and (min-width: 1080px) {
  .menu-option-salad_price {
    font-size: 16px;
    white-space: nowrap;
    text-align: center;
    padding-left: 20px;
  }
}

/* PC版（1080px以上）で改行を無視する */
@media screen and (min-width: 1080px) {
  .menu-option-salad_price br {
    display: none; /* <br>タグを非表示にする */
  }

  .menu-option-salad_price {
    white-space: nowrap; /* 折り返しを防ぐ */
  }
}

/* ここからデザートメニュー */
.menu-option-desert-item {
  font-weight: bold;
  font-size: 10px;
}

@media screen and (min-width: 1080px) {
  .menu-option-desert-item{
    font-size: 14px;
    margin-top: 8px;
  }
}
.menu_desert {
  background-image: url(../img/03_menu/Dessert\ background.png);
  padding: 20px 0;
}

.menu_desert-menu {
  background-color: var(--white-color);
  width: 320px;
  height: 528px;
  margin: 0 auto;
  border-radius: 10px;
}

@media screen and (min-width: 1080px) {
  .menu_desert-menu{
    width: 80%;
    height: 100%;
  }
}
.menu_desert-ttl {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  font-family: "Trebuchet MS";
  color: #484848;
}

@media screen and (min-width: 1080px) {
  .menu_desert-ttl{
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.menu_desert-item {
  margin: 0 36px;
}

@media screen and (min-width: 1080px) {
  .menu_desert-item{
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
@media screen and (min-width: 1080px) {
  .menu_desert-img{
    width: 500px;
    height: auto;
  }
}

@media screen and (min-width: 1080px) {
  .menu_desert-img2{
    width: 300px;
    height: 220px;
  }
}
@media screen and (min-width: 1080px) {
  .menu_desert-text{
    display: flex; /* 名前とセット情報を縦並びに */
    flex-direction: column;
    gap: 16px; /* 名前とセット情報の間の余白 */
  }
}
.menu_desert-name,
.menu_desert-drink {
  font-weight: bold;
  color: #524c48;
}

.menu_desert-name {
  font-size: 12px;
}

@media screen and (min-width: 1080px) {
  .menu_desert-name{
    font-size: 24px;
    font-weight: bold;
  }
}

.menu_desert-drink {
  font-size: 10px;
}

@media screen and (min-width: 1080px) {
  .menu_desert-drink{
    font-size: 16px;
  }
}

.menu_desert-item_wrap {
  display: flex;
  gap: 0 4px;
  flex-wrap: wrap;
  margin-left: 35px;
  margin-top: 5px;
}

@media screen and (min-width: 1080px) {
  .menu_desert-item_wrap {
    justify-content: space-evenly; /* 各行の要素を均等に配置 */
  }
}

@media screen and (min-width: 1080px) {
  .menu_desert-item {
    display: flex; /* 横並びにする */
    justify-content: center; /* 子要素を中央に配置 */
  }
}
.menu_desert-item2 {
  width: 80px;
  margin-bottom: 5px;
}

@media screen and (min-width: 1080px) {
  .menu_desert-item2 {
    width: calc(33.33% - 16px); /* 3列になる幅に設定 */
    margin-bottom: 16px; /* 下の行との余白 */
    box-sizing: border-box; /* パディングを含めて幅を計算 */
    display: flex; /* Flexboxを使って内部の要素を配置 */
    flex-direction: column; /* 画像と文字を縦並びに */
    align-items: center; /* 画像と文字を中央に配置 */
  }
}

.menu_desert-name2,
.menu_desert-price {
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0;
  white-space: nowrap;
  color: #524c48;
}

@media screen and (min-width: 1080px) {
  .menu_desert-name2,
.menu_desert-price{
  font-size: 16px;
}
}
/* ---------- contact ---------- */
/* contactの人はここから書いてください */

.contact_kv {
  height: 412px;
  background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(51, 51, 51, 0.4)),
    url(../img/04_contact/Contact\ kv.png) center top / cover;
}

.contact_title {
  padding-top: 64px;
  position: relative;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .contact_title {
    padding-top: 120px;
  }
}

.title_caption {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .title_caption {
    font-size: 32px;
  }
}

.contact_desc {
  font-size: 14px;
  display: flex;
  justify-content: center;
  margin: 32px 8px;
  text-align: center;
  line-height: 2;
}

.contact_form {
  padding: 0 16px;
  letter-spacing: normal;
  
}

.contact_form_heading {
  background-color: #d8d1bf;
  border: 1px solid #170303;
  padding: 16px;
  display: flex;
  flex-direction: column; /* 変更: 横並びから縦並びに変更 */
  justify-content: center;
  align-items: center;
  text-align: center;
}


.contact_form_heading:not(:first-child) {
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .contact_form_heading:not(:last-of-type) {
    width: 40%;
    height: 72px;
    margin: 0 0 18px 0;
    float: left;
  }
}

.contact_form_detail {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #f9f0e1;
  border: 1px solid #170303;
  padding: 8px 32px;
}

@media screen and (min-width: 768px) {
  .contact_form_detail:not(:last-child) {
    width: 60%;
    height: 72px;
    padding: 12px 16px;
    margin: 0 0 18px 0;
  }

  .contact_form_detail:last-child {
    padding: 32px;
  }
}

.contact_form_required {
  font-size: 10px;
  padding: 0 3px;
  background: var(--white-color02);
  margin-top: px; /* 変更: 左の余白から上の余白に変更 */
}


.contact_form_input {
  background: var(--white-color);
  width: 100%;
  border-radius: 8px;
}

.contact_form_textarea {
  background: var(--white-color);
  width: 100%;
  height: 160px;
  border-radius: 8px;
}

.contact_form_btn-wrapper {
  padding: 48px;
}

.contact_btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_btn_input {
  padding: 8px 48px;
  transition: 0.3s;
  color: var(--white-color);
  background: var(--accent-color);
  cursor: pointer;
}

.contact_cation {
  font-size: 12px;
  background: #d8d1bf;
  line-height: 3;
  padding: 32px 8px;
  text-align: center;
  margin-bottom: 40px;
}

.form_error {
  box-sizing: border-box;
  border-radius: 5px;
  background-color: red;
  display: block;
  font-weight: bold;
  margin-top: 10px;
  position: relative;
  padding: 0 10px;
  font-size: small;
  color: #fff;
}

.form_error::before {
  content: "";
  border: 10px solid transparent;
  border-bottom: 15px solid red;
  position: absolute;
  top: -25px;
  left: 5%;
}

.hidden {
  display: none;
}

@media screen and (min-width: 1080px) {
  .contact2_img {
    width: 100%;  /* 横幅いっぱいに広げる */
    height: 600px; /* 高さを300pxに設定 */
    object-fit: cover; /* 画像のアスペクト比を保ちながら、枠内に収める */
    object-position: 50% 10%; /* 上部とセンターの間 (30%の位置に画像を配置) */
  }
}
.wpcf7-not-valid-tip{
  display: none;
}



/* ---------- news ---------- */
.news_kv {
  height: 591px;
  background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(51, 51, 51, 0.4)),
    url(../img/05_news/Newsspkv.png) center top / cover;
  position: relative;
}

.news_title {
  background-color: #fff;
  height: 82px;
  width: 100%;
  position: absolute;
  bottom: 97px;
}

@media screen and (min-width: 768px) {
  .news_title {
    height: 140px;
    margin-top: 240px;
  }
}

/* body {
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
} */

.news_container {
  max-width: 337px;
  margin: 20px auto;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .news_container {
    max-width: 736px;
    margin: 20px auto;
  }
}

.news_container:not(:first-child) {
  margin-top: 64px;
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .news_container:not(:first-child) {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

.news-article {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news_thumb-wrapper {
  background: #d8d1bf;
}
@media screen and (min-width: 768px) {
  .news_thumb-wrapper {
    background: #d8d1bf;
  }
}
.news1_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .news1_img {
    height: 300px;
  }
}

.news2_img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .news2_img {
    height: 300px;
  }
}

.news_content {
  padding: 16px;
}

@media screen and (min-width: 768px) {
  .news_content {
    padding: 24px;
  }
}

.news_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #001c2b;
}

.news_meta-date {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .news_meta-date {
    font-size: 18px;
  }
}

.news_meta-cat {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  width: 57px;
  height: 22px;
  border: 1px solid #001c2b;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .news_meta-cat {
    font-size: 14px;
  }
}

.news-article_title {
  margin: 22.5px 1px 16px 1px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .news-article_title {
    font-size: 22px;
  }
}

.news-article_details {
  background: #f9f0e1;
  margin: 0 1px;
  padding: 16px;
  border-radius: 4px;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .news-article_details {
    font-size: 18px;
    padding: 32px 64px;
  }
}

.news-article_des {
  line-height: 150%;
  letter-spacing: 0.1em;
}

.emphasis {
  font-weight: bold;
}

.ticket_info {
  margin-left: 17px;
}

.ticket_info-item {
  list-style-type: disc;
}

.news-article_details_2 {
  font-size: 10px;
  background: #f9f0e1;
  margin: 0 1px;
  padding: 16px;
  border-radius: 4px;
  white-space: nowrap;
  padding-left: 5px;
}

@media screen and (min-width: 768px) {
  .news-article_details_2 {
    padding: 32px 64px;
    font-size: 18px;
  }
}

/* ---------- js ---------- */
.js_body.is-active {
  overflow: hidden;
}

.js_opening.is-active {
  visibility: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media screen and (min-width: 1080px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background: #8f3535;
}

@media screen and (min-width: 1080px) {
  .js_navigation.is-active {
    position: static;
    background-color: transparent;
  }
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

/* オーぷニング */
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInOut 5s ease-in-out forwards; 
  z-index: 9999;
}

/* fadeInOutアニメーション */
@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1; /* 50%の時点でまだ表示されている */
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* 画像のスタイル */
.intro-overlay img {
  width: 40%; /* 横幅を40%に設定 */
  height: auto; /* アスペクト比を保持 */
  max-width: 100%; /* 横幅が100%を超えないように設定 */
  object-fit: contain; /* 画像がコンテナに収まるように調整 */
}



/* メインコンテンツのスタイル */
.main-content {
  display: block;
  opacity: 0;
  animation: showContent 1s ease 3s forwards; /* メインコンテンツは3秒後に表示 */
}

/* メインコンテンツ表示アニメーション */
@keyframes showContent {
  to {
    display: block;
    opacity: 1;
  }
}



/* cf7 style */
.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item:not(:first-child) {
  margin-left: 16px;
}

.wpcf7-list-item-label {
  font-weight: bold;
  margin-left: 8px;
}

input[type="radio"] {
  appearance: button;
}

input[type="checkbox"] {
  appearance: checkbox;
}