@charset "utf-8";

/* ヘッダー全体 */

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 横スクロールを防ぐ */
    font-family: "Kaisei Opti", serif;
}
html{
  scroll-behavior: smooth;
}



.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
   background: linear-gradient(
    to bottom,          /* 上から下へ */
    rgba(217, 239, 218, 0.8), /* 淡い緑（少し透過） */
    rgba(255, 255, 255, 0.8)  /* 白（少し透過） */);
}
/* =====================
   ロゴ
===================== */

.go img {
  height: 500px;
  width: auto;
  display: block;
  margin-left: -100px;

  transition: 0.3s ease;
  cursor: pointer;
}

/* ホバー：浮く＋少し拡大 */
.go img:hover {
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* クリック時：押し込み */
.go img:active {
  transform: translateY(-2px) scale(0.98);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.go img:hover {
  filter:
    drop-shadow(0 10px 20px rgba(0,0,0,0.15))
    brightness(1.05);
}
.go {
  display: flex;
  padding: 40px;
  border-radius: 24px;

  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(0,0,0,0.08);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.4);

  transition: 0.3s ease;
  position: relative;   /* 必須 */


  height: 10px;
  width: 100px;
  align-items: center;
  justify-content: center;
}

/* ホバーで枠も浮く */
.go:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.6);
}

.go img {
  height: 150px;
  width: auto;
  display: block;
  margin-left: -100px;
  border-radius: 16px;
  margin: 0;
  display: block;
}



/* =====================
   PCメニュー
===================== */
.site-menu{

  
  position: relative;
}

.site-menu li{
 width: 150px;
 
}
.site-menu ul {
  display: flex;
 
  list-style: none;
  
}

.site-menu a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  position: relative;
}

/* 下線アニメーション */
.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #25e628;
  transition: 0.3s;
}

.site-menu a:hover::after {
  width: 100%;
}







  /* メインの画像 */
.first-view {
  position: relative;
  height: 600px;
  overflow: hidden;
  width: 100%;
  margin-top: 100px;

  
 
}

