@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: 1090px) {
  .menu-bar {
    display: none;
  }
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/* ヘッダー全体 */
/* PCは非表示 */
.site-header { 
  text-align: right;
  position: fixed; /* ← 固定に変更 */
  top: 0px;
  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: 1090px) and (min-width: 769px) {
 .site-header {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  overflow-x: visible; /* ← 左右のはみ出し表示を許可 */
  }
  .logo img {
    max-width: 80px;
    min-width: 80px;
  }

  .menu-bar li a {
    font-size: 0.85rem;
    padding: 0 6px;
  }

  .menu-bar ul {
    gap: 8px;
    flex-wrap: nowrap;
  }

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

  .hamburger-wrapper {
    margin-left: 5px;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }

  .menu-label {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  /* 縮小許容設定 */
  .menu-bar {
    flex-shrink: 1;
    min-width: 0;
  }

  .logo,
  .hamburger-wrapper {
    flex-shrink: 0;
  }
}



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

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


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

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

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

.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: 50vh; /* スマホでは高さを少し低めに */
  }

  .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.webp');
  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;
  flex-wrap: wrap;
  gap: 2rem; /* ← 間隔を適切に */
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 20px; /* ← 左右に余白を確保 */
}


/* 画像部分 */
.content-wrapper .image {
  flex: 1 1 30%;  /* ← 40%から35%に変更 */
  min-width: 200px; /* ← 少し小さく */
}

.content-wrapper .image img {
  width: 100%;
  max-width: 100%;  /* ← 保険として追加 */
  height: auto;
  display: block;
}

/* テキスト部分 */

.content-wrapper .text {
  flex: 1 1 45%;
  min-width: 280px;
  max-width: 100%; /* ← これを追加してはみ出し防止 */
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.8;
  white-space: normal;
  word-break: break-word; /* ← 長い語句が折り返されるように */
}

/* .content-wrapper .text {
  flex: 1 1 45%;
  min-width: 280px;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem); /* ←これで可変に */
  /* line-height: 1.8;
  color: #333;
  word-break: keep-all;
  white-space: normal;
  line-break: strict;
  margin-top: clamp(2rem, 6vw, 10rem);     /* 上マージンも可変に */
  /* margin-bottom: clamp(2rem, 8vw, 100px);  下マージンも可変に */
 */ */

.no-break {
  white-space: nowrap; /* ←改行を禁止する */
}



/* .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ここまで -------------------------------------------*/


/* ----------------------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;
}

/* === PC時（768px以上）用のレイアウト調整 === */
@media screen and (min-width: 769px) {
  .shop-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .shop-upper {
    display: block;
    width: 100%;
  }

  .shop-lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  .shop-detail {
    flex: 1;
  }

  .shop-buttons {
    margin-left: auto;
  }

  .map-link {
    margin-bottom: 0; /* PC時の下余白をなくす */
  }
}

/* === モバイル用（既存のままでOK／微調整） === */
@media screen and (max-width: 768px) {
  .shop-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static; /* ← これが重要 */
  }

  .shop-image {
    width: 100%;
    height: auto;
    margin-bottom: 0; /* 画像下の余白を確保したい場合はここに追加 */
  }

  .shop-info {
    position: static !important; /* ← 強制的に重なりを防止 */
    background: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    width: 100%;
  }

  .shop-upper,
  .shop-lower {
    width: 100%;
  }

   .shop-lower {
    display: flex;
    flex-direction: row;
    align-items: center;         /* ← 高さを揃える */
    justify-content: space-between;
    flex-wrap: wrap;             /* テキスト長い時折返し可 */
    width: 100%;
    gap: 10px;
  }

  .shop-detail {
    flex: 1;                     /* ← できるだけ幅を使う */
    margin: 0;
  }

  .shop-buttons {
    flex-shrink: 0;
  }

  .map-link {
    margin-bottom: 0;           /* ← 高さがずれないように調整 */
    white-space: nowrap;
  }
  
}


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

