@charset "utf-8";


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Yomogi&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&family=Noto+Serif+JP&display=swap');




/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #555;		/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対となる色*/
	
	--space-large: 0vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
	--space-small: 0vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*全体の設定
---------------------------------------------------------------------------*/
body * {
  box-sizing: border-box;
}

html,body {
	font-size: 13px;	/*基準となるフォントサイズ*/
	height: 100%;
  overflow-x: hidden; /* 横スクロールを隠す */
  max-width: 100vw;   /* ビューポート幅以上に広がらない */
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

	/*画面幅1200px以上の追加指定*/
	@media screen and (min-width:1200px) {

	html, body {
		font-size: 14px;
	}

	}/*追加指定ここまで*/

	/*画面幅1600px以上の追加指定*/
	@media screen and (min-width:1600px) {

	html, body {
		font-size: 1vw;
	}




	}/*追加指定ここまで*/




body {
	margin: 0;padding:0;
  overflow-x: hidden;
  width: 100%;
	font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #ffffff;	/*背景色*/
	color: var(--primary-color);		/*文字色。冒頭で指定しているprimary-colorを読み込みます。*/
	line-height: 2;		/*行間*/

}

h2 {
  font-size: 26px;
  color: #7c6450;  /* 必要に応じて統一 */
  margin-bottom: 0px;
  font-weight: normal;
}




/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*input*/
input {font-size: 1rem;}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}

/* オンラインショップアイコン */
.floating-shop-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FF5100;
  color: white;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  z-index: 1000;
  transition: background-color 0.3s, transform 0.2s;
}

.floating-shop-button:hover {
  background-color: #e04800;
  transform: scale(1.05);
}

.shop-icon {
  width: 24px;
  height: 24px;
}


/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
/* #container {
  height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between; 
}  */

.container {
  max-width: 1200px;     /* 最大幅 */
  margin: 0 auto;        /* 中央寄せ */
  padding: 0 20px;       /* スマホ対策の左右余白 */
  box-sizing: border-box;
}

section {
  padding: 0px 0px; /* 上下40px 左右20pxの内側余白 */
  margin-bottom: 0px; /*下にセクション間の余白 */
}

/* メニュー部分 */
nav{
text-align: center;
padding: 1rem 0; /*上下の余白を追加 */
}

nav ul{
margin: 0 ;
padding: 0 ;
}

nav ul li{
list-style: none;
display: inline-block;
width: 10%;
min-width: 80px;
margin: 0 1rem; 
}

nav ul li a{
text-decoration: none;
border: none;          /* ボーダーがある場合も削除 */
outline: none;         /* フォーカス時の枠も削除 */
color: #333;
line-height: 1.0;
}

nav ul li.current a{
color: #F33135;
}
nav ul li a:hover{
color: #999797;
}

.menu-bar a:hover {
color: #000;
}

.content-wrapper .text {
  font-size: 1.1rem;
  word-break: keep-all;
  white-space: normal;
  line-break: strict;
}


@media screen and (max-width: 769px) {
  .menu-bar {
    display: none;
  }
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/* ヘッダー全体 */
/* PCは非表示 */
.site-header { 
  text-align: right;
  position: fixed; /* ← 固定に変更 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* ← 他の要素より前に出す */
  display: flex; 
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  height: 90px;

  /* 背景を透かす */
  background-color: rgba(255, 81, 0, 0.8); /* ← 半透明オレンジ */
  backdrop-filter: blur(5px); /* オプション：背景ぼかし */
  -webkit-backdrop-filter: blur(5px); /* Safari対応 */

  border-bottom: 1px solid rgba(255, 255, 255, 0.4); /* 半透明の白線 */
}


/* ロゴサイズ */
.logo img {
  height: auto;
  width: 100%;
  max-width: 100px;  /* ← 最大サイズ */
  min-width: 100px;  /* ← 最小サイズ（つぶれ防止） */
  object-fit: contain;
}


.menu-bar {
  padding: 0 20px;
}

.menu-bar ul {
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  align-items: center;
  /* gap: -5rem; ← メニュー間＆インスタの間の余白を整える */
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-bar li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  /* font-size: 1rem; */
}


.ig-wrap {
  font-size: 2rem;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  height: auto;
}

.online-shop-icon {
  width: 30px;    /* または必要なサイズに変更 */
  height: auto;
}

.nav-link:hover .online-shop-icon {
  opacity: 0.8;
  transform: scale(1.05);
  transition: all 0.3s ease;
}


/* ハンバーガーアイコン（3本線） */
/* デフォルトは非表示（PC） */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-top: 5px;
}

