/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }


html { scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.fs-l-pageMain,
.fs-l-page,
.fs-l-container,
.fs-l-contents,
.l-container,
.l-wrap {
  max-width: none !important;
  width: 100% !important;
}


/* FutureShop 標準のページ見出しを非表示に */
h1.fs-c-heading.fs-c-heading--page {
  display: none !important;
}

/* FutureShop サイドバナーを非表示に */
.fs-p-drawer.fs-l-sideArea {
  display: none !important;
}

/* FutureShop ヘッダーを非表示に */
iframe[src="https://flowerkitchen.itembox.design/item/s/header-meganav4.htm"] {
  display: none !important;
}

/* FutureShop サブグループ一覧を非表示に */
.fs-c-subgroup {
  display: none !important;
}

#headerwrapper {
  height: auto !important;
}

.meganavi{
  display: none !important; 
}





/* アイキャッチ用スライダー */
.eyecatch-slider {
  position: relative;
  width: 100vw !important;
  left: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  margin-bottom: 7rem;
  overflow: hidden;
  padding: 0; /* 端まで出したい場合 */
}

.eyecatch-slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block; /* 画像下の隙間消し */
}




/* 見出し */
h1 { 
 font-size: 5rem;
 margin: 10rem 0 3rem 0;
 font-weight: 600;
 text-align: center;
}


/* イントロダクション */
.h1-01 {
 font-size: 2rem; 
 color: #666; 
 margin-bottom: 10rem;
 text-align: center;
 line-height: 4rem;
}

/* 〇〇はこちら ＞ */
.ichiran01 {
 font-size: 3rem; 
 color: #666; 
 margin-bottom: 7rem;
 text-align: center;
 line-height: 5.5rem;
 font-weight: 700;
}


/* アンカーリンク */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 5rem 0;
}

.menu-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 1.5em;
  background-color: #f7f2ea;
  color: #842424;
  font-size: 2.0rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.menu-item .arrow {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.7em;
  line-height: 1;
}

.menu-item:hover {
  background-color: #d9c5b8;
  color: #a84728;
}




.block01{ padding:30px 0 80px; margin-bottom:120px!important; }
.block02{ padding:65px 0 20px; margin:150px 0 120px; }
.block03{ padding:30px 0; margin-bottom:120px!important; }

.block01,.block02,.block03{
  background-color:#f2f2f282;
  position:relative;
  width:100vw;
  left:50%;
  margin-left:-50vw;
  margin-right:-50vw;
}


/* 見出し */

.recommendation-block {
  max-width: 720px;
  margin: 7rem auto 5rem;
  text-align: center;
  padding: 20px 0;
}

.recommendation-block2 {
  max-width: 720px;
  margin: 12rem auto 5rem;
  text-align: center;
  padding: 0 20px;
}

.recommendation-label {
  font-size: 2rem;
  color: #bfaea4;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  opacity: 0.8;
  font-weight: 500;
}



.recommendation-title {
  font-size: 3rem;
  font-weight: 600;
  color: #842424;
  margin-bottom: 12px;
}


.recommendation-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #842424, #f7f2ea);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.recommendation-text {
  font-size: 2rem;
  line-height: 2.0;
  color: #333;
  margin-bottom: 3rem;
}

.recommendation-text .highlight {
  background: linear-gradient(transparent 70%, #fff2ac 70%);
  font-weight: 500;
}






/* 商品群⓵ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 0 auto;
}

.product-grid,
.menu-grid,
.recommendation-block,
.recommendation-block2 {
  max-width: 1200px;   /* 既存の値でOK。必要に応じて調整 */
  margin: 0 auto;
}


.product-card {
  position: relative;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.product-card:hover {
	opacity:0.85;
    transition:0.3s;
}

.product-card .product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-card .product-image img {
  display: block;
  width: 100%;
  height: auto;
}

.product-card .product-body {
  padding: 16px 12px;
}

.product-card .product-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: #5A2D24;

}

.product-card .product-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: #5A2D24;
}



/* 商品群⓶ */

.product-grid02{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
  align-items: start;
}

.product-card02{
  background: transparent;
  border-radius: 0;
  overflow: visible;
  text-align: center;
}

