/* ============================================================
   Tate. 商品ラインナップページ専用スタイル lineup.css
   （style.css の後に読み込む。index.html では読み込まれない）
   ============================================================ */

/* 下画像とのブレンドモード */
.detail-card__badge {mix-blend-mode: multiply;}

/* ---------- HERO（商品ラインナップ） ---------- */
/* style.css は背景を file:// 絶対パスで指定しており http 配信では読めないため、
   相対パスで上書き（file:// 直開きでも http でも動作する）。 */
.hero--lineup .hero__inner {
  background-image: url("../img1/img1-1.jpg");
}
.hero--lineup .hero__title { letter-spacing: .12em; }
/*.hero--lineup .hero__points--4 {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}*/
/*.hero--lineup .hero__points--4 li { flex: 0 0 auto; }
.hero--lineup .hero__points--4 img { width: 140px; height: auto; }*/

/* ============================================================
   商品一覧（detail-card）
   ============================================================ */
.lineup-list .detail-card { margin-bottom: 50px; }
.lineup-list .detail-card:last-child { margin-bottom: 0; }

.detail-card {
  position: relative;
  background: #fff;
	max-width: 850px;
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 44px;
  align-items: start;
  box-shadow: 0 10px 30px rgba(120,140,130,.10);
}
.detail-card__visual { position: relative; align-self: stretch; }
.detail-card__badge {
  position: absolute;
  top: -38px; left: -22px;
  width: 160px;
  z-index: 2;
}
.detail-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.detail-card__name {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--teal-deep);
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  letter-spacing: .05em;
}
.detail-card__name--alt { color: var(--teal); }
.detail-card__name span { font-size: 0.8rem; }
.detail-card__price {
  font-family: var(--serif);
  margin: 6px 0 10px;
  color: var(--ink);
}
.detail-card__price strong { font-size: var(--fs-price); font-weight: 600; letter-spacing: .02em; }
.detail-card__price small { font-size: 0.9rem; color: var(--ink-soft); }
.detail-card__desc {
  font-size: 0.85rem;/*var(--fs-body);*/
  color: var(--ink-soft);
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

/* 特長ミニ3列 */
.feat-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.feat-mini li { text-align: center; }
.feat-mini img { width: 90px; height: 90px; margin: 0 auto 8px; object-fit: contain; }
.feat-mini b {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.85ren;/*var(--fs-body);*/
  color: var(--ink);
  margin-bottom: 6px;
}
.feat-mini span { display: block; font-size: 0.8rem;/*var(--fs-small); */color: var(--ink-soft); line-height: 1.65; }

/* スペック行（ヘッドサイズ＋チェックリスト×2） */
.spec-row {
  display: grid;
  grid-template-columns: 130px 1fr 1fr;
  gap: 16px;
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 20px;
  align-items: start;
}
.spec-pill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--teal-soft);
  border-radius: 8px;
  padding: 10px 6px;
  font-size: .72rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.spec-pill b { font-family: var(--serif); font-size: 1rem; color: var(--teal-deep); }
.checklist__title {
  font-family: var(--serif);
  font-size: 0.8rem;/*var(--fs-small);*/
  color: var(--teal-deep);
  padding-bottom: 6px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--teal-soft);
	font-weight: 600;
}
.checklist ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.75rem;/*var(--fs-small);*/
  color: var(--ink-soft);
  line-height: 1.7;
}
.checklist ul li::before {
  content: "✓";
  position: absolute;
  left: 2px; top: 0;
  color: var(--teal);
  font-weight: 700;
}

