/* ================================================
   targets.css 
   mealhack.jp
   ================================================ */

/* --- Targets Hero --- */
.targets-hero {
  padding: clamp(100px, 14vw, 160px) 0 var(--space-md); /* Reduced bottom padding */
  background: var(--color-bg-warm);
  text-align: left;
}

.targets-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.targets-hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.targets-hero .hero-sub {
  font-size: 0.95rem;
  color: var(--color-text-sub);
  line-height: 1.8;
  max-width: 700px;
  margin: 0;
}

/* --- Targets Intro --- */
.targets-intro {
  padding: var(--space-md) 0 var(--space-lg); /* Reduced top padding */
  text-align: center; /* Back to center */
  background: linear-gradient(to bottom, var(--color-bg-warm), var(--color-bg));
}

.intro-card {
  max-width: 900px;
  margin: 0 auto; /* Back to center */
  background: #fff;
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--color-border);
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%; /* Back to center */
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-accent);
}

.intro-badge {
  display: none; /* Hide as per user request */
}

.intro-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text);
  margin-bottom: 2.5rem;
  line-height: 1.4;
  text-align: center; /* Center */
}

.intro-body {
  max-width: 700px;
  margin: 0 auto; /* Center */
  text-align: left; /* Keep body text left for readability within centered card */
}

.intro-body p {
  font-size: 0.95rem;
  color: var(--color-text-sub);
  line-height: 2.0;
  margin-bottom: 1.5rem;
}

.intro-body .lead-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center; /* Center */
  margin-bottom: 2.5rem;
  color: var(--color-accent);
}

.intro-body strong {
  color: var(--color-text);
  background: linear-gradient(transparent 70%, rgba(255, 138, 77, 0.4) 0);
}

.intro-body p:last-child {
  margin-bottom: 0;
}

/* --- Targets Grid --- */
.targets-container {
  padding: var(--space-xl) 0 5rem; /* Reduced top padding */
}

.targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.target-card {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 1.5rem; /* Reduced from var(--space-lg) */
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.target-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.card-icon {
  width: 40px; /* Reduced from 48px */
  height: 40px;
  background: var(--color-bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem; /* Reduced from 1.5rem */
  color: var(--color-accent);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.target-card:hover .card-icon {
  background: var(--color-accent);
  color: #fff;
}

.card-header h2 {
  font-size: 1.0rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
  line-height: 1.3;
}

/* Card Content */
.card-tagline {
  font-size: 0.85rem; /* Reduced from 0.95rem */
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.card-desc {
  font-size: 0.82rem; /* Reduced from 0.88rem */
  color: var(--color-text-sub);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Benefits List */
.card-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px; /* Reduced from 8px */
}

.card-benefits li {
  font-size: 0.78rem; /* Reduced from 0.82rem */
  color: var(--color-text);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.card-benefits li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.7rem;
}

/* Card Footer */
.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px; /* Reduced from 12px 24px */
  background: var(--color-text);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem; /* Reduced from 0.85rem */
  transition: all 0.2s;
  width: fit-content;
}

.target-card:hover .card-cta {
  background: var(--color-accent);
  color: #fff !important;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .targets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .targets-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .targets-container {
    padding: var(--space-xl) var(--space-md) 3rem;
  }
}

@media (max-width: 600px) {
  .targets-hero {
    padding: 100px 0 var(--space-lg);
  }
  .target-card {
    padding: var(--space-md);
  }
}

/* ================================================
   Shared Purpose Article Layout
   family / single / student / futari / freelance / diet / fitness
   ================================================ */

#mealhack-root * {
  box-sizing: border-box;
}

#mealhack-root a {
  text-decoration: none;
}

#mealhack-root {
  --mh-purpose-green: #6f8f6b;
  --mh-purpose-green-dark: #5f7e5b;
  --mh-purpose-green-soft: #f3f7f1;
}

#mealhack-root .mh-shell {
  width: min(1200px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  #mealhack-root .mh-shell {
    width: calc(100% - 32px);
  }
}

#mealhack-root :is(.fam-hero, .sg-hero, .st-hero, .fu-hero, .fr-hero, .dt-hero, .ft-hero, .sn-hero) {
  background: #fffdf9;
  border-bottom: 1px solid #ede8e0;
}