/* ------------------------------------ニュース項目------------------------------------*/ 
#news {
  padding: 0 20px;
}

.news-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ニュース項目 */
.news-list li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 16px 0;
  border-bottom: 1px solid #ccc;
  position: relative;
  background-color: #fff;
}

/* 下線に左右余白を追加 */
.news-list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  height: 1px;
  background-color: #ccc;
}

/* デフォルトのborder-bottomは見えなくする */
.news-list li {
  border-bottom: none;
}

.news-list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  gap:2rem;
}

/* 画像 */
.news-list img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0px;
}

/* テキスト部分 */
.news-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-date {
  font-size: 0.9rem;
  color: #888;
}

.news-title {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.4;
}

.sp-only {
  display: none;
}


/* モバイル対応 */
@media (max-width: 600px) {
  #news {
    padding: 0 16px;
  }

  .news-list li a {
    flex-direction: row;
    align-items: flex-end;
    gap: 1rem;
  }

  .news-list img {
    width: 80px;
    height: 80px;
  }

  .news-date {
    font-size: 0.8rem;
  }

  .news-title {
    font-size: 0.95rem;
  }

  .news-list li::after {
    left: 10px;
    right: 10px;
  }

  .sp-only {
    display: inline;
  }
  
  
}


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



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

.pickup-section {
  padding: 10px 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: 14px;
  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; /* 必要なら最大幅も制限可能 */
  }
}

/* ------------------/* 新限定メニュー文字列------------------------ */

.limited-menu-section {
  text-align: center;
  padding: 40px 20px;
}

.limited-menu-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  /* font-weight: bold; */
  letter-spacing: 1px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; /* ← 少し狭めて画像を広く */
  max-width: 1100px; /* ← 画像を大きくするために広げた */
  margin: 0 auto;
}

.image-grid a img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.image-grid a:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
    max-width: 90%; /* ← 横幅を画面の90%に制限 */
    margin: 0 auto;
  }

  .limited-menu-section {
    padding: 30px 10px; /* ← パディングも少し内側に */
  }

  .limited-menu-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}



/* ------------------/* 新限定メニュー文字列ここまで------------------------ */




/*----------------------限定メニュー関連-------------------------------------*/
.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);
  }
}


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

/* --------------------------新grandmenu------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.product-item {
  display: block;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: scale(1.05);
}

.product-item img {
  width: 100%;
  height: auto;
  display: block;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* 📱 スマホ・タブレット時は2カラム */
@media screen and (max-width: 768px) {
  .product-grid {
    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;
  line-height: 1.4;
}

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




/* -------------------/* aboutページ遷移後の仕様 /-------------------------*/

section.about {
  text-align: center;
  padding: 90px 20px 0px;
  background-color: #fff;
  box-sizing: border-box;
}

section.about::before {
  display: none; /* 背景画像も無効化 */
}

.about h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.logo-image {
  max-width: 350px;
  height: auto;
  margin: 0 auto 40px;
  display: block;
}

.about-text {
  font-size: 18px;
  line-height: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}



/* 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;;
}

.profile .info {
  flex: 1;
}

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


@media screen and (max-width: 768px) {
 
    .about h2 {
    font-size: 28px;
  }

  .about-text {
    text-align: center;       /* 両端揃えでボコボコ解消 */
    font-size: 14px;
    line-height: 1.8;
    word-break: break-word;
    max-width: 100%;
    padding: 0 10px;            /* 左右余白で整える */
    box-sizing: border-box;
  }

  .logo-image {
    max-width: 200px;
    margin-bottom: 20px;
  }


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

  .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: 350px;
  border-radius: 0px;
  margin-top: 60px;

  /* テキストの中央寄せ（重複削除して統合） */
  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: 16px;
  margin: 5px 0;
  max-width: 800px;  /* 最大横幅を設定（必要に応じて調整） */
  padding: 0 20px;   /* スマホ対策で左右に少し余白 */
  text-align: center; /* 中央寄せ（任意） */
} 


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: 20px;
}

