.fs-p-logo__lead{
font-size:1.3rem;
}
/* 商品名上キャッチコピー改行あり */
.fs-c-productNameHeading__copy{
display:block;
}
a:hover img {
  opacity: 0.7;
}
/* ヘッダーコンテンツ中央寄せ */
.fs-l-header__contents{
    max-width: 1600px;
    margin: 0 auto;
}
/* パンくず中央寄せ */
.fs-c-breadcrumb{
    max-width: 1216px;
    margin: 0px auto;
}

/* 熱帯倶楽部コチラ文字太く */
.custom-list li {
  font-size: 18px;
  font-weight: bold;
}

/* 商品名2行まで */
.item-list .fs-c-productListItem__productName {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;

  line-height: 1.4;
  height: calc(1.4em * 2);
}

/*パンくずリストを一部のみ表示するCSS*/
.fs-c-breadcrumb__list {
  display:none;
}
.fs-c-breadcrumb__list:first-child {
  display:block;
}
.fs-c-breadcrumb__list--subgroup:nth-child(2) {
  display:block;
}

/* 買い物カートボタン */
.floating-cart-btn {
  position: fixed;
  right: 15px;
  bottom: 160px;
  z-index: 9999;
  width: 140px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-cart-btn.show {
  opacity: 1;
  pointer-events: auto;
}

html {
  scroll-behavior: smooth;
}

/* 買い物カートボタン商品名まで移動 */
#cart-area {
  scroll-margin-top: 180px;
}



/* ==========================================
フェレットフードガイド
========================================== */

.fw-food-guide{
    max-width:1400px;
    margin:0 auto;
    padding:20px;
    font-family:sans-serif;
    line-height:1.8;
    color:#333;
}

.fw-food-guide *{
    box-sizing:border-box;
}

/* ==========================================
FV
========================================== */

.fw-hero{
    padding:80px 40px;
    border-radius:24px;
    background:#f5f5f5;
    text-align:center;
    margin-bottom:40px;
}

.fw-hero h1{
    font-size:48px;
    line-height:1.3;
    margin:0 0 20px;
}

.fw-lead{
    max-width:800px;
    margin:0 auto;
}

/* ==========================================
年齢別ナビ
========================================== */

.fw-age-nav{
    display:flex;
    gap:12px;
    margin:40px 0;
}

.fw-card{
    flex:1;

    padding:22px 10px;

    border:none;
    border-radius:18px;

    background:#fff;
	
	color:#5d4037;
	font-weight: bold;

    box-shadow:
        0 4px 12px rgba(0,0,0,.05);

    transition:.25s;
}

.fw-card:hover{
    transform:translateY(-4px);
    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
}

.fw-card:hover{
    background:#fffaf3;
}