#mealhack-root :is(.fam-hero-inner, .sg-hero-inner, .st-hero-inner, .fu-hero-inner, .fr-hero-inner, .dt-hero-inner, .ft-hero-inner, .sn-hero-inner) {
  padding: clamp(112px, 13vw, 168px) 0 clamp(52px, 7vw, 80px);
}

#mealhack-root [class*="-hero"] h1,
#mealhack-root [class*="-h2"],
#mealhack-root [class*="-brand-name"],
#mealhack-root [class*="-struggle-h3"],
#mealhack-root [class*="-week-h3"],
#mealhack-root [class*="-col3-h3"],
#mealhack-root [class*="-criteria-h3"],
#mealhack-root [class*="-related-h2"],
#mealhack-root [class*="-cta-h2"],
#mealhack-root [class*="-pagenav-title"],
#mealhack-root [class*="-faq-qmark"],
#mealhack-root [class*="-faq-amark"] {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
}

#mealhack-root [class*="-hero"] h1 {
  font-size: clamp(2.1rem, 4.5vw + 0.4rem, 3.7rem);
  line-height: 1.55;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 26px;
}

#mealhack-root [class*="-hero-line"] {
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: #f59e0b;
  margin-bottom: 24px;
}

#mealhack-root [class*="-hero-lead"] {
  font-size: 1.04rem;
  line-height: 2;
  color: #6a6560;
  font-weight: 500;
  margin-bottom: 36px;
}

#mealhack-root [class*="-btn-row"] {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#mealhack-root [class*="-btn-primary"],
#mealhack-root [class*="-btn-secondary"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

#mealhack-root [class*="-btn-primary"] {
  background: #f59e0b;
  color: #fff;
  border: 1.5px solid #f59e0b;
}

#mealhack-root [class*="-btn-primary"]:hover {
  background: #ea8c00;
  border-color: #ea8c00;
}

#mealhack-root [class*="-btn-secondary"] {
  background: transparent;
  color: #d86f1e;
  border: 1.5px solid #f5b88a;
}

#mealhack-root [class*="-btn-secondary"]:hover {
  background: var(--mh-purpose-green-soft);
  color: var(--mh-purpose-green-dark);
  border-color: var(--mh-purpose-green);
}

#mealhack-root :is(.fam-nav, .sg-nav, .st-nav, .fu-nav, .fr-nav, .dt-nav, .ft-nav, .sn-nav) {
  border-top: 1px solid #ede8e0;
  border-bottom: 1px solid #ede8e0;
  background: #fff;
  padding: 16px 0;
}

#mealhack-root :is(.fam-nav-inner, .sg-nav-inner, .st-nav-inner, .fu-nav-inner, .fr-nav-inner, .dt-nav-inner, .ft-nav-inner, .sn-nav-inner) {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#mealhack-root :is(.fam-nav-inner, .sg-nav-inner, .st-nav-inner, .fu-nav-inner, .fr-nav-inner, .dt-nav-inner, .ft-nav-inner, .sn-nav-inner)::-webkit-scrollbar {
  display: none;
}

#mealhack-root :is(.fam-nav-label, .sg-nav-label, .st-nav-label, .fu-nav-label, .fr-nav-label, .dt-nav-label, .ft-nav-label, .sn-nav-label) {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #6a6560;
  text-transform: uppercase;
  flex-shrink: 0;
}

#mealhack-root :is(.fam-nav-links, .sg-nav-links, .st-nav-links, .fu-nav-links, .fr-nav-links, .dt-nav-links, .ft-nav-links, .sn-nav-links) {
  display: flex;
  align-items: center;
  gap: 24px;
}

#mealhack-root :is(.fam-nav-links, .sg-nav-links, .st-nav-links, .fu-nav-links, .fr-nav-links, .dt-nav-links, .ft-nav-links, .sn-nav-links) a {
  font-size: 0.84rem;
  font-weight: 600;
  color: #6a6560;
  transition: color 0.2s;
}

#mealhack-root :is(.fam-nav-links, .sg-nav-links, .st-nav-links, .fu-nav-links, .fr-nav-links, .dt-nav-links, .ft-nav-links, .sn-nav-links) a:hover {
  color: var(--mh-purpose-green);
}

#mealhack-root [class*="-section"] {
  padding: clamp(60px, 8vw, 108px) 0;
}