.item {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: img-change 12s infinite;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* スライド切り替え */
@keyframes img-change {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  25%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

/* マイナスdelayで最初から表示 */
.item:nth-child(1) { animation-delay: 0s; }
.item:nth-child(2) { animation-delay: -3s; }
.item:nth-child(3) { animation-delay: -6s; }
.item:nth-child(4) { animation-delay: -9s; }



.caption {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 100px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 6px rgba(155, 241, 216, 0.5);
}

/* ・・・・・もとセット・・・・・ */
/* =====================
   コンテナ
===================== */
.moto{
  display:flex;
  align-items:center;
  gap:60px;

  margin:100px auto;
  padding:50px;

  max-width:1100px;

  background:linear-gradient(135deg,#f4fbf4 0%, #ffffff 60%, #f8fff6 100%);
  border-radius:24px;
  box-shadow:0 25px 60px rgba(120,160,120,0.15);

  position:relative;
  overflow:hidden;
}

/* うっすら葉っぱ風アクセント */
.moto::before{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  background:radial-gradient(circle,#cfe8b5 0%, transparent 70%);
  top:-80px;
  left:-80px;
  opacity:0.4;
}

/* =====================
   画像
===================== */
.moto-img{

  display:flex;
  justify-content:center;
  gap: 40px;
}
/* 画像コンテナの固定幅をやめる */
.moto-img{
  flex:none;
}

/* 画像サイズを明示固定 */
.moto-img img{
  width:140px;
  height:140px;
}

.moto-img img{
  width:320px;
  height: 300px;
  border-radius:40px;
  padding:18px;
  background:linear-gradient(135deg,#ffffff,#eaf7e6);
  box-shadow:
    0 20px 40px rgba(120,160,120,0.25),
    inset 0 0 0 6px #ffffff;

  object-fit:cover;
  transition:transform 0.5s ease;
}

.moto-img img:hover{
  transform:scale(1.05) rotate(-2deg);
}

/* =====================
   テキストエリア
===================== */
.moto-text{
  flex:1;
}

/* タイトル */
.moto-text h1{
  font-size:28px;
  line-height:1.6;
  margin-bottom:26px;
  color:#2f4f2f;
  font-weight:700;
  letter-spacing:0.04em;
  position:relative;
  display:inline-block;
}

/* 下線（野菜カラー） */
.moto-text h1::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-12px;
  width:80%;
  height:4px;
  background:linear-gradient(90deg,#6aa84f,#b6d7a8,#ffe599);
  border-radius:3px;
}

/* 見出し */
.moto-text strong{
 
  display:inline-block;
  background:#e9f7e4;
  color:#4e7c3a;
  padding:6px 14px;
  border-radius:999px;
  font-size:25px;
  margin-bottom:18px;
  letter-spacing:0.08em;
  margin-left: 200px;
}

/* 本文 */
.moto-text p{
  font-size:15.5px;
  line-height:2;
  color:#444;
  margin-bottom:18px;
  text-align: center;
}
/*・・・・・ もとセットエンド・・・・・・ */



.salad{
  width: 300px;
  height: 200px;
  margin: 100px auto 0;
 


  display: flex;
  align-items: center;
  justify-content: center;

  position: relative; /* ← これ必須 */
}

/* 下ライン */
.salad::after {
  content: "";
  width: 150%;
  height: 1px;
  background: #58ecb3;

  position: absolute;
  
  left: 50%;
  transform: translateX(-50%);
}
.salad p{
  font-size: 25px;
}


.salad1 {
  font-size: 40px;
  margin-top: -80px;
}


/* サラダメニュー */

.menu-grid{
  width: 90%;
  margin-left: 90px;
}
.menu-card {
  text-align: center;
  position: relative;
}

.menu-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.menu-img {
  position: relative;
}

.menu-img{
  width: 300px;
}

 

/* ポップアップ *//* ポップアップ *//* ポップアップ *//* ポップアップ */
.open-popup {
  position: absolute;
  bottom: 10px;
  right: 10px;

  width: 100px;
  height: 36px;
  border-radius: 50%;

  border: none;
  background: #ffffff;
  color: #333;
  font-size: 18px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);

  transition: 0.3s;
}

.open-popup:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.open-popup:active {
  transform: scale(0.95);
}

.open-popup {
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.7);
}
.menu-price {
  margin-top: 10px;
  font-weight: bold;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 9999;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  border: #080808;

 
}
#popup-img {
  width: 180px;   /* ← 小さく */
  margin-bottom: 15px;
}

#popup-title{
   border-bottom: 2px solid #c4e61c;
}
.menu-data {
  display: none;
}

#popup-text {
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  text-align: center;
  border: 2px solid #71ee6d;
  border-radius: 20px;
}

#close-popup {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

/* ポップアップエンド *//* ポップアップエンド *//* ポップアップエンド */


/* メニュー黒枠 */
.menu-grid {
  position: relative; /* ← 枠の基準 */
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
}

/* 単体枠（1・8） */
.group-single {
  border: 2px solid #111111;
  padding: 20px 10px 10px;
  position: relative;
  border-radius: 30px;
}




/* まとめ枠（2〜4 / 5〜7） */
.group-box {
  border: 2px solid #0d0e0d;
  padding: 20px 10px 10px;
  position: relative;
  grid-column: span 3;
  border-radius: 30px;
}

/* 中の3カード */
.group-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  
}

/* 左上ラベル */
.group-label {
  position: absolute;
  top: -10px;
  left: 10px;
  background: #fff;
  padding: 0 6px;
  font-size: 12px;
}


    
    
/* 画像80% */
.menu-card img {
  width: 70%;
  display: block;
  margin: 0 auto;
}

.group-label{
  font-size: 18px;
}

.menu-title {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.menu-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width:150px;
  height: 2px;
  background: gold;
  background: linear-gradient(90deg, #c9a646, #f4e2a1);
}

.data-title {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
 
  margin-bottom: 10px;
}

.data-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: gold;
}




/* メニュー黒枠エンド */

/* 月代わり *//* 月代わり *//* 月代わり *//* 月代わり *//* 月代わり */
.group-single1 {
  position: relative;
  margin-top: 40px;
  padding: 20px 0;
}

/* 上ライン */
.group-single1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;      /* 画面幅いっぱい */
  height: 2px;
  background: #0c0c0c;
}