.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: 30px;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  background:  #eddbce;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  height: 500px; /* 高さ固定 */
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* 中身を縦に並べる */
.modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  overflow: hidden; /* 必須 */
}

/* 画像部分 */
.modal-inner img {
  max-height: 500px;
  width: auto;
  margin: 0 10px 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
  display: block;
  /* border: 1px solid #7c6450; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* テキスト部分をスクロールさせる */
.modal-text {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  overflow-y: auto;
  flex: 1;
  text-align: left;
}

/* タイトルのみ中央寄せ */
#modal-title {
  text-align: center;
  margin-bottom: 10px;
}

/* 閉じるボタン */
.close {
  position: absolute;
  right: 5px;
  top: 0px;
  font-size: 26px;
  cursor: pointer;
  font-weight: bold;
}



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

  /* 商品レイアウトを2列に */
  body.sweets-page .items {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .header-image h1 {
  font-size: 3.0em;
  margin: 0;
  font-weight: normal;
  }

  .header-image p {
  font-size: 11px;
  margin: 5px 0; 
  text-align: center;
  } 
  

  .item p {
    font-size: 12px;          /* モバイル用の見やすいサイズに */
    line-height: 1.2;         /* 行間を広げて折り返しも自然に */
    /* word-break: break-word;   長い単語の途中で折返し可能に */
  }

  .hamburger {
    display: flex;
  }

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

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

  .modal {
    top: 0;
    height: 100vh;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.6);
  }

 .modal-content {
  width: 100vmin;  /* ← 短い方（幅 or 高さ）に合わせる */
  height: 100vmin;
  max-height: 100vh;
  max-width: 100vw;
  padding: 0;
  background: #eddbce;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0;
}


  .modal-inner {
    width: 330px;
    margin: 0 auto; 
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }

  .modal-inner img {
    width: 330px;
    height: 222px;
    object-fit: cover;
    margin-top: 30px;
    /* border: 1px solid #7c6450; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  #modal-title {
    font-size: 14px;
    text-align: center;
    margin: 5px 10px;
  }

  .modal-text {
    font-size: 12px;
    text-align: left;
    padding: 0 15px;
    overflow-y: auto;
    flex: 1;
    width: 100%;
  }

  .close {
    position: absolute;
    right: 5px;
    top: 2px;
    font-size: 24px;
    cursor: pointer;
  }
}

@media screen and (max-height: 500px) {
   .modal-content {
    width: 68vh;           /* 高さベースにして正方形維持 */
    height: 68vh;
    }
  
    
   .modal-inner img {
    width: 90%;
    height: auto;           /* 高さを固定せず比率維持 */
    margin-top: 10px;
   }

   #modal-title {
    font-size: 11px;
    margin: 4px 8px;
   }

   .modal-text {
    font-size: 10px;
    padding: 0 10px;
   }

   .close {
    font-size: 20px;
    top: 4px;
    right: 6px;
   }

}


/* ---------------------------ニュースmainページ遷移後の仕様 ---------------------------------*/
#news2 {
  margin-top: 120px; /* ヘッダーの高さ以上に */
  margin-bottom: 50px;
}


/* ---------------------------ニュース詳細の項目1---------------------------------*/

.news-article-header {
  display: block;
  width: max-content;
  margin: 70px auto 30px; /* ← 全体を中央に配置 */
  text-align: left;  /* ← 内部要素を左寄せ */
}

.news-article-date {
  font-size: 14px;
  color: #000;
  margin-bottom: 2px;
  line-height: 1.2;
}

.news-article-title {
  font-size: 26px;
  font-weight: normal;
  color: #7c6450;
  margin: 0;
  line-height: 1.2;   /* ← タイトル自体の行高も詰める */
}

.news-article-page {
  max-width: 800px;
    margin: 40px auto 80px;
  padding: 0 20px;
  color: #333;
}