.fw-card:hover{
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* ==========================================
レイアウト
========================================== */

.fw-layout{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.fw-sidebar{
    width:220px;
    flex-shrink:0;
}

.fw-main{
    flex:1;
    min-width:0;
}

/* ==========================================
追従サイド
========================================== */

.fw-sticky{
    position:sticky;
    top:80px;
}

.fw-box{
    background:#fff;

    border:none;

    border-radius:20px;

    box-shadow:
        0 4px 12px rgba(0,0,0,.05);

    overflow:hidden;
}

.fw-box h3{
    background:#5d4037;   /* 濃いめに変更 */
    color:#fff;           /* 白抜き */
    font-weight:700;
    margin:0;
    padding:14px 16px;
}

.fw-box ul{
    list-style:none;
    margin:0;
    padding:0;
}

.fw-box li a{
    display:block;
    padding:12px 16px;
    text-decoration:none;
    color:#333;
    border-top:1px solid #eee;
}

.fw-box li a:hover{
    background:#fafafa;
}

	.fw-sidebar .fw-box{
    margin-bottom:20px;
}
/* ==========================================
本文
========================================== */

.fw-section{
    margin-bottom:50px;
    background:#fff;
    padding:32px;
    border-radius:24px;
    box-shadow:
        0 2px 10px rgba(0,0,0,.03);
}



.fw-section h3{
    font-size:24px;
    margin-top:40px;
    margin-bottom:15px;
}

/* ==========================================
比較表
========================================== */

.fw-table{
    overflow:hidden;
    border-radius:16px;
    border-collapse:separate;
    border-spacing:0;
}

.fw-table th{
    background:#7c5840;
    color:#fff;
}

.fw-table td{
    background:#fff;
}

.fw-table tr:nth-child(even) td{
    background:#faf8f5;
}

/* ==========================================
ランキング
========================================== */

.fw-ranking{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.fw-rank{
    border:1px solid #ddd;
    border-radius:16px;
    padding:20px;
    background:#fff;
}

/* ==========================================
FAQ
========================================== */

.fw-faq details{
    border:none;

    background:#fff;

    border-radius:18px;

    box-shadow:
        0 3px 10px rgba(0,0,0,.04);

    padding:18px 22px;
}

.fw-faq summary{
    font-size:16px;
}

/* ==========================================
CTA
========================================== */

.fw-cta{
    background:
    linear-gradient(
        135deg,
        #fff7ef,
        #fdf4eb
    );

    border-radius:30px;

    padding:70px 40px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);
	text-align: center
}

.fw-cta h2{
    margin-top:0;
}


.fw-ctb{padding:50px;background:#f5f5f5;border-radius:20px}

/* ==========================================
スムーススクロール
========================================== */

html{
    scroll-behavior:smooth;
}

/* ==========================================
スマホ
========================================== */

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

    .fw-hero{
        padding:50px 20px;
    }

    .fw-hero h1{
        font-size:32px;
    }

    .fw-age-nav{
        grid-template-columns:1fr;
    }

    .fw-layout{
        display:block;
    }

    .fw-sidebar{
        width:auto;
        margin-bottom:30px;
    }

    .fw-sticky{
        position:static;
    }

    .fw-ranking{
        grid-template-columns:1fr;
    }

    .fw-section h2{
        font-size:28px;
    }

}


/* ==========================================
feature-row
========================================== */

.feature-row{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.feature-item{
    flex:1 1 250px;
}
.feature-item{
    background:#fff;

    border-radius:20px;

    padding:24px;

    box-shadow:
        0 3px 10px rgba(0,0,0,.04);

   
}

.feature-item:hover{
    transform:none;
}

.feature-img{
    width:30%;
    flex-shrink:0;
}

.feature-img img{
    width:100%;
}

.feature-text{
    width:70%;
}



/*
========================================== */

	
/* 全体のリセット & ベーススタイル */
/* セクション見出し */

.fw-section h2{
    font-size:25px;
	font-weight: bold;
    display:flex;
    align-items:center;
    margin-bottom:24px;
    color:#4a3b32;
}

.fw-section h2::before{
    background:#7c5840;
    color:#fff;
    border-radius:50%;
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:bold;
    margin-right:12px;
    flex-shrink:0;
}

#sec01 h2::before{content:"01";}
#sec02 h2::before{content:"02";}
#sec03 h2::before{content:"03";}
#sec04 h2::before{content:"04";}
#sec05 h2::before{content:"05";}
#sec06 h2::before{content:"06";}
#sec07 h2::before{content:"07";}
#sec08 h2::before{content:"08";}
#sec09 h2::before{content:"09";}

  /* 2カラムレイアウトのコンテナ */
  .flex-container {
    display: flex;
    gap: 30px;
    border: 1px solid #f2ece7;
    border-radius: 12px;
    padding: 25px;
    background-color: #fff;
  }

  /* 左カラム（原材料）と右カラム（成分表）の共通設定 */
  .col-left {
    flex: 1;
  }
  .col-right {
    flex: 1.5; /* 右側の方が要素が多いため少し広く設定 */
    display: flex;
    gap: 20px;
    border-left: 1px solid #e6ded8; /* 中央の区切り線 */
    padding-left: 30px;
  }

  /* 見出しスタイル */
  .fw-section h3 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 12px;
  }

  .sub-title-gray {
    font-size: 13px;
    color: #777;
    font-weight: normal;
  }

  /* 左側：チェックポイントの薄黄色ボックス */
  .fw-ctb {
    background-color: #fdfaf2;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 14px;
    line-height: 1.8;
  }
  .fw-ctb .cp-title {
    color: #d37a5a; /* オレンジがかった赤 */
    font-weight: bold;
    margin-bottom: 8px;
  }
  .fw-ctb ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .fw-ctb li {
    position: relative;
    padding-left: 20px;
  }
  .fw-ctb li::before {
    content: "✓";
    color: #d37a5a;
    position: absolute;
    left: 0;
    font-weight: bold;
  }

  /* 右側：テーブルスタイル */
  .table-wrapper {
    flex: 1;
  }
  .component-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
  }
  .component-table td {
    border: 1px solid #e6ded8;
    padding: 8px 11px;
    text-align: center;
  }
  .component-table td:first-child {
    background-color: #fbf9f7;
    font-weight: bold;
    width: 45%;
  }

  /* 右側：理想的な数値の目安ボックス */
  .ideal-box {
    flex: 1;
    align-self:flex-start;
    background-color: #fbf2ed; /* 薄いピンクベージュ */
    border-radius: 8px;
    padding: 15px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	align-items:center;
  }
  .ideal-box .ideal-title {
    color: #7c5840;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 1px dashed #d9cecf;
    padding-bottom: 5px;
  }
  .ideal-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.7;
  }

  /* リンクテキスト（矢印付き） */
  .link-more {
    display: block;
    font-size: 12px;
    color: #4a3b32;
    text-decoration: none;
    margin-top: 15px;
  }
  .link-more::before {
    content: "＞ ";
    font-size: 10px;
    color: #7c5840;
  }
  .link-more:hover {
    text-decoration: underline;
  }

  /* レスポンシブ対応（画面が狭いときは縦並びにする） */
  @media (max-width: 768px) {
    .flex-container {
      flex-direction: column;
    }
    .col-right {
      border-left: none;
      border-top: 1px solid #e6ded8;
      padding-left: 0;
      padding-top: 25px;
      flex-direction: column;
    }
  }	
	