.menu-label {
  font-size: 12px;
  color: #fff;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* メニュー開いたときにハンバーガー→×に変化 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* モバイルメニュー本体（全画面） */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #EA9C66;/* ← 半透明オレンジ */
  z-index: 100;
  padding-top: 100px;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  z-index: 101;
}

/* モバイル表示設定 */
@media screen and (max-width: 768px) {
  /* モバイルはヘッダー表示 */
  .site-header {
    display: flex;
  }

  /* ハンバーガーアイコンも表示 */
  .hamburger {
    display: flex;
  }
}


/*header（ロゴが入った最上段のブロック）ここまで
---------------------------------------------------------------------------*/

/* -------------スライドショー部分-------------------------------------------- */

.slider {
  position: relative;
  width: 100%;
  height: 100vh; /* 高さは必要に応じて調整 */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ここが黒枠防止のポイント */
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.center-logo img {
  width: 100vw;
  max-width: 500px;
  height: auto;
}



@media (max-width: 768px) {
  .slider {
    height: 70vh; /* スマホでは高さを少し低めに */
  }

  .center-logo img {
    width: 300px;       /* または max-width: 60px; にしてもOK */
  }
}


/* ------------/* トップ画像　画像が自動で流れる ------------------- */




/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
 main {
	flex: 1 0 auto;
	overflow-x: hidden;
	padding: 0vw 0 0;
} 

/* h2 見出し（中央揃え・統一） */
  main h2 {
	margin: 0;
	padding: 0;
	font-size: 2.0rem;
	font-weight: normal;
  margin-top: 20px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;	/* ← 中央に */
	text-align: center;		/* ← テキストも中央に */
} 

/* h2 のサブテキスト */
 main h2 span.sub-text {
	display: inline-block;
	border-top: 1px solid var(--primary-color);
	font-size: 0.9rem;
	opacity: 0.6;
	letter-spacing: 0.1rem;
	padding-top: 2rem;
	text-align: center;
	width: 100%;				/* ← 中央揃えのために必要 */
	 box-sizing: border-box;
} 

/* 見出し上のラインを消すスタイル */
  main h2.no-line span.sub-text {
	border: none;		/* ← "10" は正しくないため "none" に修正 */
	padding-top: 0;
} 

/* h3 見出し（中央揃え・統一） */
main h3 {
	font-weight: 600;
	font-size: 1.4rem;
	text-align: center;		/* ← 中央に揃える */
} 




/* ------------------/* about部分 ---------------------------------- */

.box1 {
  position: relative; /* ← これを必ず追加 */
  overflow: hidden;   /* 背景がはみ出すのを防ぐ */
  padding: 2rem 1rem; /* 適宜調整 */
  background-color: #fff; 
}

.box1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/information.jpg');
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1; /* 薄め */
  z-index: 0;
  pointer-events: none;
  /* 左上と右下を斜めにカット */
  /* clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%); */
}

.box1 .content-wrapper {
  position: relative; /* テキストや画像を背景より上に */
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
}

.box1 h2 .main-text {
  display: block;
  color:#7c6450;
  margin-bottom: 0px;
}

.box1 h2 .sub-text {
  display: block;
  font-size: 1rem;
  color: #888;
}

/* コンテンツ横並び */
.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* 画像部分 */
.content-wrapper .image {
  flex: 1 1 40%;
  min-width: 300px;
}

.content-wrapper .image img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト部分 */

.content-wrapper .text {
  flex: 1 1 45%;
  min-width: 280px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  word-break: keep-all;
  white-space: normal;
  line-break: strict;
  margin-top: 10rem;
  margin-bottom: 100px;
}

