@charset "UTF-8";

html{
  scroll-behavior: smooth;
}
.wt-fullpage{
  --ink:#2f2a24;
  --sub:#6a5a44;
  --brand:#b48a5a;
  --bg:#fffbf8;
  --paper:#ffffff;
  --line:rgba(0,0,0,0.08);
  --shadow:0 10px 28px rgba(0,0,0,0.10);
  --shadow2:0 6px 14px rgba(0,0,0,0.08);
  background: transparent;
  color:var(--ink);
  font-size:16px;
  line-height:1.9;
}

/* 保険：画像とリンクの共通崩れ防止 */
.wt-fullpage img{ max-width:100%; height:auto; }
.wt-fullpage a{ color:inherit; }
.wt-fullpage a:hover{ text-decoration:none; }

/* ------------------------------
  1) Layout
------------------------------ */
.wt-wrap{
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.wt-grid{ gap:18px; }
.wt-card{
  width: 100%;
  border-radius:18px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:var(--shadow2);
}
.wt-fullpage .wt-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* アンカー移動：sticky分のズレ防止 */
#age0a, #age0b, #age1, #age2, #age3, #age4{ scroll-margin-top:120px; }

/* ------------------------------
  2) HERO（暗さ・シャドウ無し版）
------------------------------ */
.wt-heroFull{
  position:relative;
  overflow:hidden;
  min-height: clamp(420px, 60vh, 620px);
}
.wt-heroFull__bg{ position:absolute; inset:0; }
.wt-heroFull__img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  box-shadow:none;
  filter:none;
}
.wt-heroFull__img--sp{ display:none; }
.wt-heroFull__img--pc{ display:block; }

/* 以前のオーバーレイを無効化（暗さ・影っぽさ防止） */
.wt-heroFull::before{ display:none; }

.wt-heroFull__inner{
  position:relative;
  z-index:2;
  width:min(92%, 1120px);
  margin:0 auto;
  padding: clamp(40px, 7vh, 84px) 0;
  padding-left: 6%;
}
.wt-heroFull__lead{
  color:#fff;
  font-size: clamp(15px, 1.8vw, 17px);
}

/* ------------------------------
  3) 年齢チップ（sticky + 横スクロール対応）
------------------------------ */
.wt-chipsFull{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
}

/* 通常状態 */
.wt-chip{
  position:relative;
  flex:0 0 auto;
  white-space:nowrap;
  border-radius:999px;
  border:1px solid rgba(180,138,90,0.30);
  background:#fff;
  color:var(--ink);
  font-weight:800;
  font-size:14px;
  padding:10px 14px;
  box-shadow:0 4px 10px rgba(0,0,0,0.06);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    color .18s ease,
    background .18s ease;
}
/* 下線（最初は見えない） */
.wt-chip::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  width:0;
  height:3px;
  border-radius:999px;
  background:var(--brand);
  transform:translateX(-50%);
  transition:width .18s ease;
}
/* Hover時：分かりやすく・上品に */
.wt-chip:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 20px rgba(180,138,90,0.22);
}
.wt-chip:hover::after{
  width:50%;
}

/* フォーカス（キーボード操作対応・保険） */
.wt-chip:focus-visible{
  outline:none;
  box-shadow:
    0 0 0 4px rgba(180,138,90,0.25),
    0 14px 26px rgba(180,138,90,0.28);
}

.wt-cardImg{
  position:relative;
  aspect-ratio:16 / 9;
  background:transparent;
  padding-top:25px;
  box-sizing:border-box;
  overflow:hidden;
}
.wt-cardImg img{
  width:100%;
  height:calc(100% - 25px);
  object-fit:contain;
  display:block;
}
.wt-badge{
  position:absolute;
  left:14px; bottom:14px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(0,0,0,0.10);
  font-weight:900;
  color:var(--ink);
}

/* ------------------------------
  5) Card body / Typography
------------------------------ */
.wt-cardBody{
	background: var(--paper);
	border-top: 1px solid var(--line);
	padding: clamp(16px, 2.8vw, 22px);
	margin-bottom: 80px;
}

/* 見出し（オシャレの核） */
.wt-h2{
  margin:0 0 12px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.35;
  font-size: clamp(17px, 2.4vw, 20px);
  font-weight:900;
  color:var(--ink);
  border:0;
  padding:0;
}
.wt-h2 .wt-bar{
  width:10px;
  height:10px;
  margin-top:0.45em;
  border-radius:999px;
  background: var(--brand);
  box-shadow:0 0 0 4px rgba(180,138,90,0.18);
}

/* “ポイント”行（チップ風） */
.wt-one{
  margin:10px 0 0;
  padding:10px 12px;
  border-radius:12px;
  background:#fff7ee;
  border:1px solid rgba(180,138,90,0.20);
  color:var(--sub);
  font-size:13px;
  line-height:1.7;
}

/* 本文 */
.wt-par{
  margin-top:14px;
  color:var(--sub);
  font-size: clamp(14px, 2.0vw, 15px);
  line-height:2.05;
}
.wt-par + .wt-par{ margin-top:18px; }

/* 小見出し */
.wt-h3{
  margin-top: 40px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8f8f3;
  border: 1px solid rgba(0,0,0,0.06);
  border-left: 5px solid var(--brand);
  font-size: 15px;
  font-weight: 900;
  color: var(--ink);
}

/* まとめ/おすすめ：上質カード */
.wt-list{
  margin-top:14px;
  padding:14px 14px;
  background:#ffffff;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.06);
  box-shadow:0 8px 18px rgba(0,0,0,0.06);
  color:var(--sub);
  font-size: clamp(14px, 2.0vw, 15px);
  line-height:2.0;
}