#mealhack-root [class*="-section-warm"] {
  background: #fff8f1;
}

#mealhack-root [class*="-section-cream"] {
  background: #fffdf8;
}

#mealhack-root [class*="-section-dark"] {
  background: #1e1c1a;
}

#mealhack-root [class*="-h2"] {
  font-size: clamp(1.7rem, 2.5vw + 0.5rem, 2.7rem);
  line-height: 1.55;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 20px;
}

#mealhack-root [class*="-lead"] {
  font-size: 1.03rem;
  line-height: 1.95;
  color: #6a6560;
  font-weight: 500;
  max-width: 100%;
}

#mealhack-root [class*="-intro-grid"] {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  margin-top: 42px;
}

@media (max-width: 900px) {
  #mealhack-root [class*="-intro-grid"] {
    grid-template-columns: 1fr;
  }
}

#mealhack-root [class*="-intro-focus"] {
  border-left: 3px solid #f59e0b;
  padding-left: 22px;
  font-size: 1.06rem;
  line-height: 2.05;
  color: #1e1c1a;
  font-weight: 500;
  align-self: start;
  margin: 0;
}

#mealhack-root [class*="-intro-stack"] {
  color: #6a6560;
  font-size: 0.96rem;
  line-height: 2;
  font-weight: 500;
}

#mealhack-root [class*="-intro-stack"] p {
  margin-bottom: 16px;
}

#mealhack-root [class*="-intro-stack"] p:last-child {
  margin-bottom: 0;
}

#mealhack-root [class*="-brands-head"] {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

#mealhack-root [class*="-inline-link"] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #1e1c1a;
  border-bottom: 1px solid #1e1c1a;
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

#mealhack-root [class*="-inline-link"]:hover {
  color: var(--mh-purpose-green);
  border-color: var(--mh-purpose-green);
}

#mealhack-root [class*="-brand-list"] {
  border-top: 1px solid #ede8e0;
}

#mealhack-root [class*="-brand-item"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid #ede8e0;
}

@media (max-width: 640px) {
  #mealhack-root [class*="-brand-item"] {
    grid-template-columns: 1fr;
  }
}

#mealhack-root [class*="-brand-tag"] {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

#mealhack-root [class*="-brand-name"] {
  font-size: 1.45rem;
  line-height: 1.5;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 8px;
}

#mealhack-root [class*="-brand-desc"] {
  max-width: 560px;
  font-size: 0.93rem;
  line-height: 1.9;
  color: #6a6560;
  font-weight: 500;
}

#mealhack-root [class*="-brand-cta"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #f0dfc9;
  border-radius: 4px;
  color: #1e1c1a;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s ease;
}

#mealhack-root [class*="-brand-item"]:hover [class*="-brand-cta"],
#mealhack-root [class*="-brand-cta"]:hover {
  background: var(--mh-purpose-green);
  color: #fff;
  border-color: var(--mh-purpose-green);
}

#mealhack-root [class*="-struggles-grid"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 44px;
}

@media (max-width: 768px) {
  #mealhack-root [class*="-struggles-grid"] {
    grid-template-columns: 1fr;
  }
}

#mealhack-root [class*="-struggle-card"] {
  background: #fff;
  padding: clamp(30px, 4vw, 46px) clamp(24px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  border-radius: 12px;
  border: 1px solid #ede8e0;
}

#mealhack-root [class*="-struggle-card"]:hover {
  background: var(--mh-purpose-green-soft);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

#mealhack-root [class*="-struggle-num"] {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 4.7rem;
  line-height: 1;
  font-weight: 900;
  color: #ede8e0;
  pointer-events: none;
  user-select: none;
}

#mealhack-root [class*="-struggle-h3"] {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 14px;
}

#mealhack-root [class*="-struggle-body"] {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  line-height: 1.95;
  color: #6a6560;
  font-weight: 500;
}

#mealhack-root [class*="-struggle-body"] p {
  margin-bottom: 12px;
}

#mealhack-root [class*="-struggle-body"] p:last-child {
  margin-bottom: 0;
}

#mealhack-root [class*="-table-wrap"] {
  overflow-x: auto;
  margin-top: 34px;
  background: #fff;
  border: 1px solid #ede8e0;
  border-radius: 12px;
  overflow: hidden;
}

