@charset "utf-8";

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



/* ===============================================
    COMMON (全ページ共通)
   =============================================== */



/*===基本設定=== */


/* :root {
  --color-base: #FFFFFF;

  --color-text: #2F3E46;

  --color-main: #F1F1F1;

  --color-accent: #A8DADC;

  --color-sub: #F1F1F1;

  --border-dot: 1px dotted var(--color-main);
} */

:root {

  --color-base: #FAF9F6;

  --color-header: #FAF9F6;

  --color-text: #2D2926;

  --color-text2: #a19e9e;

  --color-text3: #666666;

  --color-main: #F0EDE5;

  --color-main2: #F5F5F5;

  --color-accent: #D7C4A3;

  --color-sub: #E0E0E0;

  --color-sub2: #444;

  --color-sub3: #fff;
}

/* :root {
  
  --color-base: #FAF9F6;
  
  --color-text: #3C2F2F;
   
  --color-main: #6B705C;
  
  --color-accent: #B79D5C;
  
  --color-sub: #F0EDE5;
} */


/* :root {
  
  --color-base: #FFFFFF;
   
  --color-text: #1B263B;
  
  --color-main: #415A77;
  
  --color-accent: #A67C52;

  --color-sub: #EDF2F4;
}  */

body {
  color: var(--color-text);
  background-color: var(--color-base);
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}


/*===ヘッダー===*/


header {
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  z-index: 100;
  display: flex;
  align-items: center;
  /* 透過設定（初期状態） */
  background-color: rgb(238, 228, 228, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* アニメーション：透過が戻る時の動きをスムーズに */
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

header:has(.header-nav:hover) {
  background-color: var(--color-header);
  backdrop-filter: blur(0px);
}

.header-content {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}

.header-logo {
  position: absolute;
  left: 0px;
  top: 0;
  z-index: 110;
}

.header-logo img {
  height: 130px;
  width: 120px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.header-nav {
  /* margin: 0 30px 0 280px; */
  margin: 0 auto;
}

.header-nav ul {
  display: flex;
  gap: 100px;
  list-style: none;
}

.header-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.2em;
  transition: color 0.3s;
}

.header-nav a h3 {
  font-size: 15px;
  text-align: center;
}

.header-nav a p {
  font-size: 10px;
  text-align: center;
}

.header-nav a:hover {
  color: var(--color-text2);
}


/*===サブヘッダー===*/


header.sub-header {
  position: relative;
  background-color: var(--color-header);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--color-sub);
  transition: none;
}

/* header.sub-header:has(.header-nav:hover) {
  background-color: var(--color-header);
  backdrop-filter: none;
} */

.sub-header .header-content {
  margin: 0 auto;
}

.sub-header .header-logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.sub-header .header-logo img {
  height: 100%;
  max-height: 13vh;
  width: auto;
  object-fit: contain;
  padding-left: 25px;
}

.sub-header .header-nav a {
  color: var(--color-text);
}

.sub-header .header-nav a:hover {
  color: var(--color-text2);
}


/*===フッター===*/


footer {
  background-color: var(--color-sub);
  color: var(--color-text);
  padding: 40px 0 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-shop-name {
  font-size: 28px;
  font-family: serif;
  letter-spacing: 0.2em;
  color: var(--color-text);
  margin-bottom: 20px;
}

.footer-info {
  margin-bottom: 5px;
}

.footer-info p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.footer-site-map {
  width: 100%;
  border-top: var(--border-dot);
  border-bottom: var(--border-dot);
  padding: 25px 0;
  margin-bottom: 10px;
}

.footer-site-map ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
}

.footer-site-map a {
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  color: var(--color-text);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer-site-map a:hover {
  color: var(--color-text2);
}

.footer-sns-links {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-sns-links a {
  text-decoration: none;
  font-size: 12px;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
}

.footer-sns-links a:hover {
  color: var(--color-text2);
}

.footer-copyright p {
  font-size: 10px;
  color: #999;
  letter-spacing: 0.05em;
}



@media screen and (max-width: 768px) {

  /* --- ヘッダーの調整 --- */
  header {
    height: auto; /* 高さを固定せず中身に合わせる */
    position: relative; /* 固定表示をやめて自然な配置にする（お好みでfixedでも可） */
    background-color: var(--color-header); /* 背景色をしっかりつける */
    padding: 10px 0;
  }

  .header-content {
    flex-direction: column; /* 縦並びにする */
    justify-content: center;
    padding-top: 10px;
  }

  /* ロゴの配置変更 */
  .header-logo {
    position: static; /* 絶対配置を解除 */
    margin-bottom: 10px; /* 下に余白 */
    text-align: center;
  }

  .header-logo a {
    display: inline-block;
  }

  .header-logo img {
    height: 80px; /* スマホ用に少し小さく */
    width: auto;
  }

  /* ナビゲーションの調整 */
  .header-nav {
    width: 100%;
    margin: 0;
    overflow-x: auto; /* 横スクロールを可能に（メニューが多い場合） */
    white-space: nowrap;
    padding-bottom: 5px; /* スクロールバーとの干渉を防ぐ */
  }

  .header-nav ul {
    display: flex;
    justify-content: center; /* 中央寄せ */
    flex-wrap: wrap; /* 画面幅が狭ければ折り返す */
    gap: 15px 20px; /* 上下の間隔 15px, 左右の間隔 20px */
    padding: 0 10px;
  }

  .header-nav a {
    font-size: 14px; /* 文字サイズを少し小さく */
    letter-spacing: 0.1em;
    display: block;
    text-align: center;
  }

  .header-nav a h3 {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .header-nav a p {
    font-size: 10px;
    color: var(--color-text2);
  }

  /* --- フッターの調整 --- */
  footer {
    padding: 30px 0;
  }

  .footer-shop-name {
    font-size: 24px;
  }

  /* サイトマップを2列にする、または縦並びにする */
  .footer-site-map ul {
    flex-direction: column; /* 縦並び */
    gap: 15px;
    padding: 20px 0;
  }
  
  /* もしくは2列にしたい場合はこちらを使ってください
  .footer-site-map ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
  }
  */

  .footer-sns-links {
    gap: 25px;
    margin-bottom: 30px;
  }
}

/* スマホ向け (画面幅 480px以下) の微調整 */
@media screen and (max-width: 480px) {
  .header-nav ul {
    gap: 10px 15px; /* さらに間隔を詰める */
  }
  
  .header-nav a h3 {
    font-size: 11px;
  }

  .footer-info p {
    font-size: 12px;
  }
}



/* ===============================================
    トップページ
   =============================================== */



/*===メインビジュアル（スライドショー）===*/


.main-visual {
  width: 100%;
  height: 75vh;
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;

}

.main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 10;
  text-align: center;
}

.main-title p {
  font-size: 24px;
  letter-spacing: 0.3em;
  font-weight: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
}

/*各スライドの設定*/

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  /* 最初は透明 */
  transition: opacity 2.5s ease-in-out, transform 12s linear;
  /* じわっと切り替え */
  transform: scale(1);
}

.slide.active {
  opacity: 1;
  /* activeクラスがついた画像だけ表示 */
  transition: opacity 2.5s ease-in-out, transform 8s linear;
  transform: scale(1.1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 画像の比率を保ったままエリアを埋める */
  /* filter: grayscale(30%) brightness(70%); */
  /* 少しグレー＆暗くして重厚感を出す */
}


/*===ニュースセクション===*/


#news-section {
  width: 100%;
  height: 25vh;
  background-color: var(--color-sub);
  padding: 20px 0;
  margin: 0;
}

.news-container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-left-content {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-grow: 1;
}

/* タイトルグループ（縦並び・中央揃え） */

.news-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-right: 30px;
}

.news-title h2 {
  margin: 0;
  font-size: 18px;
  color: #777;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.news-title p {
  margin: 0;
  font-size: 10px;
  color: #aaa;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ニュースリスト */

#news-list {
  list-style: none;
  flex-grow: 1;
}

#news-list li {
  padding: 15px 20px;
  display: flex;
  font-size: 14px;
}

