/* ===== リセット ===== */
.fs-lp *, .fs-lp *::before, .fs-lp *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* hl マーカーアニメーション */
@property --mark-w {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}
.fs-lp .hl {
  --mark-w: 0%;
  background-image: linear-gradient(transparent 58%, #f9f06f 58%);
  background-size: var(--mark-w) 100%;
  background-repeat: no-repeat;
  background-position: left center;
  display: inline; padding: 0 2px;
  transition: --mark-w 0.7s ease;
}
.fs-lp .hl.is-marked { --mark-w: 100%; }
.fs-lp {
  font-family: 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  background: #fff;
  line-height: 1.7;
}
.fs-lp img { max-width: 100%; height: auto; display: block; }
.fs-lp a { text-decoration: none; color: inherit; }
.fs-lp ul { list-style: none; }

:root {
  --orange:   #F08040;
  --orange2:  #E06820;
  --beige:    #FBF5EF;
  --beige2:   #F5EDE0;
  --green:    #7EAD50;
  --text:     #333;
  --text2:    #555;
  --white:    #fff;
  --w:        1080px;
}

.fs-lp .wrap{ max-width: var(--w); margin: 0 auto; padding: 0 20px; }

/* ===================================================
   ヒーローセクション
   =================================================== */
/* 画像未支給時のプレースホルダー */
.fs-lp .ph{
  background: #e8ddd5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 13px;
  text-align: center;
}

.fs-lp .fs-hero{
  background: #EDE5DA;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

/* 下部カーブ（逆ラウンド：SVG波） */
.fs-lp .fs-hero__wave{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: block;
}

.fs-lp .fs-hero__inner{
  width: 100%;
  padding: 1.5vw 4vw 0;
  position: relative;
}

/* ロゴ（左上）※ヘッダー提供後に調整 */
.fs-lp .fs-hero__logo{
  margin-bottom: 8px;
}
.fs-lp .fs-hero__logo img{
  width: 12vw;
  height: auto;
}

/* 1200万本突破!! バッジ（右上） */
.fs-lp .fs-hero__badge{
  position: absolute;
  top: 2%;
  right: 4vw;
  text-align: center;
  line-height: 1;
  z-index: 10;
}
.fs-lp .fs-hero__badge img{
  width: 14vw;
  height: auto;
}
.fs-lp .fs-hero__badge-pre{
  display: inline-block;
  background: #FF4D94;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 2px;
  transform: rotate(-5deg);
  display: block;
}
.fs-lp .fs-hero__badge-num{
  display: block;
  font-size: 61px;
  font-weight: 900;
  color: #FFE400;
  -webkit-text-stroke: 4px #FF4D94;
  text-stroke: 4px #FF4D94;
  line-height: 0.95;
}
.fs-lp .fs-hero__badge-burst{
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #FFE400;
  -webkit-text-stroke: 3px #FF4D94;
  text-stroke: 3px #FF4D94;
  line-height: 1;
}

/* メインコンテンツエリア（商品画像 | 円形写真 | 縦書きタイトル） */
.fs-lp .fs-hero__main{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0;
}

/* 商品画像（左） */
.fs-lp .fs-hero__products{
  margin-top:50px;
  width: 14vw;
  height: 24vw;
  position: relative;
  justify-self: end;
  z-index: 3;
}
.fs-lp .fs-hero__fork{
  position: absolute;
  width: 6vw;
  bottom: 0;
  left: 0;
  transform: rotate(-8deg);
  transform-origin: bottom center;
  z-index: 2;
}
.fs-lp .fs-hero__spoon{
  position: absolute;
  width: 6vw;
  bottom: 0;
  right: 3vw;
  transform: rotate(-1deg);
  transform-origin: bottom center;
  z-index: 1;
}

/* 流体シェイプにクリップした写真（中央） */
.fs-lp .fs-hero__circle{
  width: 32vw;
  height: 32vw;
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  animation: fluid-morph 20s ease-in-out infinite;
}

@keyframes fluid-morph {
  0%, 100% { border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; }
25%{ border-radius: 42% 58% 58% 42% / 52% 36% 64% 48%; }
50%{ border-radius: 50% 50% 32% 68% / 54% 42% 58% 46%; }
75%{ border-radius: 38% 62% 62% 38% / 40% 60% 40% 60%; }
}
.fs-lp .fs-hero__circle img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* 縦書きタイトル（右） */
.fs-lp .fs-hero__vtitle{
  margin-left: 1.5vw;
  justify-self: start;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 8px;
  z-index: 3;
}
.fs-lp .fs-hero__vtitle-brand{
  writing-mode: vertical-rl;
  font-size: 2.5vw;
  font-weight: 700;
  color: #333;
  background: rgba(255,255,255,0.92);
  padding: 0.8vw 0.6vw;
  border-radius: 4px;
  letter-spacing: 0.08em;
}
.fs-lp .fs-hero__vtitle-main{
  writing-mode: vertical-rl;
  font-size: 3.4vw;
  font-weight: 900;
  color: #333;
  background: rgba(255,255,255,0.92);
  padding: 1vw 0.7vw;
  border-radius: 4px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

/* キャッチコピー */
.fs-lp .fs-hero__catch{
  text-align: center;
  font-size: 2vw;
  font-weight: 700;
  color: #4A3020;
  line-height: 1.9;
  padding: 0 0 16px;
}
.fs-lp .fs-hero__catch .hl{
  background-image: linear-gradient(transparent 58%, #f9f06f 58%);
  display: inline;
  padding: 0 2px;
  line-height: 1.9;
}

/* ナビゲーションボタン（ダークブラウンの丸ボタン） */
.fs-lp .fs-hero__nav{
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 24px 0 28px;
  position: relative;
  z-index: 5;
}
.fs-lp .fs-hero__nav-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 52px;
  background: #5C3828;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 50px;
  text-align: center;
  line-height: 1.4;
  transition: opacity .15s;
}
.fs-lp .fs-hero__nav-btn:hover{ opacity: .8; }

@keyframes hero-nav-in {
  from { opacity: 0; transform: translateY(12px); }
to{ opacity: 1; transform: translateY(0); }
}
.fs-lp .fs-hero__nav-btn{
  animation: hero-nav-in 0.35s ease-out both;
}
.fs-lp .fs-hero__nav-btn:nth-child(1){ animation-delay: 1.5s; }
.fs-lp .fs-hero__nav-btn:nth-child(2){ animation-delay: 1.6s; }
.fs-lp .fs-hero__nav-btn:nth-child(3){ animation-delay: 1.7s; }
.fs-lp .fs-hero__nav-btn:nth-child(4){ animation-delay: 1.8s; }

/* ===================================================
   共通
   =================================================== */
.fs-lp .sec{ padding: 60px 0; position: relative; z-index: 1; }
.fs-lp #challenge{ padding-bottom: 120px; }
.fs-lp .sec--beige{ background: var(--beige); }
.fs-lp .sec--beige2{ background: var(--beige2); }
.fs-lp .sec-ttl{
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.4;
}
.fs-lp .sec-lead{
  font-size: 16px;
  color: var(--text2);
  line-height: 1.85;
}
.fs-lp .sec-center{ text-align: center; }
.fs-lp br.sp-only{ display: none; }

/* ===================================================
   チャレンジ意欲セクション
   =================================================== */
.fs-lp .challenge__grid{
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
.fs-lp .challenge__ttl{
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 16px;
}
.fs-lp .challenge__body p{
  font-size: 16px;
  color: var(--text);
  line-height: 1.95;
}
.challenge__img img,
.fs-lp .challenge__img .ph{
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

/* ===================================================
   「いつから？」＋キャラクターセクション
   =================================================== */
.fs-lp .question__ttl{
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  color: var(--text);
  margin: 0;
  padding: 0;
  transform: translateY(50%);
  position: relative;
  z-index: 3;
}
/* 3キャラクター横並び */
.fs-lp .question__row{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  padding-bottom: 20px;
}
/* 1つのキャラクター */
.fs-lp .q-item{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex: 1;
}
/* キャラクターイラスト */
.fs-lp .q-item__illust{
  width: 240px;
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
50%{ transform: translateY(-12px); }
}
.fs-lp .question__row .q-item:nth-child(1) .q-item__illust{
  animation: float-bob 3.2s ease-in-out infinite;
}
.fs-lp .question__row .q-item:nth-child(2) .q-item__illust{
  animation: float-bob 3.2s ease-in-out infinite;
  animation-delay: -1.1s;
}
.fs-lp .question__row .q-item:nth-child(3) .q-item__illust{
  animation: float-bob 3.2s ease-in-out infinite;
  animation-delay: -2.2s;
}
.fs-lp .q-item__illust img{
  width: 100%;
  height: auto;
  display: block;
}
.fs-lp .q-item__illust .ph{
  width: 240px;
  height: 280px;
}

/* ===================================================
   そのお悩み、エジソンママが解決します！
   =================================================== */
.fs-lp .solution{
  text-align: center;
  padding: 20px 0 20px;
}
.fs-lp .solution__ttl{
  font-size: 38px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.55;
  display: inline-block;
}
/* 黄色いハイライト下線 */
.fs-lp .solution__ttl .hl{
  background-image: linear-gradient(transparent 58%, #f9f06f 58%);
  display: inline;
  padding: 0 2px;
}

/* ===================================================
   累計販売数 ＋ 子供イラスト ＋ 白カーブ
   =================================================== */
/* ベージュセクション（質問〜解決〜累計）下部に白カーブ */
.fs-lp .sec--beige-wave{
  background: #EDE5DA;
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 40px;
  overflow: hidden;
}
.fs-lp .sec--beige-wave::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 120px;
  background: #fff;
  border-radius: 50% 50% 0 0;
  z-index: 0;
}
.fs-lp .sec--beige-wave .wrap{
  position: relative;
  z-index: 1;
}
/* 「多くのママ・パパ…」オレンジ枠テキスト */
.fs-lp .record-boxes{
  text-align: center;
  padding: 6px 0 16px;
  margin-top: 0;
  margin-bottom: 60px;
}
.fs-lp .record-box{
  display: inline-block;
  border: none;
  border-radius: 0;
  padding: 2px 5px;
  color: #E8A030;
  font-size: 29px;
  font-weight: 700;
  background: #fff;
  margin: 2px auto;
}
/* 子供キャラクター 2体 */
.fs-lp .chara-run{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 160px;
  padding-bottom: 20px;
  will-change: transform;
}
.fs-lp .chara-run img{
  width: 160px;
  height: auto;
}
.fs-lp .chara-run .ph{
  width: 160px;
  height: 200px;
}

/* ===================================================
   2012年〜使いやすさ セクション見出し
   =================================================== */
.fs-lp #features{ padding-top: 0; }
.fs-lp #tips{ margin: 0 auto 50px; border-radius: 12px; max-width: 1080px; }
.fs-lp #tips .wrap{ padding: 0 50px; }
.fs-lp .features__header{
  text-align: center;
  padding: 32px 0 28px;
}
.fs-lp .features__header-sub{
  font-size: 32px;
  color: #E8A030;
  font-weight: 700;
  margin-bottom: 10px;
}
/* EDISON mamaロゴ + が */
.fs-lp .features__header-logo-line{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.fs-lp .features__header-logo{
  height: 40px;
  width: auto;
}
.fs-lp .features__header-ga{
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
}
.fs-lp .features__header-ttl{
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.3;
}
/* 4特長レイアウト（左2＋中央商品＋右2） */
.fs-lp .features__layout{
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  grid-template-rows: auto auto;
  gap: 40px 20px;
  align-items: center;
}
.fs-lp .features__center{
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fs-lp .features__center img{
  width: 100%;
  max-width: 260px;
  height: auto;
}

/* 左側特長アイテム */
.fs-lp .f-left{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.fs-lp .f-left__photo{
  width: 220px;
  height: auto;
  border-radius: 50%;
  flex-shrink: 0;
}
.f-left__photo img,
.fs-lp .f-left__photo .ph{
  width: 220px;
  height: auto;
}
.fs-lp .f-left__ttl{
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.65;
  text-align: center;
}
.fs-lp .f-left__ttl .hl{
  background-image: linear-gradient(transparent 58%, #f9f06f 58%);
  display: inline;
}
.fs-lp .f-left__desc{
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
}

/* 右側特長アイテム */
.fs-lp .f-right{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
}


.fs-lp .f-right__photo{
  width: 240px;
  height: auto;
  border-radius: 50%;
  flex-shrink: 0;
}
.f-right__photo img,
.fs-lp .f-right__photo .ph{
  width: 240px;
  height: auto;
}
.fs-lp .f-right__ttl{
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.55;
  text-align: center;
}
.fs-lp .f-right__ttl .hl{
  background-image: linear-gradient(transparent 58%, #f9f06f 58%);
  display: inline;
}
.fs-lp .f-right__desc{
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
}
.fs-lp .f-right__note{
  font-size: 13px;
  color: var(--text2);
}

/* ===================================================
   TSUBAMEブランドセクション
   =================================================== */
.fs-lp .tsubame__grid{
  display: grid;
  grid-template-columns: 180px 1fr 200px;
  gap: 40px;
  align-items: center;
}
.fs-lp .tsubame__product img{
  width: 100%;
  height: auto;
}
.fs-lp .tsubame__location{
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 6px;
}
.fs-lp .tsubame__ttl{
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 16px;
  text-decoration: underline;
  text-decoration-color: #FFE400;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.fs-lp .tsubame__text{
  font-size: 16px;
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 8px;
}
.fs-lp .tsubame__note{
  font-size: 13px;
  color: var(--text2);
}
.fs-lp .tsubame__photo img{
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ===================================================
   ママ・パパの声セクション
   =================================================== */
.fs-lp .sec--reviews{
  background: #FBF5EF;
  border-radius: 20px;
}
.fs-lp .reviews__head{
  text-align: center;
  margin-bottom: 40px;
}
.fs-lp .reviews__lead{
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 6px;
}
.fs-lp .reviews__ttl-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.fs-lp .reviews__ttl{
  font-size: 38px;
  font-weight: 900;
  color: var(--text);
}
/* タイトル両脇の斜め線デコレーション */
.fs-lp .reviews__slash{
  display: inline-block;
  width: 32px;
  height: 3px;
  background: #E8A030;
  border-radius: 2px;
  flex-shrink: 0;
}
.fs-lp .reviews__slash--l{ transform: rotate(45deg); }
.fs-lp .reviews__slash--r{ transform: rotate(-45deg); }
.fs-lp .reviews__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.fs-lp .rv-card{
  background: #fff;
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
}
/* カード内：見出し（黄色ハイライト） */
.fs-lp .rv-card__headline{
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 14px;
}
.fs-lp .rv-card__headline .hl{
  background-image: linear-gradient(transparent 58%, #f9f06f 58%);
  display: inline;
  font-size: 1.2em;
}
.fs-lp .rv-card__headline{
  text-align: center;
}
/* カード内：イラスト＋名前 横並び */
.fs-lp .rv-card__meta{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.fs-lp .rv-card__illust{
  width: auto;
  flex-shrink: 0;
}
.rv-card__illust img,
.fs-lp .rv-card__illust .ph{
  width: auto;
  height: 120px;
  display: block;
}
.fs-lp .rv-card__name{
  font-size: 14px;
  color: var(--text2);
  font-weight: 700;
  line-height: 1.65;
}
/* カード内：オレンジ仕切り線 */
.fs-lp .rv-card__sep{
  border: none;
  height: 2px;
  background: #E8A030;
  margin: 0 0 12px;
}
/* カード内：本文 */
.fs-lp .rv-card__text{
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
}
.fs-lp .rv-card__text .hl{
  background-image: linear-gradient(transparent 58%, #f9f06f 58%);
  display: inline;
}
.fs-lp .reviews__cta{
  text-align: center;
}
/* 黄色CTAボタン */
.fs-lp .btn-yellow{
  display: inline-block;
  background: #FFE400;
  color: #5C3828;
  font-size: 16px;
  font-weight: 900;
  padding: 14px 72px;
  border-radius: 50px;
  letter-spacing: .04em;
  transition: opacity .15s;
}
.fs-lp .btn-yellow:hover{ opacity: .85; }
.fs-lp .btn-orange{
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 48px;
  border-radius: 50px;
  letter-spacing: .04em;
  transition: opacity .15s;
}
.fs-lp .btn-orange:hover{ opacity: .85; }

/* ===================================================
   開発者のこだわりセクション
   =================================================== */
/* KVバナー写真 */
.fs-lp .craftsman__kv{
  position: relative;
  width: 100%;
  height: 55vh;
  overflow: hidden;
  background: #b8a898;
}
.fs-lp .craftsman__kv > img{
  position: absolute;
  width: 100%;
  height: 150%;
  top: -25%; left: 0;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}
/* 写真上のオーバーレイテキスト */
.fs-lp .craftsman__kv-text{
  position: absolute;
  top: 50%; left: 5%;
  transform: translateY(-50%);
  pointer-events: none;
}
.fs-lp .craftsman__kv-omoiyari{
  height: 220px; width: auto; margin-bottom: 16px;
  filter: drop-shadow(1px 2px 8px rgba(0,0,0,0.4));
}
/* 白いタイトルバー */
.fs-lp .craftsman__title-bar{
  background: #fff;
  padding: 16px 0;
}
.fs-lp .craftsman__title-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}
.fs-lp .craftsman__ttl{
  font-size: 38px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.1em;
}
/* こだわりコンテンツエリア */
.fs-lp .craftsman__content{
  padding: 52px 0;
}
.fs-lp .craftsman__items{
  display: flex;
  flex-direction: column;
  gap: 56px;
}
/* POINTアイテム全体：テキスト列 ＋ 写真列 */
.fs-lp .cr-item{
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: start;
}
/* テキスト列内：[POINT/数字ブロック] + [タイトル等] */
.fs-lp .cr-item__text{
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
/* POINT + 大きな数字の縦並びブロック */
.fs-lp .cr-item__num-block{
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2px;
  min-width: 56px;
}
.fs-lp .cr-item__point-label{
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0;
}
.fs-lp .cr-item__num{
  font-size: 80px;
  font-weight: 900;
  line-height: 0.9;
  display: block;
}
/* 各POINT番号の色 */
.cr-item:nth-child(1) .cr-item__point-label,
.fs-lp .cr-item:nth-child(1) .cr-item__num{ color: #7AD4E8; }
.cr-item:nth-child(2) .cr-item__point-label,
.fs-lp .cr-item:nth-child(2) .cr-item__num{ color: #F5A0B8; }
.cr-item:nth-child(3) .cr-item__point-label,
.fs-lp .cr-item:nth-child(3) .cr-item__num{ color: #80CCAA; }
/* タイトル・サブ・本文のコンテンツ列 */
.fs-lp .cr-item__content{
  flex: 1;
  padding-top: 6px;
}
.fs-lp .cr-item__ttl{
  font-size: 29px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 6px;
  background-image: linear-gradient(transparent 58%, #f9f06f 58%);
  display: inline;
}
.fs-lp .cr-item__sub{
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.fs-lp .cr-item__body{
  font-size: 14px;
  color: var(--text2);
  line-height: 1.95;
}
/* 右側写真 */
.fs-lp .cr-item__img{
  border-radius: 8px;
  overflow: hidden;
}
.cr-item__img img,
.fs-lp .cr-item__img .ph{
  width: 100%;
  height: 220px;
  border-radius: 8px;
  object-fit: cover;
}

/* ===================================================
   商品ラインナップ ＋ STEP UP
   =================================================== */
.fs-lp .sec--lineup{
  background: var(--beige);
  padding-top: 100px;
}
.fs-lp .sec--lineup::before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V90 C960 36 480 36 0 90 Z' fill='white'/%3E%3C/svg%3E") no-repeat top center / 100% 100%;
  pointer-events: none;
}
.fs-lp .lineup__ttl{
  font-size: 38px;
  font-weight: 900;
  text-align: center;
  color: var(--text);
  margin-bottom: 10px;
}
.fs-lp .lineup__lead{
  text-align: center;
  font-size: 21px;
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 48px;
}
.fs-lp .stepup__header{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.fs-lp .stepup__en{
  height: 48px;
  width: auto;
  flex-shrink: 0;
}
.fs-lp .stepup__tagline{
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.fs-lp .stepup__card{
  background: #fff;
  border-radius: 24px;
  padding: 36px 24px 32px;
}
.fs-lp .stepup__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.fs-lp .st-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fs-lp .st-item__badge{
  width: 68px;
  height: auto;
  margin-bottom: 12px;
}
.fs-lp .st-item__img-wrap{
  width: 100%;
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 14px;
}
.fs-lp .st-item__img-wrap img{
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
  display: block;
}
.fs-lp .st-item__ttl{
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 4px;
}
.fs-lp .st-item__age{
  font-size: 13px; color: #604c3f;
  display: inline-block;
  border: 1.5px solid #604c3f;
  border-radius: 50px; padding: 2px 12px; margin: 2px;
}

/* ===================================================
   各STEP詳細セクション
   =================================================== */
.fs-lp .step-detail{
  padding: 56px 0;
  border-bottom: 0;
}
.fs-lp .step-detail__badge{
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.fs-lp .step-detail__inner{
  display: grid;
  align-items: start;
  gap: 32px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 60px;
}
.fs-lp .step-detail--left .step-detail__inner{
  grid-template-columns: 40% 1fr;
}
.fs-lp .step-detail--right .step-detail__inner{
  grid-template-columns: 1fr 40%;
}
/* 円形写真 */
.fs-lp .step-detail__circle{
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.step-detail__circle img,
.fs-lp .step-detail__circle .ph{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/* テキスト */
.fs-lp .step-detail__ttl{
  font-size: 38px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.fs-lp .step-detail__age{
  display: inline-block;
  border: 1px solid #999;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text2);
  padding: 3px 14px;
  margin-bottom: 14px;
}
.fs-lp .step-detail__desc{
  font-size: 16px;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: 20px;
}
.fs-lp .step-detail__btn{
  display: inline-block;
  border-radius: 50px;
  padding: 10px 32px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  transition: opacity .15s;
}
.fs-lp .step-detail__btn:hover{ opacity: .8; }
.fs-lp .step-detail__btn--01{ background: #7EAD50; }
.fs-lp .step-detail__btn--02{ background: #7EAD50; }
.fs-lp .step-detail__btn--03{ background: #C8A82A; }
.fs-lp .step-detail__btn--04{ background: var(--orange); }
/* 商品画像 */
.fs-lp .step-detail__product{
  position: absolute;
  bottom: -50px;
  text-align: center;
}
.fs-lp .step-detail--left .step-detail__product{
  right: 0;
}
.fs-lp .step-detail--right .step-detail__product{
  left: 0;
}
.step-detail__product img,
.fs-lp .step-detail__product .ph{
  max-height: 280px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.fs-lp .step-detail__product-note{
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
  margin-top: 8px;
  text-align: center;
}
/* 手書きキャプション */
.fs-lp .step-detail__caption{
  position: absolute; bottom: 0; left: 30%;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.fs-lp .step-detail__handwriting{
  width: 350px;
}
.fs-lp .step-detail__illust{
  width: 120px;
  height: auto;
  flex-shrink: 0;
}

/* ===================================================
   コツセクション（ページ3）
   =================================================== */
.fs-lp .tips__kv{
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: center;
  padding: 0;
  background: var(--beige);
  border-radius: 12px;
  margin-bottom: 48px;
}
.fs-lp .tips__kv-label{
  font-family: 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 4px;
}
.fs-lp .tips__kv-ttl{
  font-family: 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--orange);
  line-height: 1.4;
  margin-bottom: 0;
}
.fs-lp .tips__kv-expert{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.fs-lp .tips__kv-expert__photo{
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
}
.tips__kv-expert__photo img,
.fs-lp .tips__kv-expert__photo .ph{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.fs-lp .tips__kv-expert__name{
  font-size: 12px;
  color: var(--text2);
  text-align: center;
  line-height: 1.5;
}
/* ハイライト */
.fs-lp mark{
  background: linear-gradient(transparent 58%, #f9f06f 58%);
  color: inherit;
  padding: 0;
}
/* Q&A形式の各ブロック */
.fs-lp .tip-block{
  padding-bottom: 44px;
  margin-bottom: 44px;
}
.fs-lp .tip-block__head{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
}
.fs-lp .tip-block__num{
  height: 29px;
  width: auto;
  flex-shrink: 0;
}
.fs-lp .tip-block__ttl{
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.4;
}
.fs-lp .tip-block p{
  font-size: 16px;
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 12px;
}
.fs-lp .tip-block p:last-child{ margin-bottom: 0; }
/* フォーク・スプーン 写真＋テキスト */
.fs-lp .tip-item{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
}
.fs-lp .tip-item:last-child{ margin-bottom: 0; }
.fs-lp .tip-item__photo{
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 30px;
}
.tip-item__photo img,
.fs-lp .tip-item__photo .ph{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.fs-lp p.tip-item__ttl{
  font-size: 21px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.fs-lp .tip-col p{
  font-size: 16px;
  margin: 0;
}
/* tip-block 写真付き2カラム */
.fs-lp .tip-block__grid{
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  align-items: start;
  margin-top: 12px;
}
.fs-lp .tip-block__grid-img{
  border-radius: 8px;
  overflow: hidden;
}
.tip-block__grid-img img,
.fs-lp .tip-block__grid-img .ph{
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/* 月齢ごとのステップアップ */
.fs-lp .milestone-badge{
  display: block;
  height: 64px;
  width: auto;
  margin: 28px auto 50px;
}
.fs-lp .ms-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0 8px;
  align-items: start;
  margin-bottom: 16px;
}
.fs-lp .ms-arrow{
  height: 32px;
  width: auto;
  align-self: start;
  margin-top: 54px;
}
.fs-lp .ms-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fs-lp .ms-item__circle{
  width: 140px;
  height: auto;
  margin-bottom: 10px;
}
.fs-lp p.ms-item__desc{
  font-size: 0.8em;
  color: var(--text2);
  line-height: 1.6;
  text-align: center;
}
/* 握り方説明 */
.fs-lp .grip-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 30px auto 0;
  max-width: 900px;
}
.fs-lp p.grip-item__ttl{
  font-size: 24px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 6px;
}
.fs-lp .grip-item__ttl rt{
  font-size: 0.55em;
  font-weight: 500;
  color: var(--text2);
}
.fs-lp p.grip-item__desc{
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.fs-lp .grip-item__photo{
  border-radius: 8px;
  overflow: hidden;
}
.grip-item__photo img,
.fs-lp .grip-item__photo .ph{
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/* サイズ目安 */
.fs-lp .size-guide{
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--beige);
  border-radius: 10px;
  padding: 24px;
  margin-top: 16px;
}
.fs-lp .size-guide__img{
  width: 160px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.size-guide__img img,
.fs-lp .size-guide__img .ph{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fs-lp .size-guide__ttl{
  font-size: 19px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.fs-lp .size-guide__body{
  font-size: 16px;
  color: var(--text2);
  line-height: 1.9;
  margin: 0;
}
/* 専門家 */
.fs-lp .expert{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 40px;
}
.fs-lp .expert__body{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fs-lp .expert__avatar{
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.fs-lp .expert__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fs-lp .expert__name{
  font-size: 19px;
  font-weight: 900;
  color: var(--text);
}
.fs-lp .expert__role{
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  margin-bottom: 0;
}
.fs-lp .expert__comment{
  font-size: 16px;
  color: var(--text);
  line-height: 1.9;
  margin: 0;
}

/* ===================================================
   レスポンシブ
   =================================================== */
@media (max-width: 768px) {
  body { font-size: 14px; }
.fs-lp .wrap{ padding: 0 16px; }
.fs-lp .sec{ padding: 36px 0; }
.fs-lp .step-detail__product-note{text-align: left;}

.step-contetn{
  display: flex;}
    /* ── Hero ── */
.fs-lp .fs-hero{ padding-bottom: 40px; }
.fs-lp .fs-hero__inner{ padding: 14px 14px 0; }
.fs-lp .fs-hero__logo img{ width: 90px; }
.fs-lp .fs-hero__badge{ top: 12px; right: 12px; }
.fs-lp .fs-hero__badge img{ width: 72px; }
.fs-lp .fs-hero__main{ display: block; position: relative; }
.fs-lp .fs-hero__circle{ width: 80%; height: auto; aspect-ratio: 1; margin: 0 auto; display: block; }
.fs-lp .fs-hero__products{ position: absolute; left: 0; bottom: 40px; display: flex; flex-direction: column; gap: 4px; }
.fs-lp .fs-hero__fork, .fs-lp .fs-hero__spoon{ width: 38px; }
.fs-lp .fs-hero__spoon{right:-3vw;bottom:-50px}
.fs-lp .fs-hero__fork{right:0vw;left:auto;bottom:-50px}
.fs-lp .fs-hero__vtitle{ position: absolute; right: 0; top: 10%; transform: none; margin-left: 0; align-items: flex-start; }
.fs-lp .fs-hero__vtitle-brand{ font-size: 3.8vw; padding: 1vw 0.8vw; }
.fs-lp .fs-hero__vtitle-main{ font-size: 5.6vw; padding: 1.2vw 0.9vw; }
.fs-lp .fs-hero__catch{ font-size: 20px; padding: 0 0 10px; margin-top: 20px; }
.fs-lp .fs-hero__nav{ flex-wrap: wrap; gap: 8px; padding: 16px 0 20px; }
.fs-lp .fs-hero__nav-btn{ min-width: 44%; font-size: 13px; padding: 11px 12px; min-height: 44px; }
.fs-lp .fs-hero__nav-btn:nth-child(1){ animation-delay: 0.7s; }
.fs-lp .fs-hero__nav-btn:nth-child(2){ animation-delay: 0.8s; }
.fs-lp .fs-hero__nav-btn:nth-child(3){ animation-delay: 0.9s; }
.fs-lp .fs-hero__nav-btn:nth-child(4){ animation-delay: 1.0s; }

  /* ── Challenge ── */
.fs-lp .challenge__grid{ grid-template-columns: 1fr; gap: 24px; }
.fs-lp .challenge__ttl{ font-size: 26px; text-align: center; }
.fs-lp .challenge__body p{ text-align: center; }
.fs-lp #challenge{ padding-bottom: 60px; }

  /* ── Question / Solution ── */
.fs-lp .question__ttl{ font-size: 24px; }
.fs-lp .question__row{ gap: 6px; flex-wrap: nowrap; margin-top: 30px; }
.fs-lp .q-item__illust{ width: 30vw; max-width: 160px; }
.fs-lp .solution__ttl{ font-size: 24px; }
.fs-lp .record-box{ font-size: 18px; }
.fs-lp .record-boxes{ margin-bottom: 30px; }
.fs-lp .chara-run{ gap: 60px; }
.fs-lp .chara-run img{ width: 100px; }

  /* ── Features ── */
.fs-lp .features__header-sub{ font-size: 21px; text-align: center; }
.fs-lp .features__header-ttl{ font-size: 30px; }
.fs-lp .features__layout{ display: flex; flex-direction: column; gap: 20px; }
.fs-lp .features__layout > :nth-child(1){ order: 1; }
.fs-lp .features__layout > :nth-child(2){ order: 3; }
.fs-lp .features__layout > :nth-child(3){ order: 4; }
.fs-lp .features__layout > :nth-child(4){ order: 2; }
.fs-lp .features__layout > :nth-child(5){ order: 5; }
.fs-lp .features__center img{ max-width: 200px; margin: 0 auto 24px; }
.fs-lp .f-left{ align-items: center; text-align: center; }
.fs-lp .f-left__photo{ width: 150px; }
.fs-lp .f-left__photo img{ width: 150px; }
.fs-lp .f-right{ align-items: center; text-align: center; }
.fs-lp .f-right__photo{ width: 150px; }
.fs-lp .f-right__photo img{ width: 150px; }
.fs-lp .features__layout > :nth-child(3) .f-right__photo{ width: 220px !important; }
.fs-lp .features__layout > :nth-child(3) .f-right__photo img{ width: 220px !important; }
.fs-lp .f-left__ttl, .fs-lp .f-right__ttl{ font-size: 18px; }
.fs-lp .f-left__desc, .fs-lp .f-right__desc{ font-size: 12px; }

  /* ── TSUBAME ── */
.fs-lp .tsubame__grid{ grid-template-columns: 1fr; gap: 20px; }
.fs-lp .tsubame__ttl{ font-size: 21px; }
.fs-lp .tsubame__photo{ display: none; }
.fs-lp .tsubame__product img{ max-width: 50%; margin: 0 auto; display: block; }

  /* ── Reviews ── */
.fs-lp .reviews__ttl{ font-size: 22px; }
.fs-lp .reviews__lead{ text-align: center; }
.fs-lp .reviews__grid{ grid-template-columns: 1fr; gap: 14px; }

  /* ── Craftsman ── */
.fs-lp .craftsman__kv{ height: 28vh; }
.fs-lp .craftsman__kv-omoiyari{ width: 60%; height: auto; display: block; margin: 0 auto; }
.fs-lp .craftsman__content{ padding-top: 10px; }
.fs-lp .craftsman__title-row{ flex-direction: column; gap: 8px; margin-top: 28px; }
.fs-lp .craftsman__ttl{ font-size: 26px; }
.fs-lp .cr-item{ grid-template-columns: 1fr; gap: 20px; }
.fs-lp .cr-item__img{ order: -1; }
.fs-lp .cr-item__text{
    order: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 10px;
    align-items: start;
  }
.fs-lp .cr-item__content{ display: contents; }
.fs-lp .cr-item__num-block{ grid-column: 1; grid-row: 1 / span 2; align-self: start; }
.fs-lp .cr-item__ttl{ grid-column: 2; }
.fs-lp .cr-item__sub{ grid-column: 2; }
.fs-lp .cr-item__body{ grid-column: 1 / -1; margin-top: 6px; }
.fs-lp .cr-item__ttl{ font-size: 21px; }
.fs-lp .cr-item__sub{ font-size: 18px; margin-bottom: 0; }
.fs-lp .cr-item__num-block img{ height: 65px; width: auto; }

  /* ── Products / Lineup ── */
.fs-lp #step-details{ padding: 36px 20px; }
.fs-lp .sec--lineup{ padding-top: 60px; }
.fs-lp .sec--lineup::before{ height: 60px; }
.fs-lp .lineup__ttl{ font-size: 26px; }
.fs-lp .lineup__lead{ font-size: 16px; font-weight: 700; text-align: center; }
.fs-lp .stepup__header{ flex-direction: column; align-items: center; gap: 6px; }
.fs-lp .stepup__grid{ grid-template-columns: repeat(2, 1fr); gap: 8px; }
.fs-lp .st-item__img-wrap{ height: 160px; }
.fs-lp .st-item__img-wrap img{ max-height: 160px; }
.fs-lp .st-item__ttl{ font-size: 13px; }
.fs-lp .st-item__badge{ width: 50px; }
.fs-lp .step-detail__badge{ width: 80px; margin-bottom: 0; }
.fs-lp .step-detail__desc{ font-size: 14px; }
.fs-lp .step-detail{ padding: 36px 0; }
.fs-lp .step-detail--left .step-detail__inner,
.fs-lp .step-detail--right .step-detail__inner{ grid-template-columns: 1fr; }
.fs-lp .step-detail__circle{ width: 200px; height: 200px; margin: 0 auto; }
.fs-lp .step-detail__ttl{ font-size: 24px; }
.fs-lp .step-detail__product{ position: static; width: auto; margin: 16px 0 0; text-align: center; }
.fs-lp .step-detail__product img{ max-height: 140px; margin: 0 auto;margin-left:0 }
  /* step-detail--right: SP では circle → body → product の順に */
.fs-lp .step-detail--right .step-detail__circle{ order: 1; }
.fs-lp .step-detail--right .step-detail__body{ order: 2; }
.fs-lp .step-detail--right .step-detail__product{ order: 3; }
.fs-lp .step-detail__caption{ bottom:50px; margin-top: 16px; justify-content: center; }
.fs-lp .step-detail__illust{ display: none; }
.fs-lp .step-detail__handwriting{ max-height: 100px;width: 300px; }
.fs-lp .step-detail__inner{ grid-template-columns: 1fr; padding-bottom: 0; margin-bottom: 0; }

  /* ── Tips ── */
.fs-lp #tips{ margin: 0 8px; border-radius: 8px; }
.fs-lp #tips .wrap{ padding: 0 16px; }
.fs-lp .tips__kv{ grid-template-columns: 1fr; }
.fs-lp .tip-block{ padding: 20px 0; }
.fs-lp .tip-block__ttl{ font-size: 19px; }
.fs-lp .tip-block p{ font-size: 14px; }
.fs-lp .expert__comment{ font-size: 14px; }
.fs-lp .tip-item{ grid-template-columns: 1fr; gap: 16px; }
.fs-lp .tip-item__photo{ width: 160px; height: 160px; margin: 0 auto; }
.fs-lp .tip-item__ttl{ font-size: 16px; }
.fs-lp .tip-block__grid{ grid-template-columns: 1fr; }
.fs-lp .ms-grid{ grid-template-columns: repeat(2, 1fr); gap: 8px; }
.fs-lp .ms-arrow{ display: none; }
.fs-lp .ms-item__circle{ width: 80px; }
.fs-lp p.ms-item__desc{ font-size: 12px; }
.fs-lp .milestone-badge{ height: 45px; }
.fs-lp .grip-cols{ grid-template-columns: 1fr; gap: 16px; }
.fs-lp .grip-cols{ max-width: 100%; }
.fs-lp p.grip-item__ttl{ font-size: 19px; }
.fs-lp .size-guide{ grid-template-columns: 1fr; }
.fs-lp .expert{ grid-template-columns: 1fr; gap: 20px; }
.fs-lp .expert__avatar{ width: 100px; height: 100px; margin: 0 auto; }

  /* ── 共通フォント ── */
.fs-lp .sec-ttl{ font-size: 24px; }
.fs-lp .btn-yellow, .fs-lp .btn-orange{ padding: 12px 32px; font-size: 14px; }
.fs-lp br.pc-only{ display: none; }
.fs-lp br.sp-only{ display: block; }
}

.sec--guide-banner {
  padding: 20px 0 40px;
}
.guide-banner__link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.guide-banner__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.guide-banner__link img {
  width: 100%;
  height: auto;
  display: block;
}