/* ボタン */
.btn1 {
  margin-top: 5rem;
  text-align: center;
}

.btn1 a {
  display: inline-block;
  background-color: #ff6600;
  color: #fff;
  padding: 0.6rem 2rem;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .content-wrapper .text {
    flex: 1 1 100%;     /* ← スマホでは100%でしっかり表示 */
    min-width: 0;       /* ← 横スクロール防止のためauto/0 */
    width: 100%;        /* ← 明示的に100%指定して安全に */
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;

    /* 修正ポイント */
    word-break: normal;      /* keep-allを解除 */
    overflow-wrap: break-word; /* 長い語句の改行を許容 */
  }
}

/* ------------aboutここまで -------------------------------------------*/

/*------------------挿絵--------------------------------------*/


.fullwidth-image-fixed {
  position: relative;
  width: 100vw;
  aspect-ratio: 5 / 1; /* ← 横5:縦1の長方形を維持 */
  overflow: hidden;
}

.fullwidth-img-fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}


/* .fullwidth-image-fixed {
  width: 100vw;
  height: 300px;    
  overflow: hidden;
}

.fullwidth-img-fixed {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top; */


/* ----------------------shop紹介の項目------------------------------ */

#shop-list {
  padding: 2rem 1rem;
  background-color: #fff;
}

.shop-title {
  text-align: center;
  margin-bottom: 10rem;
  font-weight: normal;
}

.shop-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.shop-card {
  position: relative;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* .shop-image {
  flex: 0 0 600px;
} */

.shop-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border: none;
  border-radius: 0;
}

.shop-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.shop-name {
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
}

.shop-detail {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.shop-buttons {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.map-link {
  background: #8cf;
  color: #fff;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  transition: background-color 0.3s;
  white-space: nowrap;
  margin-bottom: 20px;
}

.map-link:hover {
  background-color: #555;
}

.copyright-fixed {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 2rem;
}

/* モバイル対応：画像の下に情報を配置（オーバーレイ解除） */
@media screen and (max-width: 768px) {
  .shop-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .shop-image {
    width: 100%;
    height: auto;  /* ← 明示しておく */
  }

  .shop-info {
    position: static;
    display: flex;
    flex-direction: column;
    background: none;
    align-items: flex-start;
    padding: 1rem 1rem 0 1rem;  /* ← 下の余白を減らす */
    text-align: left;
    margin-top: 0;              /* ← 追加 */
  }

  .shop-card img {
    margin-bottom: 0;           /* ← 万が一imgに余白があれば削除 */
  }

  .shop-buttons {
    margin-top: 0.5rem;
    flex-direction: row;
    align-items: flex-start;
  }
}



/* ----------------------shop紹介の項目ここまで------------------------------ */

/* ------------------------------------ニュース項目------------------------------------*/ 
/* ニュースリスト全体 */

.news-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  transition: background-color 0.3s;

}

.news-list img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0; /* ← 画像が縮まないように */
}

.news-list {
  list-style: none;
  margin: 0 auto;           /* ← 中央寄せ */
  padding: 0 20px;          /* ← 左右余白（スマホ対策） */
  max-width: 960px;         /* ← 最大幅を制限して中央に */
  border-bottom: 1px solid #ccc;
}

.news-text {
  display: flex;
  flex-direction: column;  /* ← 縦並び */
  justify-content: center;
  gap: 0.3rem;
}

.news-date {
  font-size: 0.9rem;
  color: #888;
  white-space: nowrap;
  margin: 0;
}

.news-title {
  font-size: 15px;
  font-weight: normal;
  margin: 0;
}


/* モーダル共通 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 80%;
  height: 80%;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  padding: 1.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 0px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  margin-top: 30vh;
  animation: slideFade 0.4s ease;
  text-align: center; /* ← 左揃え */
}

@media screen and (min-width: 1025px) {
  .modal-content {
  /* margin: 20vh 5% 0 auto;  上20vh / 右5% / 左auto → 右寄せ */
  margin: 20vh auto 0 auto; /* ← 上から20vh、左右は auto で中央寄せ */
  }
}