/* ------------------------------
  6) Reco
------------------------------ */
.wt-reco{
  margin-top: 25px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #fff7ee);
  border: 1px solid rgba(180,138,90,0.18);
}
.wt-recoT{
  margin: 0 0 6px;
  font-weight: 500;
  color: var(--ink);
}
.wt-recoTags{ margin:0; color:var(--sub); }

/* ------------------------------
  7) Picks grid（売れる見え方）
------------------------------ */
.wt-picks{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
.wt-pick{
  display:block;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.06);
  background:#fff;
  box-shadow:0 10px 18px rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wt-pick:hover{
  transform: translateY(-2px);
  box-shadow:0 18px 28px rgba(0,0,0,0.10);
}
.wt-pick img{
  width:100%;
  height:150px;
  object-fit:cover;
  display:block;
}
.wt-pick span{
  display: block;
  padding: 10px 10px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  background: #fff;
  font-size: 94%;
}

/* ------------------------------
  8) CTA
------------------------------ */
.wt-ctaRow{
  margin-top: 30px;
  text-align: center;
}
.wt-ctaBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  padding: 15px 18px;
  background: linear-gradient(180deg, #c79a63, #b48a5a);
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(180,138,90,0.28);
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.wt-ctaBtn:hover{
  transform: translateY(-1px);
  filter:brightness(1.02);
  box-shadow:0 18px 32px rgba(180,138,90,0.34);
}

/* ------------------------------
  9) FAQ
------------------------------ */
.wt-bottom{ margin-top:26px; padding:18px 0 8px; }
.wt-bottomT{ font-size:20px; font-weight:900; margin:0 0 12px; }

.wt-faq{
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.06);
  background:#fff;
  box-shadow:0 10px 18px rgba(0,0,0,0.06);
  overflow:hidden;
  margin:10px 0;
}
.wt-faq summary{
  cursor: pointer;
  padding: 14px 44px 14px 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  list-style: none;
}

/* ==============================
  下部ナビゲーションボタン
============================== */
.wt-bottomBtns{
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ボタン本体 */
.wt-bottomBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 999px;

  background: #fff;
  border: 2px solid rgba(180,138,90,0.35);
  color: #2f2a24;

  font-weight: 900;
  font-size: 15px;
  text-decoration: none;

  box-shadow:
    0 6px 14px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    border-color .18s ease;
}

/* 矢印で「リンク感」を明確に */
.wt-bottomBtn::after{
  content: "→";
  margin-left: 10px;
  font-weight: 900;
  transition: transform .18s ease;
}

/* hover */
.wt-bottomBtn:hover{
  background: #fff7ee;
  border-color: #b48a5a;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(180,138,90,0.25);
}
.wt-bottomBtn:hover::after{
  transform: translateX(4px);
}


/* 768px以下：スマホ表示（※重複整理済み） */
@media (max-width:768px){
  .wt-heroFull__img--pc{ display:none; }
  .wt-heroFull__img--sp{ display:block; }
　.wt-fullpage .wt-grid{
    gap: 14px;
  }
  .wt-chipsFull{ gap:16px; }
  .wt-wrap{
    width: 94%;
    padding: 12px 10px 18px;
  }
  .wt-ctaBtn{
    width:90%;
    padding:12px 16px;
    font-size:14px;
  }

  /* 年齢チップ：固定＋横スクロール＋指で押しやすく */
  .wt-chipsFull{
    position: sticky;
    top: 0;
    z-index: 60;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 10px;
    background: rgba(255,251,248,0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0,0,0,0.06);

    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .wt-chipsFull::-webkit-scrollbar{ display:none; }

  .wt-chip{
    padding: 12px 14px;
    font-size: 14px;
  }

  #age0a, #age0b, #age1, #age2, #age3, #age4{
    scroll-margin-top: 110px;
  }

  /* HERO：上半分だけ暖色オーバーレイ（重複整理） */
  .wt-heroFull{
    position: relative;
  }
  .wt-heroFull::after{
		content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      rgba(60, 45, 30, 0.45) 0%,
      rgba(60, 45, 30, 0.28) 35%,
      rgba(60, 45, 30, 0.12) 55%,
      rgba(60, 45, 30, 0.00) 70%
    );
  }

  /* 文字：中央寄せ（縦位置はそのまま） */
  .wt-heroFull__inner{
    position: relative;
    z-index: 2;
    text-align: center;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .wt-heroFull__lead{
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.9;
  }

  /* カード内 */
  .wt-par,
  .wt-list{
    font-size: 14px;
    line-height: 1.95;
  }
  .wt-h2{
    font-size: 17px;
    line-height: 1.35;
  }

  /* Picks：3列→2列 */
  .wt-picks{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
  }
  .wt-pick img{
    height: 132px;
  }
  .wt-pick span{
    font-size: 13px;
    padding: 9px 10px;
  }

  /* CTA */
  .wt-ctaBtn{
    width: 100%;
    max-width: 420px;
    padding: 14px 16px;
    font-size: 15px;
  }
　  .wt-bottomBtns{
    flex-direction: column;
    gap: 12px;
  }
  .wt-bottomBtn{
    width: 100%;
    min-width: auto;
    font-size: 16px;
    padding: 16px 18px;
  }

}

/* ShopServeの <p> 対策 */
.journal-cont > p:has(.wt-fullpage){
  margin: 0 !important;
  padding: 0 !important;
}
.journal-cont > p{
  margin: 0 !important;
  padding: 0 !important;
}
.wt-fullpage{
  display: block;
  font-size: 16px;
  line-height: 1.9;
}