#mealhack-root [class*="-table"] {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

#mealhack-root [class*="-table"] thead tr {
  background: #1e1c1a;
  color: #fff;
}

#mealhack-root [class*="-table"] th {
  padding: 18px 24px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

#mealhack-root [class*="-table"] th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

#mealhack-root [class*="-table"] td {
  padding: 20px 24px;
  vertical-align: top;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #6a6560;
  border-bottom: 1px solid #ede8e0;
}

#mealhack-root [class*="-table"] tbody tr:last-child td {
  border-bottom: none;
}

#mealhack-root [class*="-table"] td:first-child {
  background: rgba(232, 130, 90, 0.04);
  color: #1e1c1a;
  font-weight: 700;
  white-space: nowrap;
  border-right: 1px solid #ede8e0;
}

#mealhack-root [class*="-table-note"] {
  margin-top: 10px;
  font-size: 0.78rem;
  color: #6a6560;
  font-weight: 500;
}

#mealhack-root :is(.fam-quote, .sg-quote, .st-quote, .fu-quote, .fr-quote, .dt-quote, .ft-quote, .sn-quote) {
  padding: clamp(72px, 9vw, 116px) 0;
  background: #1e1c1a;
  color: #fff;
}

#mealhack-root :is(.fam-quote-inner, .sg-quote-inner, .st-quote-inner, .fu-quote-inner, .fr-quote-inner, .dt-quote-inner, .ft-quote-inner, .sn-quote-inner) {
  max-width: 760px;
}

#mealhack-root :is(.fam-quote-text, .sg-quote-text, .st-quote-text, .fu-quote-text, .fr-quote-text, .dt-quote-text, .ft-quote-text, .sn-quote-text) {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.45rem, 2.5vw + 0.5rem, 2.25rem);
  line-height: 1.72;
  font-weight: 700;
  margin-bottom: 26px;
}

#mealhack-root :is(.fam-quote-body, .sg-quote-body, .st-quote-body, .fu-quote-body, .fr-quote-body, .dt-quote-body, .ft-quote-body, .sn-quote-body) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
}

#mealhack-root [class*="-col3-grid"],
#mealhack-root [class*="-week-grid"] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

@media (max-width: 700px) {
  #mealhack-root [class*="-col3-grid"],
  #mealhack-root [class*="-week-grid"] {
    grid-template-columns: 1fr;
  }
}

#mealhack-root [class*="-col3-card"],
#mealhack-root [class*="-week-card"] {
  background: #fff;
  padding: clamp(28px, 3.5vw, 42px);
  border-radius: 12px;
  border: 1px solid #ede8e0;
  transition: box-shadow 0.2s ease;
}

#mealhack-root [class*="-col3-card"].is-accent {
  background: #fff5e8;
}

#mealhack-root [class*="-week-card"].is-accent {
  background: #fff;
}

#mealhack-root [class*="-col3-label"],
#mealhack-root [class*="-week-day"] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f08c00;
  margin-bottom: 16px;
}

#mealhack-root [class*="-week-card"] {
  min-height: 100%;
}

#mealhack-root [class*="-week-h3"],
#mealhack-root [class*="-col3-h3"] {
  min-height: 3.3em;
}

#mealhack-root [class*="-col3-label"]::after,
#mealhack-root [class*="-week-day"]::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(245, 158, 11, 0.22);
}

#mealhack-root [class*="-col3-h3"],
#mealhack-root [class*="-week-h3"] {
  font-size: 1.04rem;
  line-height: 1.65;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 12px;
}

#mealhack-root [class*="-col3-body"],
#mealhack-root [class*="-week-body"] {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #6a6560;
  font-weight: 500;
}

#mealhack-root [class*="-criteria-list"] {
  margin-top: 42px;
}

#mealhack-root [class*="-criteria-item"] {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #ede8e0;
}

#mealhack-root [class*="-criteria-item"]:first-child {
  border-top: 1px solid #ede8e0;
}

#mealhack-root [class*="-criteria-num"] {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.4);
}

#mealhack-root [class*="-criteria-h3"] {
  font-size: 1.04rem;
  line-height: 1.7;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 12px;
}

#mealhack-root [class*="-criteria-body"] {
  font-size: 0.92rem;
  line-height: 1.95;
  color: #6a6560;
  font-weight: 500;
}