#news-list .date {
  width: 100px;
  color: #999;
}

#news-list .category {
  background: #666;
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  margin-right: 15px;
  border-radius: 2px;
}

/* 一覧を見るリンク */

.news-divider {
  align-self: stretch;
  border-left: 2px dotted #fff;
  margin: 0 20px 0 30px;
  width: 0;
}

.view-all {
  font-size: 12px;
  color: #888;
  text-decoration: underline;
  flex-shrink: 0;
  white-space: nowrap;
  align-self: center;
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}


/*===ABOUT / MENU / eat-in / shop information セクション===*/


section {
  margin: 0 auto 120px auto;
  padding: 0 20px;
}

/* アバウトセクション */

#about-section {
  margin-top: 80px;
  background-size: cover;
  background-color: var(--color-main2);
}

.about-content h2 {
  color: var(--color-text);
}

#about-section .about-mini-title {
  margin: 0;
  font-size: 10px;
  color: var(--color-text2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-content {
  max-width: 1050px;
  margin: 0 auto;
  padding: 50px 0;
  align-items: center;
  text-align: center;
  position: relative;
}

.about-content img {
  height: 100px;
}

.hb-img1 {
  position: absolute;
  top: 30px;
  left: 20%;
}

.hb-img2 {
  position: absolute;
  top: 30px;
  left: 69%;
}

.about-description p {
  font-size: 15px;
  color: var(--color-text3);
  margin-top: 30px;
  margin-bottom: 50px;
}

.about-button {
  display: inline-block;
  border: 1px solid #444;
  padding: 10px 30px;
  font-size: 13px;
}

.about-button:hover {
  background: var(--color-sub2);
  color: var(--color-sub3);
}

/* メニューセクション */

#recent-menu-section {
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
  /* background-image: url("../images/vintage-frame.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

#recent-menu-section .menu-mini-title {
  margin: 0;
  font-size: 10px;
  color: var(--color-text2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#recent-menu-section h2 {
  color: var(--color-text);
}

#recent-menu-contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.menu-item {
  transition: transform 0.3s ease;
}

.menu-item img {
  width: 60%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  filter: brightness(95%);
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* .menu-item:hover img {
  transform: translateY(-5px);
  filter: brightness(100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
} */

.menu-item h3 {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 5px;
}

.menu-item p {
  font-size: 14px;
  color: var(--color-text3);
}

#recent-menu-section .view-all {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid #ccc;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  text-align: center;
}

