/* ============================================================
   節約ワザページ専用デザイン（style.cssは触らず、ここで上書き）
   カラー設計:
   ・メイン: ティール（青緑）
   ・下地: クリームがかった白
   ・お金・おトクの数字まわりだけ: アンバー（金色系）
   ============================================================ */

/* ▼ テンプレ全体の色をここで差し替え（style.cssの色変数を上書き）
     セコマ特化ページなので、メインカラーはセコマのオレンジ */
:root {
  --orange: #EE7B00;        /* メイン: セコマオレンジ */
  --orange-light: #FDEFDC;  /* メイン薄 */
  --orange-deep: #C56400;   /* メイン濃 */
  --green: #4CAF93;
  --green-light: #E8F5F0;
  --line: #E5EDEC;
  --amber: #A66E00;         /* お金・おトク用の文字色 */
  --amber-light: #FFF2C9;   /* お金・おトク用の背景色 */
  --ink-hero: #1F3238;
  --radius: 20px;
}
body { background: #FAFAF7; }
a { color: var(--orange-deep); }
.footer a { color: #A9E2DD; }

/* ページ内リンクで飛んだとき、固定ナビに隠れないようにする */
html { scroll-padding-top: 72px; }

/* 見出しはまるっとした書体に */
.hero2__title, .section__title, .tl__day {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
}

/* ===== ヒーロー：写真の中に文字を入れる
       （下側に暗めのグラデーションを敷いて白文字。
         テレビ塔は上半分なので隠れない） ===== */
.hero2 { position: relative; }
.hero2__img {
  width: 100%;
  height: clamp(440px, 62vh, 660px);
  object-fit: cover;
}
/* 写真の下側を少し暗くして、文字を読みやすくする */
.hero2::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 62%;
  background: linear-gradient(180deg,
    rgba(15, 40, 45, 0) 0%,
    rgba(15, 40, 45, 0.38) 55%,
    rgba(15, 40, 45, 0.66) 100%);
  pointer-events: none;
}
.hero2__box {
  position: absolute;
  left: 50%; bottom: 34px;
  transform: translateX(-50%);
  z-index: 1;
  width: min(680px, calc(100% - 40px));
  text-align: center;
}
.hero2__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  color: #fff; background: var(--orange);
  padding: 6px 16px; border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(10, 30, 35, 0.3);
}
.hero2__title {
  font-size: clamp(27px, 5.4vw, 44px);
  font-weight: 900; line-height: 1.42;
  color: #fff;
  text-shadow: 0 2px 14px rgba(10, 30, 35, 0.55);
}
.hero2__lead {
  margin-top: 12px;
  font-size: 15px; font-weight: 700;
  color: rgba(255, 255, 255, 0.95); line-height: 1.9;
  text-shadow: 0 1px 10px rgba(10, 30, 35, 0.55);
}

/* ===== 目次（ワザ一覧の吹き出しカード） ===== */
.toc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 8px;
}
.toc__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-white);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 3px 12px rgba(23, 60, 64, 0.05);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.toc__item:hover { border-color: var(--orange); transform: translateY(-2px); }
.toc__emoji { font-size: 24px; flex-shrink: 0; }
.toc__text { flex: 1; min-width: 0; }
.toc__name {
  display: block;
  font-size: 13.5px; font-weight: 800; line-height: 1.4;
}
.toc__price {
  display: block;
  font-size: 12px; font-weight: 800;
  color: var(--amber);
}
.toc__arrow {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange-deep);
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ===== ワザセクションを白いカードに載せる ===== */
.waza {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  margin: 28px 0;
  box-shadow: 0 8px 28px rgba(23, 60, 64, 0.07);
}
/* ×ケチるなカードはローズ、○ケチってOKカードはティールの上ライン */
.waza--ng { border-top: 6px solid #D45D6A; }
.waza--ok { border-top: 6px solid var(--orange); }
.waza--ng .waza__num { background: #D45D6A; border-radius: 50%; }
.waza--ok .waza__num { border-radius: 50%; }

/* ===== 失敗談の引用ブロック ===== */
.fail {
  background: #FBF1F2;
  border-left: 4px solid #D45D6A;
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  margin: 14px 0;
}
.fail__label {
  display: block;
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  color: #B34550;
  margin-bottom: 4px;
}
.fail p {
  font-size: 14px; color: #5A4348;
  line-height: 1.85; margin: 0 0 6px;
}
.fail p:last-child { margin-bottom: 0; }
.section__title {
  border-bottom: none;
  padding-bottom: 0;
  color: var(--ink-hero);
}

/* ===== ワザカードの見出しまわり ===== */
.waza__head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.waza__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 16px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.waza__price {
  display: inline-block;
  font-size: 13px; font-weight: 800;
  color: var(--amber);
  background: var(--amber-light);
  border-radius: 999px;
  padding: 5px 14px;
  margin: 2px 0 12px;
}

/* ===== おすすめポイント（バラバラだったタグ類をひとまとめに） ===== */
.points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 4px 0 14px;
  padding: 10px 14px;
  background: #FFF9EF;
  border: 1px dashed #EFD9B4;
  border-radius: 12px;
}
.points__label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff; background: var(--orange);
  padding: 4px 11px; border-radius: 999px;
}
.point {
  font-size: 12.5px; font-weight: 700;
  color: #6B5334;
  background: #fff;
  border: 1px solid #EFE3CE;
  border-radius: 999px;
  padding: 4px 11px;
}

