  /* ====== 全体 ====== */
  .fs-pen-list{
    --bg: #efe4d6;
    --paper: #fff;
    --ink: #222;
    --muted: #666;
    --accent: #8b1f2c;   /* 赤系 */
    --border: rgba(0,0,0,.12);
    --shadow: 0 6px 18px rgba(0,0,0,.08);
    --radius: 10px;
    --gap: 15px;
    color: var(--ink);
    padding: 0 12px 40px;
  }

  .fs-pen-list img{
    display:block;
    width:100%;
    height:auto;
  }

  /* ====== Hero ====== */
  .fs-hero{
    margin: 0 auto 14px;
  }
  .fs-hero__link{
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  max-width: none;
  border-radius: 0;
  }

  .fs-hero__media{
  margin: 0 auto;
  }
    
  .fs-hero__media img{
  width: 100%;
  height: auto;
  display: block;
  }    
    
  .fs-hero--full .fs-hero__link{
  max-width: none;
  border-radius: 0;
  }

  @media (min-width: 768px){
    .fs-hero__media{
      max-width: 1100px;
    }
  }
  /* ====== タイル（画像導線） ====== */
  .fs-tiles{
    max-width: 1100px;
    margin: 0 auto 18px;
  }
  .fs-tiles__grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .fs-tile{
    display:block;
    border-radius: var(--radius);
    overflow:hidden;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  /* 共通スタイル */
  .fs-hero-desc{
  max-width: 980px;
  margin: 16px auto 24px;
  padding: 0 12px;
  }

  .fs-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  }

  /* デフォルト：PC表示 */
  .fs-desc--sp{
  display: none;
  }
  .fs-desc{
  text-align: center
  }
  /* SPのみ表示 */
  @media (max-width: 767px){
  .fs-desc--pc{
    display: none;
    }
  .fs-desc--sp{
    display: block;
    font-size: 13px;
    line-height: 1.6;
    }
}
  /* ====== セクション共通 ====== */
  .fs-sec{
    max-width: 1100px;
    margin: 18px auto 0;
    border-radius: calc(var(--radius) + 2px);
    padding: 14px 12px 12px;
  }

  .fs-sec__head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    margin-bottom: 10px;
  }

  .fs-sec__title h2{
  margin: 0;
  padding-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.fs-sec__title h2::after{
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 6px;
  background: #8b1f2c;
}
    
  .fs-sec__sub{
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--muted);
  }

  .fs-sec__nav{
    display:flex;
    gap: 8px;
    flex-shrink: 0;
  }
  .fs-navbtn{
    width: 38px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,.06);
    line-height: 1;
    font-size: 20px;
  }
  .fs-navbtn:active{
    transform: translateY(1px);
  }

  /* ====== 横スライダー ====== */
  .fs-slider{
    display:flex;
    gap: var(--gap);
    overflow-x:auto;
    padding: 6px 2px 10px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2px;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;  
  }

.fs-slider::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,.18);
    border-radius: 999px;
  }
  .fs-slider::-webkit-scrollbar-track{
    background: rgba(255,255,255,.3);
    border-radius: 999px;
  }
@media (max-width: 767px){
  .fs-slider{
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .fs-slider::-webkit-scrollbar{
    display: none;
  }
}
  /* ====== 商品カード ====== */
  .fs-card{
    scroll-snap-align: start;
    flex: 0 0 200px; /* PC時の1枚幅 */
    background: var(--paper);
    border-radius: var(--radius);
    overflow:hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .fs-card__img{
    background: #fff;
    aspect-ratio: 1 / 1;
    overflow:hidden;
  }
  .fs-card__img img{
    width:100%;
    height:100%;
    object-fit: cover;
  }

  .fs-card__body{
    padding: 10px 10px 12px;
  }

  .fs-card__name{
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(13px * 1.35 * 2);
  }
.fs-card__desc{
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.5;
  color: #555; 
  min-height: calc(12px * 1.5 * 4);    

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;


  min-height: calc(12px * 1.5 * 4);
}
  .fs-card__price{
    margin: 0;
    font-weight: 700;
    font-size: 14px;
    color: var(--accent);
  }
  .fs-card__tax{
    font-weight: 400;
    font-size: 12px;
    color: var(--muted);
    margin-left: 4px;
  }

  .fs-sec__foot{
    display:flex;
    justify-content:center;
    margin-top: 10px;
  }
  .fs-more{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 10px 14px;
    background: var(--accent);
    color:#fff;
    text-decoration:none;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing:.02em;
  }

  /* ====== レスポンシブ ====== */
  @media (max-width: 980px){
    .fs-tiles__grid{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px){
    .fs-pen-list{ padding: 50px 10px 28px; }
    .fs-sec__title h2{ font-size: 16px; }
    .fs-card{ flex-basis: 160px; } /* SPは少し小さく */
    .fs-navbtn{ width: 34px; height: 32px; }
  }
    
/* ========================== PCレイアウト ========================== */
@media (min-width: 751px) {
.fs-l-main {
  max-width: 1900px;
  overflow: hidden;
  margin: 74px auto -8px;
}

.fs-l-pageMain {
  max-width: 1900px;
}
}  