#recent-menu-section .view-all:hover {
  background-color: #444;
  color: #fff;
  border-color: #444;
}

/*イートインセクション */

#eat-in-section {
  background-color: #fff;
  padding: 100px 0;
  margin-bottom: 0;
}

.eat-in-container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.eat-in-image {
  flex: 1;
}

.eat-in-image img {
  width: 90%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 15px 15px 0 #e9ecef;
}

.eat-in-text {
  flex: 1;
}

#eat-in-section h2 {
  text-align: left;
  margin-bottom: 5px;
  font-size: 24px;
  color: var(--color-text);
}

.eng-title {
  font-size: 10px;
  color: var(--color-text2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.eat-in-text .description p {
  font-size: 15px;
  color: #555;
  line-height: 2;
  margin-bottom: 20px;
}

.eat-in-info {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.eat-in-info li {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
}

.eat-in-info li span {
  font-weight: bold;
  color: #444;
}

/*店舗情報セクション*/

#shop-info-section {
  background-color: #e9ecef;
  padding: 100px 0;
}

.shop-info-container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.shop-details {
  flex: 1;
}

#shop-info-section h2 {
  text-align: left;
  margin-bottom: 5px;
  font-size: 24px;
  color: #444;
}

.info-list {
  margin-top: 40px;
}

.info-item {
  display: flex;
  border-bottom: 1px solid #d1d4d7;
  padding: 15px 0;
}

.info-item dt {
  width: 120px;
  font-weight: bold;
  color: #555;
  font-size: 14px;
}

.info-item dd {
  flex: 1;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.access-note {
  margin-top: 20px;
  font-size: 13px;
  color: #888;
}

.shop-map {
  flex: 1.2;
  filter: grayscale(30%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



/* ===============================================
   MAIN CONTENT RESPONSIVE (メインコンテンツのレスポンシブ)
   =============================================== */




/* タブレット・スマホ向け (画面幅 768px以下) */
@media screen and (max-width: 768px) {

  /* --- 共通設定 --- */
  section {
    margin-bottom: 60px; /* セクション間の余白を半分に */
    padding: 0 20px;
  }

  /* --- メインビジュアル --- */
  .main-visual {
    height: 60vh; /* スマホでは少し高さを抑える */
  }

  .main-title p {
    font-size: 18px; /* タイトル文字を少し小さく */
    width: 80%; /* 横幅を確保して改行を防ぐ、または自然にする */
    margin: 0 auto;
  }

  /* --- ニュースセクション --- */
  #news-section {
    height: auto; /* 高さを固定せず中身に合わせる */
    padding: 30px 0;
  }

  .news-container {
    flex-direction: column; /* 縦並びにする */
    align-items: flex-start;
    padding: 0 20px;
  }

  .news-left-content {
    flex-direction: column; /* タイトルとリストを縦並びに */
    width: 100%;
    margin-bottom: 20px;
  }

  .news-title {
    align-items: flex-start; /* 左寄せ */
    padding-right: 0;
    margin-bottom: 15px;
    border-bottom: 1px dotted #ccc; /* スマホでは区切り線を入れると分かりやすい */
    width: 100%;
    padding-bottom: 10px;
  }

  .news-title h2 {
    font-size: 16px;
  }

  #news-list {
    width: 100%;
    padding: 0;
  }

  #news-list li {
    padding: 10px 0; /* 上下の余白を少し詰める */
    border-bottom: 1px solid rgba(255,255,255,0.1); /* 薄い線で区切る */
  }

  /* 「一覧を見る」ボタンの調整 */
  .news-divider {
    display: none; /* スマホでは縦線は消す */
  }

  #news-section .view-all {
    align-self: flex-end; /* 右下に配置 */
    margin-top: 10px;
  }

  /* --- ABOUTセクション --- */
  #about-section {
    margin-top: 40px;
  }

  .about-content {
    padding: 30px 0;
  }
  
  /* 装飾画像（浮いているパン）はスマホだと文字に重なるため非表示、
     もしくは static にして配置を変えるのが一般的 */
  .hb-img1, .hb-img2 {
    display: none; 
  }

  .about-description p {
    font-size: 14px;
    margin: 20px 0 30px 0;
    line-height: 1.8;
    text-align: left; /* スマホは左揃えの方が読みやすい場合が多い */
  }

  /* --- メニューセクション --- */
  #recent-menu-contents {
    grid-template-columns: repeat(1, 1fr); /* 1列にする */
    gap: 40px;
  }

  .menu-item img {
    width: 100%; /* 画像を横幅いっぱいに */
    max-width: 300px; /* 大きくなりすぎないように制限 */
    margin: 0 auto 15px auto;
    display: block;
  }

  /* --- イートインセクション --- */
  #eat-in-section {
    padding: 60px 0;
  }

  .eat-in-container {
    flex-direction: column; /* 画像とテキストを縦並びに */
    gap: 30px;
    padding: 0 20px;
  }

  .eat-in-image img {
    height: 250px; /* 高さを調整 */
    box-shadow: 10px 10px 0 #e9ecef; /* 影を少し小さく */
  }

  .eat-in-text h2 {
    font-size: 20px;
  }

  /* --- 店舗情報セクション --- */
  #shop-info-section {
    padding: 60px 0;
  }

  .shop-info-container {
    flex-direction: column; /* 情報と地図を縦並びに */
    gap: 40px;
    padding: 0 20px;
  }

  .shop-details {
    width: 100%;
  }

  .shop-map {
    width: 100%;
  }

  .shop-map iframe {
    height: 300px; /* 地図の高さをスマホ用に調整 */
  }
  
  /* 定義リストの調整 */
  .info-item {
    flex-direction: column; /* 項目名と内容を縦積みにする */
    align-items: flex-start;
    gap: 5px;
  }

  .info-item dt {
    width: 100%;
    margin-bottom: 2px;
    color: var(--color-text); /* 見出しっぽく色を濃く */
  }

  .info-item dd {
    padding-left: 10px;
  }
}