/* ===== Q&Aの対話吹き出し ===== */
.qa { display: grid; gap: 12px; margin: 14px 0 4px; }
.qa__q, .qa__a {
  position: relative;
  max-width: 90%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.85;
  color: #444;
}
.qa__q {
  justify-self: start;
  background: #F5F2EA;
  border-top-left-radius: 5px;
}
.qa__a {
  justify-self: end;
  background: var(--orange-light);
  border-top-right-radius: 5px;
}
.qa__who {
  display: block;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.qa__q .qa__who { color: #8A7A4D; }
.qa__a .qa__who { color: var(--orange-deep); }

/* ===== 写真：カードの幅いっぱいに大きく見せる ===== */
.waza .photo {
  margin: 22px -24px 10px;
}
.waza .photo img {
  border-radius: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* ===== 仕分けボード（目次）のグループ見出し ===== */
.toc__label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 800;
  margin: 22px 0 10px;
}
.toc__label--ng { color: #B34550; }
.toc__label--ok { color: var(--orange-deep); }
.toc__label .mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.toc__label--ng .mark { background: #D45D6A; }
.toc__label--ok .mark { background: var(--orange); }

/* ===== 「さらに表示」アコーディオン ===== */
.more {
  margin-top: 16px;
  border-top: 1px dashed var(--line);
  padding-top: 4px;
}
.more summary {
  cursor: pointer;
  list-style: none;
  font-size: 13.5px; font-weight: 800;
  color: var(--orange-deep);
  padding: 10px 0 6px;
  user-select: none;
}
.more summary::-webkit-details-marker { display: none; }
.more summary::before { content: "▸ "; }
.more[open] summary::before { content: "▾ "; }
.more__body { padding: 6px 0 4px; }
.more__body p { font-size: 14px; color: #555; margin-bottom: 10px; }

/* ===== 3日間タイムライン ===== */
.timeline { display: grid; gap: 14px; margin: 20px 0; }
.tl__item {
  display: flex; gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(23, 60, 64, 0.05);
}
.tl__num {
  flex-shrink: 0;
  font-size: 28px; font-weight: 900;
  color: var(--orange);
  line-height: 1;
  padding-top: 3px;
}
.tl__day {
  font-size: 16px; font-weight: 800; color: var(--ink-hero);
  margin-bottom: 6px;
}
.tl__text { font-size: 14px; color: #555; line-height: 1.85; margin: 0; }

/* ===== 埋め込みマップ ===== */
.map iframe {
  width: 100%; height: 340px;
  border: 0;
  border-radius: var(--radius);
  margin: 14px 0;
  box-shadow: 0 4px 16px rgba(23, 60, 64, 0.06);
}
.map__links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.map__btn {
  font-size: 13px; font-weight: 700;
  color: var(--orange-deep);
  background: var(--orange-light);
  border-radius: 999px;
  padding: 9px 17px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.map__btn:hover { opacity: 0.7; }

/* ===== スマホ ===== */
@media (max-width: 600px) {
  .toc { grid-template-columns: 1fr; }
  .hero2__img { height: 60vh; }
  .hero2__box { bottom: 24px; }
  .qa__q, .qa__a { max-width: 100%; }
  .waza { padding: 22px 18px 18px; }
  .waza .photo { margin: 18px -18px 8px; }
  .tl__item { padding: 16px; }
  .map iframe { height: 280px; }
}