.product-card02 .product-link02{
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card02 .product-image02{
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06) inset; /* 薄い縁取り */
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card02 .product-image02 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card02 .product-title02{
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  color: #666;
  letter-spacing: .02em;
  margin: 0;
  min-height: 3.4em; /* 2行まで想定して高さ揃え */
}

.product-card02 .product-link02:hover .product-image02{
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,.08), 0 0 0 2px #eee inset;
}
.product-card02 .product-link02:hover .product-title02{ color: #444; }







/* 順位バッジ */

.badge.rank {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 3px;
}
.badge.rank-1 { background: #cfa937; }
.badge.rank-2 { background: #b0b0b0; }
.badge.rank-3 { background: #e5a442; }


/* もっと見るボタン */

.more-btn {
  display: block;
  background-color: #5A2D24;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 500;
  padding: 2rem 5rem;
  border-radius: 9999px;
  text-decoration: none;
  position: relative;
  margin: 70px auto;
  text-align: center;
  width: max-content;
  transition: background-color 0.3s ease;
}

.more-btn::after {
  content: ">";
  display: inline-block;
  margin-left: 0.6em;
  font-size: 1.2em;
  line-height: 1;
}

/* 通常・visited を同じ色に固定 */
.more-btn {
  background-color: #5A2D24;
  color: #fff;
}

/* その“後に” hover を書く */
.more-btn:hover {
  background-color: #7A3C32;  /* hover時だけ変化 */
}

.more-btn:visited {
  color: #fff !important;
}







/* 商品群スライダー（全幅・） */

.slider1 {
  position: relative;
  max-width: none !important;
  padding: 2rem 0 !important;
  margin-top: 0;
}

.slider1 .swiper-slide {
  width: auto !important;
  flex-shrink: 0       !important;
  display: flex;
  justify-content: center;
}


.swiper-pagination-bullet-active {
  background: #5a2d24;
}






/* スライダー商品群 */

.slide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 0 auto;
}

.slide-card {
  width: 280px;
  height: 473px;
  position: relative;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.slide-card:hover {
	opacity:0.85;
    transition:0.3s;
}

.slide-card .slide-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.slide-card .slide-image img {
  display: block;
  width: 100%;
  height: auto;
}

.slide-card .slide-body {
  padding: 16px 12px;
}

.slide-card .slide-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: #5A2D24;

}

.slide-card .slide-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: #5A2D24;
}


.site-container { padding: 0 20px; }





/* ============ 中目黒店 紹介ブロック ============ */
.store-intro {
  max-width: 1800px;
  margin:100px auto 25px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

/* 2カラム化（レイアウト幅に合わせて調整） */
@media (min-width: 900px) {
  .store-intro {
    grid-template-columns: 8fr 15fr;
    gap: 28px;
    padding: 28px;
  }
}

.store-intro__img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.store-intro__title {
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #333;
}

.store-intro__lead {
  margin: 0 0 14px;
  color: #4c4a44;
}

.store-intro__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.store-intro__list li + li {
  margin-top: 6px;
}

.store-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 8px;
}

/* 共通ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .3s ease, color .3s ease; /* 色の変化だけアニメーション */
}

/* 緑のボタン */
.btn--primary {
  background: #4b8b66;  /* 深いグリーン */
  color: #fff !important;
  border: 1px solid #4b8b66;
  font-weight: 600;
}

.btn--primary:hover {
  background: #3a6f51;  /* 少し濃い色に変化 */
  color: #fff;
}

/* 白ベースのボタン */
.btn--ghost {
  background: #fff;
  color: #db0171 !important;
  border: 1px solid #df5d88;
  font-weight: 600;

}
.btn--ghost:hover {
  background: #fff2f2;
  color: #db0171;
}


.store-intro__note {
  font-size: 12px;
  color: #777;
  margin: 6px 0 0;
}

.btn--primary:active,
.btn--primary:focus {
  background: #4b8b66 !important;  /* 通常時と同じ色を固定 */
  color: #fff !important;
  outline: none;
}

.btn--ghost:active,
.btn--ghost:focus {
  background: #fff !important;
  color: #4b8b66 !important;
  outline: none;
}


/* 画像を左・テキスト右の順序を保ちつつ、狭幅では縦積み */
.store-intro__media { order: 1; }
.store-intro__body  { order: 2; }







/* ============ 育てやすさ・花言葉ブロック ============ */

.compare-wrap {
  width: 100%;
  overflow-x: auto;              /* 横スクロールを有効に */
  -webkit-overflow-scrolling: touch; /* スマホでスムーズ */
  border: 0px solid #ddd !important;
  padding-bottom: 6px;
  margin: 80px auto;
}

.plant-compare {
  min-width: 4000px !important;
  border-collapse: collapse;
  font-size: 1.8rem !important;
  color: #333;
  text-align: center;
}

.plant-compare th,
.plant-compare td {
  border: 1px solid #f7f2ea;
  padding: 20px;
  vertical-align: middle;
}

.plant-compare thead th {
  background: #c7e1b6 !important;
  font-weight: 500;
}

.plant-compare .rowhead {
  background: #faf7ef !important;
  font-weight: 600;
  white-space: nowrap; /* 改行させない */
}

.plant-compare .photo img {
  width: 200px !important;
  height: 200px !important;
  object-fit: cover;
  border-radius: 6px;
}

.plant-compare .photo a:hover img{
  transform: scale(1.02); 
  box-shadow: 0 6px 20px rgba(0,0,0,.08), 0 0 0 2px #eee inset;
}