#mealhack-root [class*="-faq-list"] {
  margin-top: 42px;
}

#mealhack-root [class*="-faq-item"] {
  border-top: 1px solid #ede8e0;
  padding: 28px 0;
}

#mealhack-root [class*="-faq-item"]:last-child {
  border-bottom: 1px solid #ede8e0;
}

#mealhack-root [class*="-faq-q"],
#mealhack-root [class*="-faq-a"] {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

#mealhack-root [class*="-faq-q"] {
  margin-bottom: 16px;
}

#mealhack-root [class*="-faq-qmark"],
#mealhack-root [class*="-faq-amark"] {
  flex-shrink: 0;
}

#mealhack-root [class*="-faq-qmark"] {
  font-size: 1.4rem;
  line-height: 1.35;
  color: #f08c00;
  font-weight: 800;
}

#mealhack-root [class*="-faq-amark"] {
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(30, 28, 26, 0.42);
  font-weight: 700;
}

#mealhack-root [class*="-faq-qtext"] {
  font-size: 1rem;
  line-height: 1.7;
  color: #1e1c1a;
  font-weight: 700;
}

#mealhack-root [class*="-faq-atext"] {
  font-size: 0.92rem;
  line-height: 2;
  color: #6a6560;
  font-weight: 500;
}

#mealhack-root :is(.fam-related, .sg-related, .st-related, .fu-related, .fr-related, .dt-related, .ft-related, .sn-related) {
  background: #fff8f1;
}

#mealhack-root :is(.fam-related-h2, .sg-related-h2, .st-related-h2, .fu-related-h2, .fr-related-h2, .dt-related-h2, .ft-related-h2, .sn-related-h2) {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  line-height: 1.55;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 16px;
}

#mealhack-root :is(.fam-related-grid, .sg-related-grid, .st-related-grid, .fu-related-grid, .fr-related-grid, .dt-related-grid, .ft-related-grid, .sn-related-grid) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

#mealhack-root :is(.fam-related-link, .sg-related-link, .st-related-link, .fu-related-link, .fr-related-link, .dt-related-link, .ft-related-link, .sn-related-link) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #e4ddd3;
  background: #fff;
  color: #1e1c1a;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.2s ease;
}

#mealhack-root :is(.fam-related-link, .sg-related-link, .st-related-link, .fu-related-link, .fr-related-link, .dt-related-link, .ft-related-link, .sn-related-link):hover {
  border-color: var(--mh-purpose-green);
  color: var(--mh-purpose-green);
}

#mealhack-root :is(.fam-cta, .sg-cta, .st-cta, .fu-cta, .fr-cta, .dt-cta, .ft-cta, .sn-cta) {
  background: #fffdf9;
}

#mealhack-root :is(.fam-cta-h2, .sg-cta-h2, .st-cta-h2, .fu-cta-h2, .fr-cta-h2, .dt-cta-h2, .ft-cta-h2, .sn-cta-h2) {
  font-size: clamp(1.9rem, 3.4vw + 0.5rem, 3.1rem);
  line-height: 1.55;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 20px;
}

#mealhack-root :is(.fam-cta-lead, .sg-cta-lead, .st-cta-lead, .fu-cta-lead, .fr-cta-lead, .dt-cta-lead, .ft-cta-lead, .sn-cta-lead) {
  max-width: 620px;
  font-size: 1rem;
  line-height: 2;
  color: #6a6560;
  font-weight: 500;
  margin-bottom: 34px;
}

#mealhack-root :is(.fam-pagenav, .sg-pagenav, .st-pagenav, .fu-pagenav, .fr-pagenav, .dt-pagenav, .ft-pagenav, .sn-pagenav) {
  background: #fff;
  border-top: 1px solid #ede8e0;
  padding: 48px 0 72px;
}

#mealhack-root :is(.fam-pagenav-grid, .sg-pagenav-grid, .st-pagenav-grid, .fu-pagenav-grid, .fr-pagenav-grid, .dt-pagenav-grid, .ft-pagenav-grid, .sn-pagenav-grid) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 540px) {
  #mealhack-root :is(.fam-pagenav-grid, .sg-pagenav-grid, .st-pagenav-grid, .fu-pagenav-grid, .fr-pagenav-grid, .dt-pagenav-grid, .ft-pagenav-grid, .sn-pagenav-grid) {
    grid-template-columns: 1fr;
  }
}