/* ===============================================
    ABOUTページ
   =============================================== */



/*===共通インナー幅===*/


.inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 40px;
}


/*===メインビジュアル（30vh）===*/


.about-hero {
  width: 100%;
  height: 30vh;
  position: relative;
  overflow: hidden;
  background-color: #2c2c2c;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.about-hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.about-hero-title h2 {
  font-size: 28px;
  letter-spacing: 0.2em;
}


/*===コンセプト===*/


.about-concept {
  padding: 120px 0;
  text-align: center;
  background-color: #fff;
  /* position: relative; */
}

#inner-about-contents {
  position: relative;
}

.about-concept .about-hb1 {
  height: 130px;
  position: absolute;
  top: -20px;
  left: 6%;
}

.about-concept .about-hb2 {
  height: 130px;
  position: absolute;
  top: -20px;
  left: 85%;
}

.about-concept p {
  line-height: 2.2;
  color: var(--color-sub2);
  font-size: 15px;
}

/* 三つのこだわり*/

.about-points {
  width: 100%;
  /* 共通の背景画像があればここで指定も可ですが、今回は個別に設定 */
}

.point-item {
  padding: 120px 0;
  background-attachment: fixed;
  /* スクロール時に背景が少し動くパララックス効果 */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* 各項目の背景画像（適宜パスを書き換えてください） */
#point-01 {
  background-image: url('../images/bg-flour.jpg');
}

/* 小麦粉の背景 */

#point-02 {
  background-image: url('../images/bg-wood.jpg');
}

/* 木目の背景 */

#point-03 {
  background-image: url('../images/bg-breads.jpg');
}

/* パンが並ぶ背景 */

/* 背景を少し暗くしてテキストを浮き立たせるオーバーレイ */
.point-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  /* 全体を20%暗く */
  z-index: 1;
}

.point-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  /* オーバーレイより上に表示 */
}

/* 2番目（偶数番）だけ左右反転 */
.point-right-img .point-inner {
  flex-direction: row-reverse;
}

.point-image {
  flex: 1;
}

.point-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 20px 20px 0 rgba(44, 44, 44, 0.8);
}

.point-text {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  /* 90%不透明の白 */
  padding: 50px;
  backdrop-filter: blur(5px);
  /* 背景を少しぼかす（モダンな表現） */
}

.point-text .number {
  display: block;
  font-size: 40px;
  color: #ccc;
  font-family: serif;
  font-style: italic;
  margin-bottom: 10px;
}

.point-text h4 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #2c2c2c;
  border-bottom: 2px solid #2c2c2c;
  display: inline-block;
  padding-bottom: 5px;
}

.point-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}


/* 4. イートイン（調整） */
/* イートインセクション全体の余白調整 */

.inner {
  max-width: 1050px;
  margin: 0 auto;
  /* ★左右の余白を自動にして中央へ */
  padding: 0 20px;
}


/* .about-eatin {
  padding: 100px 0;
  background-color: var(--color-main);
}

.section-title-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

.section-title-center h2 {
  margin: 0;
  display: inline-block;
}

.section-title-center .eng-title {
  margin: 10px 0 0 0;
  display: block;
}

.eat-in-main-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 50px auto;
}

.eat-in-main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;

} */

.about-eatin {
  padding: 80px 0; 
  background-color: var(--color-main);
}

.section-title-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.section-title-center h2 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin: 0;
}

.section-title-center .eng-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;   
  color: var(--color-text2);             
  margin: 8px 0 0 0;
}


.eat-in-main-image {
  width: 100%;          
  max-width: 500px;    
  margin: 0 auto;
  padding: 15px;       
  background: #fff;    
  box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
  border: 1px solid #ddd;
  margin-bottom: 20px; 
}