.modal-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold; /* ← 太字に変更 */
  text-align: center;   /* ← 左揃え */
  line-height: 1.5;
}

.modal-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 10px; /* ← 下に余白追加 */
}

.modal-content img {
  width: 80%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 0px;
  margin: 1.5rem auto 1rem auto;
  display: block;
  padding:0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideFade {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media screen and (max-width: 768px) {
  .news-title {
  font-size: 0.9rem;
}

  .modal-content {
    padding: 1rem;
    font-size: 0.85rem;
    margin-top: 12vh;
    text-align: left;
  }

  .modal-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 10px; /* ← スマホでも余白維持 */
  }

  .modal-content img {
    max-height: 200px;
    width: 100%;
  }

  .modal-content h3 {
    font-size: 1rem;
  }


  .close {
    font-size: 20px;
    top: 8px;
    right: 12px;
  }
}


/* --------------------------ニュースここまで---------------------------------- */



/*----------------------- ピックアップ商品の項目-------------------------------- */ 

.pickup-section {
  padding: 60px 20px;
  background: #fefefe;
  text-align: center;
}

.pickup-title {
  margin-bottom: 40px;
  font-weight: normal;
  color: #7c6450;
  font-size: 2rem;
}

.pickup-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
  max-width: 1263px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.pickup-item {
  width: 329px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.pickup-item:hover {
  transform: translateY(-5px);
}

.pickup-image {
  width: 100%;
  height: auto;
  aspect-ratio: 329 / 177;
  object-fit: cover;
  border-radius: 0;
}

.item-text {
  margin-top: 12px;
  text-align: center;
}

.item-title {
  font-size: 20px;
  color: #000;
  margin-bottom: 4px;
  line-height: 1.4;
}

.furigana {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
  line-height: 1.4;
}

.item-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  text-align: left;
}

/* サブテキストとボタン */
.pickup-subheading {
  margin-top: 40px;
  font-size: 1rem;
  color: #777;
}

.pickup-footer {
  margin-top: 20px;
}

.view-more {
  display: inline-block;
  padding: 10px 24px;
  background-color: #FF5100;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.view-more:hover {
  background-color: #5c4839;
}

/* @media (max-width: 768px) {
  .pickup-grid {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .pickup-item {
    width: 100%;
  }

  .item-desc {
    text-align: center;
  }
}

 */

@media (max-width: 768px) {
  .pickup-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .pickup-item {
    width: 100%; /* スマホでは横幅100%に */
    max-width: 500px; /* 必要なら最大幅も制限可能 */
  }
}

/* ------------------/* grandメニュー文字列------------------------ */

/* .grand-menu {
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url('/images/kodawari-2\'.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  z-index: -10;
} */

.grand-menu {
  position: relative; /* 擬似要素の基準になる */
  padding: 40px 20px;
  background-image: url('../images/Sweets.back.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  z-index: 0;
  overflow: hidden; /* 擬似要素のはみ出しを防ぐ */
}

/* 半透明の白レイヤーを重ねる */
.grand-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8); /* ←白＋透明度で画像を薄く見せる */
  z-index: 1;
}

/* 中のコンテンツは上に表示 */
.grand-menu > * {
  position: relative;
  z-index: 2;
}




.grand-menu h2 {
  font-size: 26px;
  color: #7c6450;
  margin-bottom: 40px;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;       /* ← 全体幅を制限して中央に寄せる */
  margin: 0 auto;         /* ← 中央寄せ */
  justify-items: center; /* ← 各項目を中央揃え */
}

.menu-item {
  background-color:#50301c;
  border: 1px solid #fff;
  padding: 5px 20px 5px 20px;
  width: 100%;
  max-width: 160px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 30px;
}


.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.title {
  font-size: 20px;
  color: #fff;
  font-weight: normal;
  margin: 0;
  line-height: 1.1;
  text-decoration: none;
}

.subtitle {
  font-size: 13px;
  color: #fff;
  margin: 6px 0 0;
  line-height: 1.4;
}