/* 下ライン */
.group-single1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 2px;
  background: #0d0e0d;
}

.group-single1 {
  grid-column: 2 / 4;  /* 真ん中2列を使う */
  margin: 40px auto;
}

/* 月代わりエンド *//* 月代わりエンド *//* 月代わりエンド */

.gohan{
 
}

.gohan p{
  text-align: center;
  font-size: 20px;
  line-height: 40px;
}

/* ドレッシング・  */
/* 全体 */
.dore-main {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* 見出し */
.dore-com {
  text-align: center;
  font-size: 25px;
  margin: 20px 0;
  line-height: 1.6;
  border-top: 2px solid #c4e61c;
  border-bottom: 2px solid #c4e61c;
  padding: 20px 0;
}

/* 画像＋テキスト 横並び */
.dre {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 30px 20px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap; /* スマホで縦並びに */
}

/* 画像 */
.dore-img {
  flex: 2;             
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* テキスト */
.dredre {
  flex: 1;
  font-size: 20px;        /* 少し大きめ */
  line-height: 1.7;       /* 読みやすい行間 */
  text-align: left;
  max-width: 600px;       /* 1行の幅を制限 */
  color: #333;            /* コントラスト */
}


/* サラダサイズ部分 */
.saiz {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.saiz-1 {
  font-size: 18px;
  line-height: 1.7;
  margin-top: 10px;
}

.saiz-2 {
  flex: 2;
}

.saiz-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}



 /* ドレッシングエンド */
/* 全体 */
.dore-main {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* 見出し */
.dore-com {
  text-align: center;
  font-size: 25px;
  margin: 20px 0;
  line-height: 1.6;
  border-top: 2px solid #c4e61c;
  border-bottom: 2px solid #c4e61c;
  padding: 20px 0;
}

/* 画像＋テキスト 横並び */
.dre {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 10px;
  max-width: 1800px;
  margin: 0 auto;
  flex-wrap: wrap; /* スマホで縦並びに */
}

/* 画像ラップ */
.dore-img-wrap {
  flex: 2; /* 画像の幅をテキストの2倍 */
}

/* 画像 */
.dore-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* テキスト */


 /* サラダサイズ */

 .saiz{
  text-align: center;
  font-size: 25px;
  padding: 20px;

  height: 90px;
  line-height: 1.7;
   border-top: 2px solid #c4e61c;
    border-bottom: 2px solid #c4e61c;
}
 

.saiz-2 {
  text-align: center;    /* 親で中央揃え */
  margin: 0 auto;
  width: 80%;            /* 横幅調整 */
  margin-top: 10px;
}

.saiz-img {
  display: block;        /* 画像をブロック要素化 */
  margin: 0 auto;        /* 左右マージン自動で中央に */
  border-radius: 40px;
  max-width: 70%;       /* 親幅に合わせて縮小 */
  height: auto;          /* 縦横比を維持 */
}

 /* サラダサイズエンド */

 /* ク＾ポン */
 /* クーポンセクション */
.coupon {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px;
  background: linear-gradient(135deg, #fff8f0, #fff);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
}

.coupon h2 {
  font-size: 36px;
  color: #c56d5c;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 2px;
  position: relative;
}

.coupon h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #c56d5c;
  margin: 10px auto 0;
  border-radius: 2px;
}

.coupon h3 {
  font-size: 24px;
  color: #333;
  margin-top: 30px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  border-left: 5px solid #c56d5c;
  padding-left: 12px;
}

.coupon p {
  font-size: 18px;
  line-height: 2;
  color: #555;
  margin: 8px 0;
}

.coupon ul {
  list-style: disc;
  padding-left: 40px;
  margin: 10px 0 0 0;
}

.coupon ul li {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 6px;
}

.coupon strong {
  color: #c56d5c;
  font-weight: 700;
}

/* 注意書き部分 */
.coupon h4 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #c56d5c;
}

.coupon p:last-of-type {
  font-size: 16px;
  color: #777;
  line-height: 1.8;
  background: #fff4e6;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #c56d5c;
}

/* クーポンボタン */
.coupon-btn {
  display: inline-block;
  margin: 30px auto 0;
  padding: 18px 50px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  background: #c56d5c;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(197,109,92,0.3);
  text-align: center;
  transition: all 0.3s ease;
}

.coupon-btn:hover {
  background: #a14c3f;
  box-shadow: 0 12px 25px rgba(161,76,63,0.4);
  transform: translateY(-3px);
}

.coupon-btn:active {
  transform: translateY(1px);
  box-shadow: 0 5px 15px rgba(161,76,63,0.4);
}

/* レスポンシブ */



 /* ク本エンド */

 /* サイドメニュー */


 .said{
  text-align: center;
  line-height: 80px;
  font-size: 30px;
   border-top: 2px solid #c4e61c;
    border-bottom: 2px solid #c4e61c;
 }

 /* 全体グリッド */
.s-grid ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4列 */
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各カード */
.s-grid li {
  text-align: center;
}

/* 画像サイズ固定 */
.side-img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

/* タイトル */
.s-grid dt {
  font-weight: bold;
  margin-bottom: 6px;
}

/* 説明文 */
.s-grid dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
/* サイドメニューエンド */
 




/* 送料 */



.pp {
  background-color: #f7faf7;   
  border-top: 3px solid #d9ded9;
  border-bottom: 2px solid #e0e5e0;
  color: #222;                 
  font-size: 20px;             
  line-height: 2.3;            
  padding: 30px 20px;          /* 内側の余白を少し広めに */
  text-align: left;            
  max-width: 1500px;           /* 最大幅を広げる */
  width: 95%;                  /* 画面に合わせて95％の幅で表示 */
  margin: 20px auto;           
  border-radius: 10px;         
}

/* 見出しの調整 */
.pp h2 {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
}

.pp h3 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 15px;
}

.pp ul {
  padding-left: 25px;
  list-style: disc;
}

.highlight {
  background-color: #93e2ab; /* 赤背景 */
  color: #080808;               /* 白文字 */
  font-weight: bold;         /* 太字 */
  padding: 5px 10px;         /* 少し余白を追加 */
  border-radius: 5px;        /* 角丸で柔らかく */
  font-size: 20px;           /* 少し文字を大きめに */
}

/* 送料エンド */

.line2 {
  display: block;
text-align: center;
margin-top: 50px;
  font-size: 20px;
  line-height: 50px;
  color: #131312;
 text-align: center;
  margin-bottom: 50px;
  background-color: #e4f0e1;
 
 
}
.line2 img{
  width: 300px;
  height: 300px;
  margin-top: 10px;
}
.aaa{
  margin-top: 50px;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 60px;
  color: #121213;
    text-shadow: 1px 1px 0.5px #2a2c29
  

  
  }



/* インスタロゴ */

.inasta {
  text-align: center;
}

.insta-btn {
  display: inline-block;
  padding: 8px;              /* 押しやすさ */
  border-radius: 12px;       /* ボタン感 */
  background: transparent;  /* 透過維持 */
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.insta-btn:hover {
  transform: scale(1.2);
  opacity: 0.85;
}

.insta-btn:active {
  transform: scale(0.95);
}

.insta-btn img {
  display: block;
  width: 300px;
  border: none;
}

.insta-btn:focus {
  outline: none;
}

.inasta p{
  font-size: 20px;
}
/* インスタエンド */


  
/* フッター */
.footer {
  background: #0e0e0e;
  color: #d6d6d6;
  padding: 80px 40px 40px;
  text-align: center;
  letter-spacing: 0.08em;
  font-weight: 300;
}


.footer-logo {
  display: inline-block;
  margin-bottom: 30px;
}

.f-logo {
  width: 160px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.f-logo:hover {
  opacity: 1;
}


.footer p {
  margin: 8px 0;
  font-size: 14px;
  color: #bfbfbf;
}

.company {
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}


.footer::before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #c5a46d;
  margin: 0 auto 40px;
}

.insta2 img {
  width: 300px;
  height: auto;
  margin-top: 20px;
  filter: brightness(0.85);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.insta2 img:hover {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(1);
}


.footer a {
  color: #c5a46d;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.7;
}


.copyright {
  margin-top: 40px;
  font-size: 12px;
  color: #777;
}


/* フッターエンド */