.eat-in-main-image img {
  width: 100%;
  height: auto;
  display: block;     
  filter: sepia(10%) contrast(105%); 
}

.eat-in-intro-text {
  text-align: center;
  margin-bottom: 60px;
}

.eat-in-intro-text p {
  font-size: 16px;
  line-height: 2;
  color: var(--color-sub2);
  margin-bottom: 20px;
}

/* 詳細情報（リスト形式） */
.eat-in-details {
  max-width: 700px;
  margin: 0 auto;
  border-top: var(--border-dot);
  /* rootで決めたドット線 */
  padding-top: 20px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  /* 薄い境界線 */
}

.detail-row dt {
  font-weight: bold;
  font-size: 14px;
  color: var(--color-text);
  width: 30%;
}

.detail-row dd {
  width: 70%;
  font-size: 14px;
  color: var(--color-text);
  text-align: right;
}


/* 5. 会社概要（シンプルかつ上品な表形式） */
.company-overview {
  background-color: #fff;
  padding: 100px 0 150px 0;
}

.section-title-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-center p {
  font-size: 10px;
  color: var(--color-text2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.company-list {
  max-width: 800px;
  margin: 0 auto;
}

.company-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.company-row dt {
  width: 200px;
  font-weight: bold;
  color: #444;
  font-size: 14px;
}

.company-row dd {
  flex: 1;
  color: #666;
  font-size: 14px;
}


/* ===============================================
   ABOUT PAGE RESPONSIVE (ABOUTページのレスポンシブ)
   =============================================== */

@media screen and (max-width: 768px) {
  /* --- 1. 共通設定 --- */
  .inner {
    padding: 0 20px; /* 左右の余白を縮小 */
  }

  /* --- 2. メインビジュアル --- */
  .about-hero {
    height: 25vh; /* スマホでは高さを少し抑える */
  }

  .about-hero-title h2 {
    font-size: 20px;
    letter-spacing: 0.1em;
  }

  /* --- 3. コンセプト --- */
  .about-concept {
    padding: 60px 0; /* 上下余白を詰める */
  }

  .about-concept .about-hb1,
  .about-concept .about-hb2 {
    display: none; /* スマホでは装飾用の浮遊画像を非表示に */
  }

  .about-concept p {
    font-size: 14px;
    text-align: left; /* 長い文章はスマホでは左寄せが読みやすい */
    line-height: 2;
  }

  /* --- 4. 三つのこだわり --- */
  .point-item {
    padding: 60px 0;
    background-attachment: scroll; /* モバイルでは固定背景を解除（動作を軽くするため） */
  }

  .point-inner,
  .point-right-img .point-inner {
    flex-direction: column; /* 全て縦並びにする */
    gap: 0; /* 画像とテキストの隙間は下のpaddingで調整 */
    padding: 0 20px;
  }

  .point-image {
    width: 100%;
  }

  .point-image img {
    height: 250px; /* 画像の高さを固定 */
    box-shadow: 10px 10px 0 rgba(44, 44, 44, 0.8); /* 影を少し小さく */
  }

  .point-text {
    width: calc(100% - 20px); /* 影の分を考慮して少し幅を調整 */
    margin: -40px auto 0; /* 画像に少し被せるスタイル */
    padding: 30px 20px;
  }

  .point-text .number {
    font-size: 30px;
  }

  .point-text h4 {
    font-size: 18px;
  }

  /* --- 5. イートインスペース --- */
  .about-eatin {
    padding: 60px 0;
  }

  .eat-in-main-image {
    max-width: 100%; /* スマホでは横幅いっぱい */
    padding: 10px;
  }

  .eat-in-intro-text p {
    font-size: 14px;
    text-align: left;
  }

  .detail-row {
    flex-direction: column; /* 項目名と内容を縦並びに */
    gap: 5px;
  }

  .detail-row dt,
  .detail-row dd {
    width: 100%;
    text-align: left;
  }

  .detail-row dd {
    padding-left: 10px;
    color: #666;
  }

  /* --- 6. 会社概要 --- */
  .company-overview {
    padding: 60px 0 100px 0;
  }

  .company-row {
    flex-direction: column;
    gap: 5px;
  }

  .company-row dt {
    width: 100%;
    font-size: 13px;
    color:var(--color-text);
  }

  .company-row dd {
    font-size: 14px;
    padding-left: 10px;
  }
}

/* ===============================================
    NEWSページ
   =============================================== */



.news-list-section {
  padding: 80px 0 120px;
  min-height: 600px;
  /* 記事が少なくてもフッターが浮かないように */
}

.news-archive-list {
  border-top: 1px dotted #2c2c2c;
  margin-bottom: 50px;
}

.news-archive-item {
  border-bottom: 1px dotted #2c2c2c;
}

.news-archive-item a {
  display: flex;
  align-items: center;
  padding: 30px 15px;
  text-decoration: none;
  transition: 0.3s;
}

.news-archive-item a:hover {
  background-color: #f9f9f9;
}

.news-archive-item .date {
  width: 140px;
  font-family: 'Lato', sans-serif;
  color: #999;
}

.news-archive-item .category {
  font-size: 11px;
  padding: 4px 15px;
  background: #f4f4f4;
  color: #666;
  margin-right: 40px;
  min-width: 90px;
  text-align: center;
}

/* 特別なカテゴリラベル */
.label-important {
  background: #2c2c2c !important;
  color: #fff !important;
}

.label-new {
  background: #e0d0b0 !important;
  color: #5d4037 !important;
}

.news-archive-item .title {
  flex: 1;
  font-size: 16px;
  color: #333;
}

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.page-btn.current {
  background: #2c2c2c;
  color: #fff;
  border-color: #2c2c2c;
}



/* ===============================================
   NEWS PAGE RESPONSIVE (NEWSページのレスポンシブ)
   =============================================== */

@media screen and (max-width: 768px) {
  /* --- 1. セクション全体の余白 --- */
  .news-list-section {
    padding: 40px 0 80px; /* 上下の余白を圧縮 */
    min-height: auto;
  }

  /* --- 2. ニュースリストの組み替え --- */
  .news-archive-item a {
    flex-direction: column; /* 横並びから縦並びに変更 */
    align-items: flex-start; /* 左寄せに揃える */
    padding: 20px 10px; /* 余白を調整 */
  }

  /* 日付の調整 */
  .news-archive-item .date {
    width: auto; /* 固定幅を解除 */
    font-size: 13px;
    margin-bottom: 8px; /* カテゴリとの間隔 */
  }

  /* カテゴリラベルの調整 */
  .news-archive-item .category {
    margin-right: 0;
    margin-bottom: 12px; /* タイトルとの間隔 */
    min-width: 80px;
    font-size: 10px;
    padding: 3px 10px;
  }

  /* タイトルの調整 */
  .news-archive-item .title {
    width: 100%;
    font-size: 15px;
    line-height: 1.5;
    color: #2c2c2c; /* 文字色を少し強調 */
  }

  /* --- 3. ページネーションの調整 --- */
  .pagination {
    gap: 10px; /* ボタン同士の隙間を少し狭く */
    margin-top: 20px;
  }

  .page-btn {
    width: 35px; /* ボタンを少し小さくして指で押しやすく */
    height: 35px;
    font-size: 14px;
  }

  /* --- 4. 装飾（石畳など） --- */
  .decoration-cobblestone {
    height: 20px; /* 装飾が大きすぎないように調整 */
  }
}

/* さらに小さい画面（スマホ縦持ち）用 */
@media screen and (max-width: 480px) {
  .news-archive-item .title {
    font-size: 14px; /* 文字サイズを微調整 */
  }
  
  /* 日付とカテゴリを横に並べたい場合はこちら */
  /*
  .news-archive-item .date {
    display: inline-block;
    margin-right: 15px;
  }
  .news-archive-item .category {
    display: inline-block;
  }
  */
}




/* ===============================================
   MENU PAGE STYLES
   =============================================== */


/*===メニューの最初のテキストセクション===*/


.menu-intro {
  padding: 120px 0; /* 上下の余白を多めにとって印象的に */
  background-color: var(--color-main);
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.menu-hb1 {
  height: 120px;
  position: absolute;
  top: 30px;
  left: -150px;
}

.menu-hb2 {
  height: 120px;
  position: absolute;
  top: 30px;
  left: 785px;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 2.2;      /* 行間を広くしてゆったりさせる */
  letter-spacing: 0.1em; /* 文字の間を少し開ける */
  color: var(--color-sub2);           /* 真っ黒より少し柔らかい色 */
  margin-bottom: 2rem;
}

.intro-text:last-child {
  margin-bottom: 0;
}

/* メニューカテゴリー全体 */
.menu-categories {
  padding: 100px 0;
  background-color: var(--color-base);
}

.menu-group {
  margin-bottom: 120px;
}

.menu-group:last-child {
  margin-bottom: 0;
}

/* カテゴリタイトル（下線と英語を添えて） */
.category-title {
  font-size: 24px;
  color: var(--color-text3);
  border-bottom: 1px solid #2c2c2c;
  padding-bottom: 15px;
  margin-bottom: 40px;
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.category-title span {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.1em;
}

/* グリッドレイアウト（3列） */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 1:1:1の3列 */
  gap: 60px 40px;
  /* 縦60px、横40pxの隙間 */
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  /* 画像の比率を統一 */
  object-fit: cover;
  margin-bottom: 20px;
  filter: grayscale(10%);
  transition: 0.3s;
}

/* .menu-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
} */

.menu-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-sub2);
}

.menu-card p {
  font-size: 14px;
  color: var(--color-text3);
  line-height: 1.6;
}

.menu-side {
  padding: 80px 0;
  background-color: #fff;
}

.side-menu-container {
  display: flex;
  gap: 80px;
  /* スープとドリンクの間隔 */
  justify-content: center;
}

.side-menu-group {
  flex: 1;
  max-width: 400px;
}

.side-group-title {
  font-size: 20px;
  color: var(--color-text3);
  border-bottom: 2px solid var(--color-main);
  padding-bottom: 10px;
  margin-bottom: 30px;
  letter-spacing: 0.2em;
}

.side-menu-group dt {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 15px;
  color: var(--color-sub2);
  margin-bottom: 5px;
}

.side-menu-group dd {
  font-size: 13px;
  color: var(--color-text3);
  margin-bottom: 25px;
  margin-left: 0;
}

.side-menu-group .price {
  font-family: serif;
}

/* ランチセクション背景色（少しだけトーンを変えて区切りを意識） */
.menu-lunch {
  padding: 100px 0;
  background-color: var(--color-main);
  border-top: 1px solid var(--color-sub);
}

/* 価格タグの装飾 */
.menu-card-img-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.menu-card-img-wrapper .price {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--color-sub2);
  color: #fff;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* ランチの注意書き */
.lunch-note {
  margin-top: 60px;
  text-align: center;
  padding: 30px;
  border: 1px solid var(--color-acc);
  background-color: #fff;
}

.lunch-note p {
  font-size: 13px;
  color: var(--color-text3);
  line-height: 2;
  margin: 0;
}

/* 既存のmenu-cardとの微調整 */
.menu-lunch .menu-card h4 {
  color: var(--color-text3);
  /* ランチタイトルをメインカラーに */
  margin-top: 10px;
}

.menu-lunch .menu-card img {
  margin-bottom: 0;
  /* ラッパーで余白を制御するため */
  filter: none;
  /* 料理は美味しそうに見せるためグレースケールを解除 */
}


/* ===============================================
   MENU PAGE RESPONSIVE (MENUページのレスポンシブ)
   =============================================== */

@media screen and (max-width: 768px) {
  /* --- 1. イントロセクション --- */
  .menu-intro {
    padding: 60px 0;
  }

  /* 浮いているパンの画像を非表示（画面幅を圧迫するため） */
  .menu-hb1, .menu-hb2 {
    display: none;
  }

  .intro-content {
    max-width: 100%;
  }

  .intro-text {
    font-size: 14px;
    text-align: left; /* スマホでは左寄せが読みやすい */
    padding: 0 10px;
  }

  /* --- 2. メニューグリッドの調整 --- */
  .menu-categories {
    padding: 60px 0;
  }

  .menu-group {
    margin-bottom: 60px;
  }

  .category-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  /* 全てのグリッドを一旦1列にする（新商品・季節限定・ランチ用） */
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* 定番商品（3番目のmenu-group）だけは2列にして一覧性を出す */
  .menu-group:nth-of-type(3) .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }

  /* 定番商品の時は文字を少し小さく調整 */
  .menu-group:nth-of-type(3) .menu-card h4 {
    font-size: 15px;
  }

  .menu-card h4 {
    font-size: 17px;
  }

  .menu-card p {
    font-size: 13px;
  }

  /* --- 3. サイドメニュー（スープ・ドリンク） --- */
  .menu-side {
    padding: 40px 0;
  }

  .side-menu-container {
    flex-direction: column; /* 縦並びにする */
    gap: 40px;
  }

  .side-menu-group {
    max-width: 100%;
  }

  .side-group-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  /* --- 4. ランチセット --- */
  .menu-lunch {
    padding: 60px 0;
  }


}

  /* 価格タグがスマホでも見やすいように少し調整 */