/* レスポンシブ対応（スマホ） */
@media (max-width: 768px) {
  .menu-items {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ------------------/* grandmenu文字列ここまで------------------------ */




/*----------------------限定メニュー関連-------------------------------------*/
.limited-menu {
  position: relative; /* 擬似要素の基準になる */
  padding: 40px 20px;
  background-image: url('../images/limitedback.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  z-index: 0;
  overflow: hidden; 
}

.limited-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8); /* ←白＋透明度で画像を薄く見せる */
  z-index: 1;
}

/* 中のコンテンツは上に表示 */
.limited-menu> * {
  position: relative;
  z-index: 2;
}


.limited-menu h2 {
  font-size: 26px;
  color: #7c6450;
  margin-bottom: 40px;
}

.limited-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  justify-items: center;
}

.limited-item {
  background-color: #50301c;;
  border: 1px solid #fff;
  padding: 5px 20px 5px 20px;
  width: 100%;
  max-width: 160px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 30px;
}

.limited-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.limited-item .title {
  font-size: 20px;
  color: #fff;
  font-weight: normal;
  margin: 0;
  line-height: 1.1;
}

.limited-item .subtitle {
  font-size: 13px;
  color: #fff;
  margin: 6px 0 0;
  line-height: 1.4;
}

/* レスポンシブ対応（スマホ） */
@media (max-width: 768px) {
  .limited-items {
    grid-template-columns: repeat(2, 1fr);
  }
}


/*---------------------- カテゴリ 四角メニューここまで-------------------------------------*/



/*------------------------- フッダー部分------------------------------------------------- */


.site-footer {
  background-color: rgba(255, 81, 0, 0.8); /* ← 半透明オレンジ */
  backdrop-filter: blur(5px); /* オプション：背景ぼかし */
  -webkit-backdrop-filter: blur(5px);
  text-align: center;
  padding: 40px 20px;
  color: #fff;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 15px;
}

.shop-link {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.divider {
  color: #fff;
}

.instagram-link .insta-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.9;
}

.instagram-link i {
  font-size: 24px;
  color: #fff;
}