.point-row{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}

.point-row .feature-item{
    background:#fff;

    border-radius:20px;

    padding:25px 18px;

    box-shadow:
        0 4px 12px rgba(0,0,0,.04);
}


.point-row .feature-text{
    width:100%;
}

.point-row .feature-img img{
    width:80px;
    height:auto;
    margin-bottom:10px;
}

.point-row{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.point-row .feature-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.point-row .feature-img{
    width:auto;
}

.point-row .feature-text{
    width:100%;
}

.point-row .feature-img img{
    width:80px;
    height:auto;
    margin-bottom:10px;
}

.fw-food-guide{
    background:#faf8f5;
    padding:30px;
    border-radius:30px;
}


.fw-sub{
  text-align:center;
  margin-bottom:30px;
  color:#666;
}

/* grid */
.fw-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

/* card2 */
.fw-card2{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
  display:flex;
  flex-direction:column;
}

.fw-card2-head{
  color:#fff;
  padding:12px;
  font-weight:bold;
  text-align:center;
}

.fw-kids .fw-card2-head{ background:#6bbf59; }
.fw-adult .fw-card2-head{ background:#4a90e2; }
.fw-senior .fw-card2-head{ background:#a78bd6; }

.fw-body{
  padding:18px;
}

.fw-img img{
  width:100%;
  border-radius:10px;
  margin-bottom:12px;
}

.fw-desc{
  font-size:14px;
  margin-bottom:12px;
  line-height:1.6;
}

.fw-body h4{
  font-size:14px;
  margin:12px 0 6px;
  border-left:4px solid #ddd;
  padding-left:6px;
}

.fw-body ul{
  margin:0 0 12px 18px;
  font-size:13px;
}

/* products */
.fw-products{
  display:flex;
  gap:6px;
  margin:10px 0 15px;
}

.fw-products img{
  width:calc(33.33% - 4px);
  border-radius:6px;
  background:#f7f7f7;
}

/* button */
.fw-btn{
  display:block;
  text-align:center;
  padding:10px;
  border-radius:20px;
  background:#333;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  transition:0.2s;
}

.fw-btn:hover{
  opacity:0.8;
}

/* responsive */
@media(max-width:900px){
  .fw-grid{
    grid-template-columns:1fr;
  }
}
	
	/* カード全体のコンテナ設定 */
.card-container {
  display: flex;
  gap: 16px;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto 24px auto; /* 下のテーブルとの間に少し隙間（24px）を空ける */
  box-sizing: border-box;
}

/* 各カードのスタイル */
.card {
  flex: 1;
  background-color: #fffde9; /* 薄い黄色の背景 */
  border: 1px solid #f7f1d5;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  min-width: 260px;
}

/* タイトル部分 */
.card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.card-title .icon {
  font-size: 1.1rem;
}

.card-title h3 { /* sectionのh2と被らないようh3にしています */
  font-size: 1.1rem;
  font-weight: bold;
  color: #5c4636;
  margin: 0;
}

/* 説明文 */
.card-description {
  font-size: 0.85rem;
  color: #7a6351;
  margin: 0 0 16px 0;
}

/* ボタン */
.card-button {
  display: inline-block;
  background-color: #b09681;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 8px 32px;
  border-radius: 20px;
  transition: background-color 0.2s ease;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.card-button span {
  margin-left: 4px;
}

.card-button:hover {
  background-color: #9c826d;
}

/* スマホ用（画面幅が狭いとき）の設定 */
@media (max-width: 640px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 100%;
  }
}

/*
========================================== */	
	