#mealhack-root :is(.fam-pagenav-item, .sg-pagenav-item, .st-pagenav-item, .fu-pagenav-item, .fr-pagenav-item, .dt-pagenav-item, .ft-pagenav-item, .sn-pagenav-item) {
  display: flex;
  flex-direction: column;
  padding: 24px 26px;
  border: 1px solid #ede8e0;
  background: #fff;
  transition: all 0.2s ease;
}

#mealhack-root :is(.fam-pagenav-item, .sg-pagenav-item, .st-pagenav-item, .fu-pagenav-item, .fr-pagenav-item, .dt-pagenav-item, .ft-pagenav-item, .sn-pagenav-item):hover {
  border-color: var(--mh-purpose-green);
}

#mealhack-root :is(.fam-pagenav-dir, .sg-pagenav-dir, .st-pagenav-dir, .fu-pagenav-dir, .fr-pagenav-dir, .dt-pagenav-dir, .ft-pagenav-dir, .sn-pagenav-dir) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6a6560;
  margin-bottom: 10px;
}

#mealhack-root :is(.fam-pagenav-title, .sg-pagenav-title, .st-pagenav-title, .fu-pagenav-title, .fr-pagenav-title, .dt-pagenav-title, .ft-pagenav-title, .sn-pagenav-title) {
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 700;
  color: #1e1c1a;
}

@media (max-width: 768px) {
  #mealhack-root [class*="-hero"] h1 {
    line-height: 1.48;
  }

  #mealhack-root :is(.fam-quote-text, .sg-quote-text, .st-quote-text, .fu-quote-text, .fr-quote-text, .dt-quote-text, .ft-quote-text, .sn-quote-text) {
    line-height: 1.68;
  }
}

/* ================================================
   purpose.html
   ================================================ */

#mealhack-root .pp-hero { background: #fffdf9; border-bottom: 1px solid #ede8e0; }
#mealhack-root .pp-hero-inner { padding: clamp(112px, 13vw, 168px) 0 clamp(52px, 7vw, 80px); }

#mealhack-root .pp-hero h1 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.1rem, 4.5vw + 0.4rem, 3.7rem);
  line-height: 1.55;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 26px;
}

#mealhack-root .pp-hero-line {
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: #f59e0b;
  margin-bottom: 24px;
}

#mealhack-root .pp-hero-lead {
  font-size: 1.04rem;
  line-height: 2;
  color: #6a6560;
  font-weight: 500;
  max-width: 760px;
  margin-bottom: 36px;
}

#mealhack-root .pp-btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

#mealhack-root :is(.pp-btn-primary, .pp-btn-secondary) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

#mealhack-root .pp-btn-primary {
  background: #f59e0b;
  color: #fff;
  border: 1.5px solid #f59e0b;
}

#mealhack-root .pp-btn-primary:hover {
  background: #ea8c00;
  border-color: #ea8c00;
}

#mealhack-root .pp-btn-secondary {
  background: transparent;
  color: #d86f1e;
  border: 1.5px solid #f5b88a;
}

#mealhack-root .pp-btn-secondary:hover {
  background: #fff4e8;
  color: #c86114;
  border-color: #f59e0b;
}

#mealhack-root .pp-section { padding: clamp(60px, 8vw, 108px) 0; }
#mealhack-root .pp-section-warm { background: #fff8f1; }
#mealhack-root .pp-section-cream { background: #fffdf8; }

#mealhack-root .pp-h2 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.7rem, 2.5vw + 0.5rem, 2.7rem);
  line-height: 1.55;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 20px;
}

#mealhack-root .pp-lead {
  font-size: 1.03rem;
  line-height: 1.95;
  color: #6a6560;
  font-weight: 500;
  max-width: 100%;
}

#mealhack-root .pp-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  margin-top: 42px;
}

@media (max-width: 900px) {
  #mealhack-root .pp-intro-grid { grid-template-columns: 1fr; }
}

#mealhack-root .pp-intro-focus {
  border-left: 3px solid #f59e0b;
  padding-left: 22px;
  font-size: 1.06rem;
  line-height: 2.05;
  color: #1e1c1a;
  font-weight: 500;
  align-self: start;
  margin: 0;
}