/* -------------------/* aboutページ遷移後の仕様 /-------------------------*/
/* Aboutセクション全体 */
section.about {
  position: relative;
  width: 100%;
  padding: 60px 60px;
  padding-top: 90px;
  background-color: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

/* 背景画像（セクション右側、ロゴに合わせて上から表示） */
section.about::before {
  content: '';
  position: absolute;
  top: 63px;
  right: 0;
  width: 55%;
  height: 89%;
  background-image: url('../images/robnew.webp'); /* 画像パスを正確に */
  background-size: cover;
  background-position: top calc(100% + 30px);
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
}

/* セクション見出し */
.about h2 {
  font-size: 40px;
  margin-left: 30px;
  margin-bottom: px;
  position: relative;
  z-index: 2;
}

/* ロゴ画像 */
.logo-image {
  display: block;
  margin: -50px 0 40px 20px;
  max-width: 350px;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Aboutコンテンツ横並び */
.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* 左側テキストと画像 */
.about-content .text {
  width: 48%;
  font-size: 17px;
  line-height: 2.2;
}

/* 縦に重なる画像 */
.images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.sub-photo1,
.sub-photo2 {
  width: 80%;
  max-width: 350px;
  height: auto;
  border-radius: 0px;
}

.sub-photo2 {
  margin-left: 100px;
  margin-top: -30px; /* 少し重ねて見せる */
}

/* 右側：背景上のテキストエリア */
.about-right {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  margin-top: 0px; /* 任意の数値で下にずらす */
}

/* 背景画像の上に載るテキスト */
.text-on-bg {
  font-size: 18px;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  line-height: 2.2;
}


/* Produceセクション */
.produce h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
}

.profile {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9; /* 背景少しグレーで区切り感 */
}

.profile img {
  width: 150px;
  height: auto;
  border-radius: 8px;
}

.profile .info {
  flex: 1;
}

.profile .info h3 {
  margin-top: 0;
}

.back-button {
  position: fixed; /*画面左上に固定 */
  top: 20px;
  left: 20px;
  font-size: 16px;
  color: #ff6600; /* 好きな色に変更可能 */
  text-decoration: none; /* 下線なし */
  z-index: 99999;
}

.back-button:hover {
  text-decoration: underline; /* ホバー時に下線出すのもアリ */
  color: #000; /* ホバー時の色も変更可 */
}

@media screen and (max-width: 768px) {
  section.about {
    padding: 40px 20px;
  }

  section.about::before {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    opacity: 0.2;
  }

  .about h2 {
    display: none;
    font-size: 28px;
    margin-left: 0;
    margin-top: 0px;
    text-align: center;
  }

  .logo-image {
    max-width: 200px;
    margin: -20px auto;
    margin-top: 220px;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .about-content .text,
  .about-right {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .images {
    align-items: center;
    margin-top: 20px;
  }

  .sub-photo1,
  .sub-photo2 {
    display: none;
    width: 100%;
    max-width: 300px;
    margin-top: 50px;
  }

  .sub-photo2 {
    margin-left: 0;
    margin-top: 5px;
  }

  .about-right {
    margin-top: 0;
  }

  .text-on-bg {
    font-size: 13px;
    padding: 10px;
  }

  .profile {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .produce h2 {
  font-size: 30px;
  }

  .profile img {
    width: 120px;
  }

  .profile .info {
    text-align: center;
  }

}


/* -------------------------SWEETS遷移後の仕様---------------------------------- */

.header-image {
  position: relative;
  background-image: url('../images/Sweets.back.jpg');
  background-size: cover;
  /* background-position: center; */
  background-repeat: no-repeat;
  min-height: 360px;
  border-radius: 10px;

  /* テキストの中央寄せ（重複削除して統合） */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2em 1em;

  color: #000000; /* デフォルト文字色（補助） */
  overflow: hidden;
}

/* 半透明レイヤー（背景用） */
.header-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 0;
}

/* 中のテキストを上に表示 */
.header-image h1,
.header-image p {
  position: relative;
  z-index: 1;
  color: #000000; /* ← 透明でなく黒に修正 */
}

/* h1専用スタイル */
.header-image h1 {
  font-size: 3.5em;
  margin: 0;
  font-weight: normal;
}

/* p専用スタイル */
/* .header-image p {
  font-size: 1.2em;
  margin: 5px 0;
} */


section.category {
  padding: 0 40px; /* 左右に40pxの余白 */
}

.category {
margin: 0px 0;
padding: 60px;
}

.category h2 {
font-size: 2em;
border-bottom: 1.5px solid #ff6600;
display: inline-block;
padding-bottom: 0px;
width: 100%;
margin-bottom: 20px;
}

.items {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 横4列に固定 */
  gap: 23px;
  margin-bottom: 0px;
}

.item p {
  margin-top: 10px;
  margin-bottom: 8px; /* 必要に応じて調整（デフォルトは16px） */
  line-height: 1;    /* 行の高さも少し詰める */
}


.item {
  cursor: pointer;
  text-align: center;
}

.item img {
  width: 100%;
  aspect-ratio: 279 / 198; /* これで明確に比率を指定 */
  object-fit: cover;       /* 画像を枠にフィットさせて切り抜く */
  display: block;
  border-radius: 0px;
}

.icon-row {
  margin-top: 0px;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.icon-row img {
  width: 60px;
  height: auto;
  object-fit: contain; /* 追加：縦横比を保って収める */
  aspect-ratio: 1 / 1;  /* 追加：縦横比を固定（正方形アイコンなら） */
}

/* モーダル全体 */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* モーダル中身 */
.modal-content {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-height: 500px;
  max-width: 500px;
  position: relative;
  text-align: center;
}

/* 画像 */
.modal-content img {
  max-height: 100%;
  max-width: 100%;
  /* height: auto; */
}

/* 閉じるボタン */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}



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

  /* 商品レイアウトを2列に */
  body.sweets-page .items {
    grid-template-columns: repeat(2, 1fr);
  }

  .hamburger {
    display: flex;
  }

  /* ナビの非表示 */
  .main-nav {
    display: none;
  }

   .header-image p {
    max-width: 98%;
    margin: 0 auto;
  }

}



/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.bg1 {background: #f0f0f0;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}