/* ===============================================
   CONTACT PAGE STYLES
   =============================================== */

.contact-form-section {
  padding: 100px 0;
  background-color: #fff;
}

.contact-intro {
  text-align: center;
  margin-bottom: 60px;
  line-height: 2;
  color: #555;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.form-group .required {
  font-size: 10px;
  background-color: #2c2c2c;
  color: #fff;
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: middle;
}

/* 入力エリアの共通スタイル */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 0;
  /* 角丸を消してシャープに */
  background-color: #fcfcfc;
  font-size: 16px;
  transition: all 0.3s;
}

.form-group textarea {
  resize: vertical;
  /* 縦方向にのみリサイズ可能 */
}

/* フォーカス時の色調整（ドットデザインを意識） */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c2c2c;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(44, 44, 44, 0.1);
}

/* 送信ボタン */
.form-submit {
  text-align: center;
  margin-top: 50px;
}

.submit-btn {
  background-color: #2c2c2c;
  color: #fff;
  padding: 20px 60px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #555;
}


/* ===============================================
   CONTACT PAGE RESPONSIVE (CONTACTページのレスポンシブ)
   =============================================== */

@media screen and (max-width: 768px) {
  /* --- 1. セクション余白の調整 --- */
  .contact-form-section {
    padding: 60px 0;
  }

  /* --- 2. イントロテキスト --- */
  .contact-intro {
    margin-bottom: 40px;
    padding: 0 10px;
    text-align: left; /* スマホでは左寄せの方が読みやすい */
  }

  /* 強制改行(<br>)をスマホでは無効化して自然な流れにする */
  .contact-intro br {
    display: none;
  }

  /* --- 3. フォーム要素の調整 --- */
  .contact-form {
    width: 100%;
    padding: 0 5px; /* 画面端との微調整 */
  }

  .form-group {
    margin-bottom: 25px;
  }

  .form-group label {
    font-size: 15px; /* ラベルを少し見やすく */
    margin-bottom: 12px;
  }

  /* 入力欄のパディングを少し調整 */
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group textarea {
    padding: 12px;
    font-size: 16px; /* iOSの自動ズーム防止 */
    -webkit-appearance: none; /* iOS特有の内側の影を消す */
  }

  /* --- 4. 送信ボタン --- */
  .form-submit {
    margin-top: 40px;
  }

  .submit-btn {
    width: 100%; /* スマホではボタンを横幅いっぱいに（押しやすさ重視） */
    padding: 18px 0;
    font-size: 15px;
  }
}