/* 選べる5色 */
.color-dots {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
  font-size: var(--fs-small);
  color: var(--ink-soft);
}
.color-dots__label {
  font-family: var(--serif);
  color: var(--ink);
  margin-right: 8px;
}
.color-dots em { font-style: normal; margin-right: 10px; font-size: .75rem; }
.dot {
  display: inline-block;
  width: 20px; height: 20px;
  border-radius: 50%;
  margin-right: 2px;
  vertical-align: middle;
}
.dot--white  { background: #fff; border: 1px solid #d8ddd8; }
.dot--yellow { background: #f6c344; }
.dot--green  { background: #9ccf86; }
.dot--purple { background: #a07bf0; }
.dot--pink   { background: #f3919e; }

.detail-card__btns { display: grid; gap: 10px; max-width: 420px; }
.detail-card__btns .btn--block { margin-top: 0; }

/* ============================================================
   2サイズ比較テーブル
   ============================================================ */
.compare {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.compare__row {
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare__row:last-child { border-bottom: none; }
.compare__label {
  background: var(--bg-alt);
  padding: 18px 16px;
  font-size: 0.85rem;/*var(--fs-body);*/
  color: var(--teal-deep);
  font-family: var(--serif);
  display: flex;
  align-items: center;
	font-weight: 600;
}
.compare__col {
  padding: 18px 16px;
  text-align: center;
  font-size: 0.85rem;/*var(--fs-body);*/
  color: var(--ink);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}
.compare__row--head .compare__col { padding: 24px 16px 18px; }
.compare__brush { width: 200px; height: auto; margin-bottom: 10px; }
.compare__name { font-family: var(--serif); color: var(--teal-deep); font-size: var(--fs-body); }
.scene-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.scene-item { width: 100px; font-size: var(--fs-small); color: var(--ink-soft); }
.scene-item img { width: 80px; height: 80px; margin: 0 auto 5px; object-fit: contain; }

/* ============================================================
   LIFESTYLE キャプション拡張
   ============================================================ */
.lifestyle__item figcaption b {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--fs-card-title);
  color: var(--ink);
  margin-bottom: 6px;
}
.lifestyle__item figcaption span {
  display: block;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============================================================
   下部CTA（あなたにぴったりの1本を）
   ============================================================ */
.bottom-cta { padding: 70px 24px 90px; }
.bottom-cta__band {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
	background-image: url("../img6/img6-87.png");
	background-position: left center;
	background-size: auto 110%;
	background-repeat: no-repeat;
  /*background: linear-gradient(160deg, #dfece7 0%, #cfe2dc 100%);*/
  border-radius: 22px;
  padding: 48px 44px;
  overflow: hidden;
}
.bottom-cta__leaf { position: absolute; width: 88px; opacity: .6; pointer-events: none; }
.bottom-cta__leaf--l { top: 16px; left: 22px; }
.bottom-cta__leaf--r { bottom: 16px; right: 22px; transform: scaleX(-1); }
.bottom-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.bottom-cta__photo {
  width: 230px;
  border-radius: 12px;
  flex-shrink: 0;
  mix-blend-mode: multiply;
}
.bottom-cta__main { text-align: center; }
.bottom-cta__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: var(--teal-deep);
}
.bottom-cta__sub { color: #5d7a73; font-size: 0.85rem;/*var(--fs-body);*/ margin: 12px 0 26px; }
.bottom-cta__buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.bottom-cta__btn {
  flex-direction: column;
  padding: 14px 28px;
  line-height: 1.5;
  min-width: 250px;
  font-size: 1.05rem;
}
.bottom-cta__btn-sm { font-size: .78rem; letter-spacing: .04em; }

.bottom-cta__reasons {
  max-width: 800px;
  margin: 0 auto 0;
	padding: 0 0 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.reason-mini { text-align: center; }
.reason-mini img { width: 80px; height: 80px; margin: 0 auto 8px; object-fit: contain; }
.reason-mini p { font-size: 0.85rem;/*var(--fs-body);*/ color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero--lineup .hero__points--4 { justify-content: center; }
  .hero--lineup .hero__points--4 img { width: 100px; }

  .detail-card { grid-template-columns: 260px 1fr; gap: 28px; padding: 32px; }
  .feat-mini { gap: 12px; }
	.spec-row { grid-template-columns: 1fr; gap: 14px; }
	.bottom-cta__band { padding: 36px 22px; background:var(--bg-alt); }
	.bottom-cta__band img {max-width: 70%; margin: 0 auto;}
  .bottom-cta__reasons { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .reason-mini img { width: 50px; height: 50px; }
}

@media (max-width: 600px) {
  /* HERO: 4チップを2×2で商品画像の下に配置 */
  /*.hero--lineup .hero__points--4 { margin: 250px 0 0; gap: 10px 18px; }
  .hero--lineup .hero__points--4 li { flex: 0 0 40%; }
  .hero--lineup .hero__points--4 img { width: 96px; }*/
	.hero__badge {top:-370px;}
	
  /* 商品一覧カード：縦積み */
  .detail-card { grid-template-columns: 1fr; gap: 22px; padding: 26px 18px; }
  .detail-card__badge { width: 130px; top: -44px; left: -8px; }
  .detail-card__photo { max-width: 100%; max-height: auto; }
  .detail-card__name,
  .detail-card__price,
  .detail-card__desc,
	.detail-card__body p { text-align: center; }
	.detail-card__desc {
		font-size: 0.9rem;}
  .feat-mini { grid-template-columns: repeat(3, 1fr); gap: 8px; }
	
  .feat-mini span { font-size: .75rem; }
  /*.spec-row { grid-template-columns: 1fr; gap: 14px; }*/
	.checklist__title {
		font-size: 0.9rem;}
  .checklist ul li { font-size: 0.8rem; }
	
  .color-dots { justify-content: center; }
	.color-dots em { font-size: 0.9rem; }
	.break {width: 100%; height: 0;}
  .detail-card__btns { max-width: none; }

  /* 比較表：ラベル列を細く＋文字縮小 */
  .compare__row { grid-template-columns: 70px 1fr 1fr; }
  .compare__label { padding: 14px 8px; font-size: 0.9rem; }
  .compare__col { padding: 14px 8px; font-size: 0.9rem; }
  .compare__name { font-size: .74rem; }
  .scene-row { gap: 6px; }
  .scene-item { width: 58px; font-size: 0.85rem; }
  .scene-item img { width: 120px; height: 120px; }

  /* 下部CTA */
  .bottom-cta { padding: 50px 16px 64px; }
	.bottom-cta__band img {max-width: 100%; }
  .bottom-cta__inner { flex-direction: column; gap: 22px; }
  .bottom-cta__photo { width: 180px; }
  .bottom-cta__buttons { flex-direction: column; gap: 12px; }
  .bottom-cta__btn { width: 100%; min-width: 0; }
	.bottom-cta__title {font-size: 1.8rem;}
	.bootom-cta__sub {font-size: 0.9rem;}
  .bottom-cta__leaf { width: 60px; }
  .bottom-cta__reasons { grid-template-columns: repeat(3, 1fr); gap: 22px 10px; margin: 0 20px 0; }
	.reason-mini img { width: 80px; height: 80px; }
	.reason-mini p { font-size: 0.95rem;}
}