#mealhack-root .pp-intro-stack {
  color: #6a6560;
  font-size: 0.96rem;
  line-height: 2;
  font-weight: 500;
}

#mealhack-root .pp-intro-stack p { margin-bottom: 16px; }
#mealhack-root .pp-intro-stack p:last-child { margin-bottom: 0; }

#mealhack-root .pp-quicklinks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

#mealhack-root .pp-quicklink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #e4ddd3;
  background: #fff;
  color: #1e1c1a;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.2s ease;
}

#mealhack-root .pp-quicklink:hover {
  border-color: #f08c00;
  color: #f08c00;
}

#mealhack-root .pp-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  margin-top: 44px;
  background: #ede8e0;
}

@media (max-width: 768px) {
  #mealhack-root .pp-cards-grid { grid-template-columns: 1fr; }
}

#mealhack-root .pp-card {
  background: #fff;
  padding: clamp(30px, 4vw, 48px) clamp(24px, 3.5vw, 42px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease;
}

#mealhack-root .pp-card:hover { background: #fff9f5; }

#mealhack-root .pp-card-icon {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 5.5rem;
  line-height: 1;
  color: #ede8e0;
  pointer-events: none;
  user-select: none;
  transition: color 0.2s ease;
}

#mealhack-root .pp-card:hover .pp-card-icon { color: #f5d9c8; }

#mealhack-root .pp-card-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f08c00;
  margin-bottom: 16px;
}

#mealhack-root .pp-card-h3 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.08rem, 1.5vw + 0.4rem, 1.35rem);
  line-height: 1.65;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

#mealhack-root .pp-card-body {
  font-size: 0.9rem;
  line-height: 1.95;
  color: #6a6560;
  font-weight: 500;
  flex: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

#mealhack-root .pp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1e1c1a;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
  align-self: flex-start;
}

#mealhack-root .pp-card:hover .pp-card-cta { color: #f08c00; }

#mealhack-root .pp-quote {
  padding: clamp(72px, 9vw, 116px) 0;
  background: #1e1c1a;
  color: #fff;
}

#mealhack-root .pp-quote-inner { max-width: 760px; }

#mealhack-root .pp-quote-text {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.45rem, 2.5vw + 0.5rem, 2.25rem);
  line-height: 1.72;
  font-weight: 700;
  margin-bottom: 26px;
}

#mealhack-root .pp-quote-body {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
}

#mealhack-root .pp-nav3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

@media (max-width: 700px) {
  #mealhack-root .pp-nav3-grid { grid-template-columns: 1fr; }
}

#mealhack-root .pp-nav3-card {
  background: #fff;
  padding: clamp(26px, 3.5vw, 38px);
  transition: background 0.2s ease;
}

#mealhack-root .pp-nav3-card:hover { background: #fff9f5; }

#mealhack-root .pp-nav3-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f08c00;
  margin-bottom: 14px;
}

#mealhack-root .pp-nav3-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(245,158,11,0.22);
}

#mealhack-root .pp-nav3-h3 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: 1.04rem;
  line-height: 1.65;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 10px;
}

#mealhack-root .pp-nav3-body {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #6a6560;
  font-weight: 500;
  margin-bottom: 18px;
}

#mealhack-root .pp-nav3-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1e1c1a;
  border-bottom: 1px solid #1e1c1a;
  padding-bottom: 1px;
  transition: all 0.2s ease;
}

#mealhack-root .pp-nav3-link:hover {
  color: #f08c00;
  border-color: #f08c00;
}

#mealhack-root .pp-cta { background: #fffdf9; }

#mealhack-root .pp-cta-h2 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.9rem, 3.4vw + 0.5rem, 3.1rem);
  line-height: 1.55;
  font-weight: 700;
  color: #1e1c1a;
  margin-bottom: 20px;
}

#mealhack-root .pp-cta-lead {
  max-width: 620px;
  font-size: 1rem;
  line-height: 2;
  color: #6a6560;
  font-weight: 500;
  margin-bottom: 34px;
}

@media (max-width: 768px) {
  #mealhack-root .pp-hero h1 { line-height: 1.48; }
  #mealhack-root .pp-quote-text { line-height: 1.68; }
}