/* さらに小さい端末用の調整 */
@media screen and (max-width: 480px) {
  .contact-form-section {
    padding: 40px 0;
  }
  
  .form-group .required {
    margin-left: 5px;
    font-size: 9px;
  }
}



/* ===============================================
    SHOP INFOページ
   =============================================== */


.access-container {
  display: flex;
  gap: 50px;
  padding: 80px 0;
}

.access-map {
  flex: 1;
}

.map-dummy {
  width: 100%;
  height: 450px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-info {
  flex: 1;
}

.info-box {
  margin-bottom: 40px;
}

.info-box h3 {
  font-size: 20px;
  border-left: 4px solid #2c2c2c;
  padding-left: 15px;
  margin-bottom: 20px;
}

.info-box dl dt {
  font-weight: bold;
  margin-top: 15px;
  color: #2c2c2c;
}

.info-box dl dd {
  margin-left: 0;
  margin-bottom: 5px;
  color: #555;
}



/* ===============================================
   SHOP INFO RESPONSIVE (店舗情報のレスポンシブ)
   =============================================== */

@media screen and (max-width: 768px) {
  /* --- 1. レイアウトを縦並びに変更 --- */
  .access-container {
    flex-direction: column; /* 横並びを解除 */
    gap: 40px; /* 地図と情報の間の隙間 */
    padding: 40px 0; /* 上下の余白を圧縮 */
  }

  /* --- 2. 地図エリアの調整 --- */
  .access-map {
    width: 100%;
    order: 1; /* 地図を先に表示 */
  }

  .map-dummy {
    height: 300px; /* スマホでは高さを少し抑えてスクロールしやすく */
  }

  /* 実際のGoogle Map(iframe)を埋め込んだ時用の設定 */
  .access-map iframe {
    width: 100% !important;
    height: 300px !important;
  }

  /* --- 3. 店舗情報エリアの調整 --- */
  .access-info {
    width: 100%;
    order: 2;
  }

  .info-box {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .info-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .info-box dl dt {
    font-size: 15px;
    margin-top: 12px;
  }

  .info-box dl dd {
    font-size: 14px;
    line-height: 1.6;
  }

  /* --- 4. 駐車場案内の調整 --- */
  .info-box p {
    font-size: 14px;
    line-height: 1.7;
    background-color: #f9f9f9; /* 少し背景色をつけて読みやすく */
    padding: 15px;
    border-radius: 4px;
  }
}

/* さらに小さい画面（スマホ縦） */
@media screen and (max-width: 480px) {
  .map-dummy {
    height: 250px; /* よりコンパクトに */
  }
  
  .access-container {
    padding: 30px 0 60px;
  }
}



/* ===============================================
    PRIVCYページ
   =============================================== */


.inner-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px;
}

.privacy-section h1 {
  font-size: 28px;
  margin-bottom: 40px;
  text-align: center;
}

.privacy-section h2 {
  font-size: 20px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.privacy-section p,
.privacy-section li {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}


/* ===============================================
   PRIVACY PAGE RESPONSIVE (プライバシーポリシー)
   =============================================== */

@media screen and (max-width: 768px) {
  /* --- 1. 全体の余白調整 --- */
  .inner-narrow {
    padding: 60px 20px; /* 上下の余白を100pxから60pxに圧縮 */
  }

  /* --- 2. 見出しの調整 --- */
  .privacy-section h1 {
    font-size: 22px; /* スマホで見ても圧迫感のないサイズに */
    margin-bottom: 30px;
  }

  .privacy-section h2 {
    font-size: 18px; /* 本文より少し大きく、メリハリをつける */
    margin: 30px 0 15px;
    padding-bottom: 8px;
  }

  /* --- 3. 本文の読みやすさ --- */
  .privacy-section p,
  .privacy-section li {
    font-size: 14px; /* 小さすぎず、読みやすいサイズ */
    line-height: 1.7; /* 行間を少し詰め、まとまりを出す */
    margin-bottom: 12px;
  }

  /* リストの左側の余白を少し調整 */
  .privacy-section ul {
    padding-left: 20px;
  }
}

/* さらに小さい画面用の微調整 */
@media screen and (max-width: 480px) {
  .privacy-section h1 {
    font-size: 20px;
  }
  
  .inner-narrow {
    padding: 40px 15px;
  }
}