.news-article-visual {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.news-article-visual img {
  max-width: 100%;
  width: 450px; /* ← 少し絞った幅 */
  height: auto;
  margin-top: 10px;
}

.news-article-heading {
  max-width: 960px;
  margin: 10 auto;
  position: relative;
  padding-top: 30px; /* ← 必要最小限に抑える */
}

.news-article-body {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2.0;
  padding: 0 10px;
}

.center-paragraph {
  text-align: center;
  line-height: 3.0;
  margin-bottom: 2em;
  font-size: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


.news-article-body p {
  margin-bottom: 30px;
}

.news-article-back {
  text-align: center;
  margin-top: 60px;
  padding: 0 10px;
}

.news-article-back a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: background-color 0.3s, transform 0.2s;
}

.news-article-back a:hover {
  background-color: #222;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


@media screen and (max-width: 768px) {
  .news-article-page,
  .news-article-heading,
  .news-article-body,
  .news-article-back {
    text-align: center;
  }

  .news-article-date {
    margin-left: 0; /* 左余白をリセット */
    text-align: center;
    margin-bottom: 20px;
  }

  .news-article-title {
    font-size: 20px; /* タイトルを小さめに */
    margin: 10px auto;
  }

  .news-article-body p {
    text-align: left;
  }

  .news-article-back a {
    width: 100%;
    max-width: 250px;
  }

  .news-article-heading {
 padding-top: 0px; /* ← 必要最小限に抑える */
}

.news-article-visual img {
 width: 300px; 
}

.news-article-body {
  font-size: 13px;
}

.news-article-header {
 
  margin: 90px auto 0px; /* ← 全体を中央に配置 */

}

.news-article-body p.center-paragraph {
  text-align: center;
  line-height: 3.0;
  font-size: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}


}

/* ---------------------------ニュース詳細の項目2---------------------------------*/

.news-article-visual2 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.news-article-visual2 img {
  max-width: 100%;
  width: 600px; /* ← 少し絞った幅 */
  height: auto;
  margin-top: 10px;
}

.news-article-body,
.event-schedule {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0px; /* 余白調整（任意） */
}

/* .event-schedule {
  text-align: center;
  font-size: 16px;
} */

.schedule-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* モバイル対応も兼ねる */
  gap: 20px;
}

.schedule-left,
.schedule-right {
  flex: 1;
  min-width: 250px;
}


.event-title {
  text-align: center;
  font-weight: normal;
  margin-bottom: 20px;
  font-size: 16px;
}


.schedule-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 15px;
}

.schedule-left,
.schedule-right {
  width: 330px;
  text-align: left;
}

.schedule-left p,
.schedule-right p {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.store {
  flex-shrink: 0; /* 店名が折れないように */
}

.date {
  text-align: right;
}
/* @media screen and (max-width: 600px) { */

@media screen and (max-width: 768px) {
  .event-schedule {
  text-align: center;
  padding: 0px 20px;
  }
  .schedule-container {
    display: block; /* ← flexを無効化してブロックに */
    text-align: center;
  }

  .schedule-left,
  .schedule-right {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

    .schedule-left p,
  .schedule-right p {
    font-size: 13px;
    padding: 0 15px;
  }
}

/* ---------------------------ニュース詳細の項目3---------------------------------*/


.macaron {
  display: block !important;  
  flex-direction: initial !important;
  justify-content: initial !important;
  line-height: 1.2;
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  .macaron {
    text-align: left !important;
    padding-left: 15px;  /* お好みで余白調整 */
  }
}


@media screen and (max-height: 400px) {
  .header {
    height: auto;
    padding: 10px 20px;
  }

  .header .logo {
    font-size: 1em;
  }

  .hamburger {
    transform: scale(0.8); /* ← 縮小表示 */
  }

  .nav-menu {
    max-height: 70vh;
    overflow-y: auto;
  }

  .header-image {
    min-height: 250px; /* ← 小さめに */
  }
}


/*その他
---------------------------------------------------------------------------*/
.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;}


