/**
 * Print Rescue - Top Page Styles
 * トップページ専用（front-page.php で読み込み）
 *
 * 単位ルール:
 * - フォントサイズ・余白: rem (16px = 1rem)
 * - 細い線(1〜2px): px のまま
 *
 * @package Print_Rescue
 */

/* ============================
   Section common
   ============================ */
.pr-section {
  padding: 5rem 0;                     /* 80px */
}
.pr-section-head {
  text-align: center;
  margin-bottom: 3rem;                 /* 48px */
  max-width: 45rem;                    /* 720px */
  margin-left: auto;
  margin-right: auto;
}
.pr-section-eyebrow {
  display: inline-block;
  font-family: var(--en);
  font-size: 0.75rem;                  /* 12px */
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.875rem;
}
.pr-section-title {
  font-size: 2rem;                     /* 32px */
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0 0 0.875rem;
}
.pr-section-lead {
  font-size: 0.9375rem;                /* 15px */
  color: var(--ink-sub);
  line-height: 1.85;
  margin: 0;
}

/* ============================
   Hero Slider
   ============================ */
.pr-hero {
  padding: 0 0 2.25rem;
  background: var(--bg);
  position: relative;
}
.pr-hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 38.75rem;                /* 620px */
  overflow: hidden;
  background: #f4f6f5;
}
.pr-hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.pr-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pr-hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.pr-hero-slide--1 {
  background: linear-gradient(135deg, #00874c 0%, #5daa34 100%);
}
.pr-hero-slide--2 {
  background: linear-gradient(135deg, #1c4534 0%, #00874c 100%);
}
.pr-hero-slide--3 {
  background: linear-gradient(135deg, #3a6b2a 0%, #87b85e 100%);
}
.pr-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 1.25rem 1.25rem;    /* 20px */
  opacity: 0.6;
  pointer-events: none;
}
.pr-hero-slide-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2.5rem;
  max-width: 55rem;                    /* 880px */
  width: 100%;
}
.pr-hero-slide-eyebrow {
  display: inline-block;
  font-family: var(--en);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.85);
  padding: 0.375rem 1rem;
  border: 1px solid rgba(255,255,255,0.4);
  margin-bottom: 1.75rem;
}
.pr-hero-slide-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.75rem, 4.2vw, 3.25rem);
  line-height: 1.45;
  color: #fff;
  margin: 0 0 1.75rem;
  letter-spacing: 0.02em;
  text-shadow: 0 0.125rem 1.25rem rgba(0,0,0,0.15);
}
.pr-hero-slide-title .accent {
  background: linear-gradient(transparent 60%, rgba(255,255,255,0.25) 60%);
  padding: 0 0.25rem;
}
.pr-hero-slide-lead {
  font-family: var(--sans);
  font-size: clamp(0.8125rem, 1.2vw, 1rem);
  color: rgba(255,255,255,0.92);
  line-height: 1.9;
  max-width: 37.5rem;
  margin: 0 auto 2rem;
}
.pr-hero-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;              /* 14px 32px */
  background: #fff;
  color: var(--green-dark);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.2s;
}
.pr-hero-slide-cta:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-0.125rem);
}
.pr-hero-slide-cta svg {
  width: 1rem;
  height: 1rem;
}
.pr-hero-slide-placeholder {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-family: var(--en);
  font-size: 0.625rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.2em;
  z-index: 2;
}

/* Arrows */
.pr-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.12);
}
.pr-hero-arrow:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.pr-hero-arrow--prev {
  left: 1.5rem;
}
.pr-hero-arrow--next {
  right: 1.5rem;
}
.pr-hero-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Indicators */
.pr-hero-indicators {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  align-items: center;
  padding: 1.75rem 0 0;
  background: var(--bg);
}
.pr-hero-indicator {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.pr-hero-indicator:hover {
  background: var(--ink-mute);
}
.pr-hero-indicator.is-active {
  background: var(--green);
  width: 2.5rem;
  border-radius: 0.4375rem;
}

/* ============================
   Products section
   ============================ */
.pr-products {
  padding: 5rem 0;
  background: var(--bg);
}
.pr-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.pr-product-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  transition: all 0.2s;
  display: grid;
  grid-template-columns: 1fr 11.25rem;  /* 1fr 180px */
  grid-template-rows: 1fr auto;
  overflow: hidden;
  min-height: 13.75rem;
  text-decoration: none;
  color: inherit;
}
.pr-product-card:hover {
  border-color: var(--green-bright);
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.75rem 1.5rem rgba(93,170,52,0.15);
}
.pr-product-card__body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pr-product-card__name {
  font-size: 1.5rem;                   /* 24px */
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.3;
}
.pr-product-card__subs {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pr-product-card__subs li {
  font-size: 0.8125rem;
  color: var(--ink-sub);
  padding: 0.125rem 0;
}
.pr-product-card__subs li::before {
  content: "—  ";
  color: var(--green);
  font-weight: 700;
}
.pr-product-card__img {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 11.25rem;
}
.pr-product-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 0.875rem 0.875rem;
  opacity: 0.6;
}
.pr-product-card__img-label {
  position: relative;
  font-family: var(--en);
  font-weight: 700;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2em;
  z-index: 1;
}
.pr-product-card--meishi .pr-product-card__img {
  background: linear-gradient(135deg, #00874c 0%, #5daa34 100%);
}
.pr-product-card--futo .pr-product-card__img {
  background: linear-gradient(135deg, #1c4534 0%, #00874c 100%);
}
.pr-product-card--hagaki .pr-product-card__img {
  background: linear-gradient(135deg, #3a6b2a 0%, #87b85e 100%);
}
.pr-product-card--shinsatsu .pr-product-card__img {
  background: linear-gradient(135deg, #00604a 0%, #2f8f6b 100%);
}
.pr-product-card__price {
  grid-column: 1 / -1;
  background: #fff;
  padding: 0.875rem 1.5rem;            /* 14px 24px */
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.8125rem;
  color: var(--ink-sub);
  border-top: 1px solid var(--line);
}
.pr-product-card__price strong {
  font-family: var(--en);
  font-weight: 700;
  color: #c8112c;
  font-size: 1.375rem;                 /* 22px */
  letter-spacing: -0.01em;
}

/* ============================
   Entries (3 entry points)
   ============================ */
.pr-entries {
  background: var(--bg-soft);
  padding: 5rem 2.5rem;
}
.pr-entries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;                       /* 18px */
}
.pr-entry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  transition: all 0.2s;
  display: grid;
  grid-template-columns: 13.75rem 1fr auto; /* 220px 1fr auto */
  align-items: stretch;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 10rem;
}
.pr-entry-card:hover {
  border-color: var(--green-bright);
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.75rem 1.5rem rgba(93,170,52,0.15);
}
.pr-entry-img {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pr-entry-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 0.875rem 0.875rem;
  opacity: 0.6;
}
.pr-entry-img-label {
  position: relative;
  font-family: var(--en);
  font-weight: 700;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2em;
  z-index: 1;
}
.pr-entry-card--01 .pr-entry-img {
  background: linear-gradient(135deg, #00874c 0%, #5daa34 100%);
}
.pr-entry-card--02 .pr-entry-img {
  background: linear-gradient(135deg, #1c4534 0%, #00874c 100%);
}
.pr-entry-card--03 .pr-entry-img {
  background: linear-gradient(135deg, #3a6b2a 0%, #87b85e 100%);
}
.pr-entry-body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pr-entry-title {
  font-size: 1.25rem;                  /* 20px */
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  margin: 0 0 0.625rem;
  letter-spacing: 0.02em;
}
.pr-entry-desc {
  font-size: 0.84375rem;
  color: var(--ink-sub);
  line-height: 1.85;
  margin: 0;
}
.pr-entry-cta {
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--green-dark);
  border-left: 1px solid var(--line);
  transition: all 0.2s;
  white-space: nowrap;
}
.pr-entry-card:hover .pr-entry-cta {
  background: var(--green-bright);
  color: #fff;
  border-left-color: var(--green-bright);
}
.pr-entry-cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}
.pr-entry-card:hover .pr-entry-cta svg {
  transform: translateX(0.1875rem);
}

/* ============================
   Reasons (photo + copy + desc)
   ============================ */
.pr-reasons {
  background: var(--bg);
}
.pr-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pr-reason-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.pr-reason-item:hover {
  border-color: var(--green-bright);
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.75rem 1.5rem rgba(93,170,52,0.12);
}
.pr-reason-img {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pr-reason-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 1.125rem 1.125rem;
  opacity: 0.5;
}
.pr-reason-img-label {
  position: relative;
  font-family: var(--en);
  font-weight: 700;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.25em;
  z-index: 1;
}
.pr-reason-img-note {
  position: absolute;
  bottom: 0.625rem;
  right: 0.875rem;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  z-index: 1;
}
.pr-reason-item--01 .pr-reason-img {
  background: linear-gradient(135deg, #1c4534 0%, #00874c 100%);
}
.pr-reason-item--02 .pr-reason-img {
  background: linear-gradient(135deg, #00874c 0%, #5daa34 100%);
}
.pr-reason-item--03 .pr-reason-img {
  background: linear-gradient(135deg, #3a6b2a 0%, #87b85e 100%);
}
.pr-reason-body {
  padding: 2rem 1.75rem 2.25rem;       /* 32px 28px 36px */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pr-reason-num {
  font-family: var(--en);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.pr-reason-num::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--green);
}
.pr-reason-copy {
  font-size: 1.375rem;                 /* 22px */
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin: 0 0 1.125rem;
}
.pr-reason-keynote {
  display: inline-block;
  padding: 0.1875rem 0.625rem;
  background: var(--green);
  color: #fff;
  font-size: 0.65625rem;               /* 10.5px */
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0.1875rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.pr-reason-desc {
  font-size: 0.84375rem;
  color: var(--ink-sub);
  line-height: 1.95;
  padding-top: 1.125rem;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ============================
   Flow (vertical timeline 5 steps)
   ============================ */
.pr-flow {
  background: var(--bg-soft);
  padding: 5rem 2.5rem;
}
.pr-flow-grid {
  display: block;
  max-width: 55rem;                    /* 880px */
  margin: 0 auto;
  position: relative;
}
.pr-flow-grid::before {
  content: "";
  position: absolute;
  left: 2.4375rem;                     /* 39px */
  top: 1.875rem;
  bottom: 1.875rem;
  width: 2px;
  background: var(--line);
  z-index: 0;
}
.pr-flow-step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.75rem;
  padding: 1.5rem 1.75rem;             /* 24px 28px */
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  transition: all 0.2s;
}
.pr-flow-step:last-child {
  margin-bottom: 0;
}
.pr-flow-step:hover {
  border-color: var(--green-bright);
  transform: translateX(0.25rem);
  box-shadow: 0 0.375rem 1rem rgba(93,170,52,0.1);
}
.pr-flow-step-num {
  width: 3.75rem;                      /* 60px */
  height: 3.75rem;
  border-radius: 50%;
  background: var(--green-bright);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1;
  font-family: var(--en);
  font-weight: 700;
  box-shadow: 0 0 0 0.375rem var(--bg-soft);
  flex-shrink: 0;
}
.pr-flow-step-num .step-label {
  font-size: 0.5625rem;                /* 9px */
  letter-spacing: 0.15em;
  opacity: 0.85;
  margin-bottom: 0.1875rem;
}
.pr-flow-step-num .step-digit {
  font-size: 1.375rem;                 /* 22px */
  letter-spacing: -0.02em;
}
.pr-flow-step-body {
  padding-top: 0.25rem;
}
.pr-flow-step-title {
  font-size: 1.125rem;                 /* 18px */
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}
.pr-flow-step-desc {
  font-size: 0.8125rem;
  color: var(--ink-sub);
  line-height: 1.85;
  margin: 0;
}
.pr-flow-inquiry {
  max-width: 55rem;
  margin: 2rem auto 0;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border: 1px dashed var(--line-strong);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.pr-flow-inquiry-text {
  font-size: 0.875rem;
  color: var(--ink-sub);
  line-height: 1.6;
}
.pr-flow-inquiry-text strong {
  display: block;
  color: var(--ink);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.pr-flow-inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;             /* 12px 24px */
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: 0.25rem;
  transition: background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.pr-flow-inquiry-btn:hover {
  background: var(--green-dark);
  color: #fff;
}
.pr-flow-inquiry-btn svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.15s;
}
.pr-flow-inquiry-btn:hover svg {
  transform: translateX(0.1875rem);
}

/* ============================
   Voices (catch + photo + text)
   ============================ */
.pr-voices {
  background: var(--bg);
}
.pr-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pr-voice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.pr-voice-card:hover {
  border-color: var(--green-bright);
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.75rem 1.5rem rgba(93,170,52,0.12);
}
.pr-voice-catch {
  padding: 1.75rem 1.75rem 1.25rem;
  font-size: 1.125rem;                 /* 18px */
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.pr-voice-img {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pr-voice-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 1.125rem 1.125rem;
  opacity: 0.5;
}
.pr-voice-img-label {
  position: relative;
  font-family: var(--en);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.25em;
  z-index: 1;
}
.pr-voice-img-note {
  position: absolute;
  bottom: 0.625rem;
  right: 0.875rem;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  z-index: 1;
}
.pr-voice-card--01 .pr-voice-img {
  background: linear-gradient(135deg, #00604a 0%, #2f8f6b 100%);
}
.pr-voice-card--02 .pr-voice-img {
  background: linear-gradient(135deg, #1c4534 0%, #00874c 100%);
}
.pr-voice-card--03 .pr-voice-img {
  background: linear-gradient(135deg, #00874c 0%, #5daa34 100%);
}
.pr-voice-body {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pr-voice-text {
  font-size: 0.8125rem;
  color: var(--ink-sub);
  line-height: 1.95;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}
.pr-voice-meta {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.pr-voice-meta strong {
  display: block;
  font-size: 0.875rem;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.pr-voice-meta small {
  color: var(--ink-mute);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
}

/* ============================
   Advice (background image + left text)
   ============================ */
.pr-advice {
  padding: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 22.5rem;                 /* 360px */
  display: flex;
  align-items: center;
}
.pr-advice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1c4534 0%, #00874c 60%, #5daa34 100%);
  z-index: 0;
}
.pr-advice::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 1.375rem 1.375rem;
  z-index: 1;
}
.pr-advice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.15) 75%,
    rgba(0,0,0,0) 100%);
  z-index: 2;
}
.pr-advice-img-note {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-family: var(--en);
  font-size: 0.625rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  z-index: 3;
}
.pr-advice-inner {
  position: relative;
  z-index: 3;
  padding: 4rem 3rem;                  /* 64px 48px */
  max-width: 36.25rem;
  width: 100%;
}
.pr-advice-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--green);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.71875rem;               /* 11.5px */
  letter-spacing: 0.08em;
  border-radius: 0.25rem;
  margin-bottom: 1.375rem;
}
.pr-advice h3 {
  font-size: 1.75rem;                  /* 28px */
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 0.875rem;
  letter-spacing: 0.01em;
  color: #fff;
}
.pr-advice p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
  margin: 0 0 1.75rem;
}
.pr-advice-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;                  /* 16px 32px */
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.25rem;
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
}
.pr-advice-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.15s;
}
.pr-advice-btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-0.125rem);
}
.pr-advice-btn:hover svg {
  transform: translateX(0.1875rem);
}

/* ============================
   CTA (2 equal cards)
   ============================ */
.pr-cta {
  background: var(--bg);
  padding: 6rem 0;                     /* 96px */
  text-align: center;
}
.pr-cta-title {
  font-size: 2.25rem;                  /* 36px */
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 1rem;
}
.pr-cta-lead {
  font-size: 0.9375rem;
  color: var(--ink-sub);
  line-height: 1.85;
  margin: 0 0 3.5rem;
}
.pr-cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 55rem;
  margin: 0 auto;
}
.pr-cta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.pr-cta-card:hover {
  border-color: var(--green-bright);
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.75rem 1.5rem rgba(93,170,52,0.12);
}
.pr-cta-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.375rem;
  transition: all 0.2s;
}
.pr-cta-card:hover .pr-cta-card-icon {
  background: var(--green-bright);
  color: #fff;
}
.pr-cta-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.pr-cta-card-label {
  font-family: var(--en);
  font-weight: 700;
  font-size: 0.6875rem;
  color: var(--green);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
.pr-cta-card-main {
  font-family: var(--en);
  font-weight: 700;
  font-size: 1.875rem;                 /* 30px */
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 0.875rem;
}
.pr-cta-card-main--jp {
  font-family: var(--sans);
  font-size: 1.375rem;
  letter-spacing: 0.02em;
}
.pr-cta-card-sub {
  font-size: 0.8125rem;
  color: var(--ink-sub);
  margin-bottom: 1.5rem;
}
.pr-cta-card-arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--green-dark);
  transition: gap 0.15s;
}
.pr-cta-card:hover .pr-cta-card-arrow {
  gap: 0.75rem;
}
.pr-cta-card-arrow svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 64rem) {
  /* Hero */
  .pr-hero-slider {
    aspect-ratio: 4 / 5;
    max-height: none;
  }
  .pr-hero-slide-inner {
    padding: 1.5rem;
  }
  .pr-hero-arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
  .pr-hero-arrow--prev { left: 0.75rem; }
  .pr-hero-arrow--next { right: 0.75rem; }
  /* Section padding */
  .pr-section { padding: 3.5rem 0; }
  .pr-products { padding: 3.5rem 0; }
  .pr-entries { padding: 3.5rem 1.25rem; }
  .pr-flow { padding: 3.5rem 1.25rem; }
  .pr-cta { padding: 4rem 0; }
  /* Products */
  .pr-products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pr-product-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .pr-product-card__img {
    min-height: 7.5rem;
    order: -1;
  }
  /* Entries */
  .pr-entry-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .pr-entry-img {
    min-height: 6.25rem;
  }
  .pr-entry-cta {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 0.875rem 1.25rem;
  }
  /* Reasons / Voices */
  .pr-reasons-grid,
  .pr-voices-grid {
    grid-template-columns: 1fr;
  }
  /* Flow */
  .pr-flow-step {
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .pr-flow-grid::before {
    left: 1.6875rem;
  }
  .pr-flow-step-num {
    width: 3rem;
    height: 3rem;
  }
  .pr-flow-step-num .step-digit {
    font-size: 1.125rem;
  }
  .pr-flow-inquiry {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1rem;
  }
  /* Advice */
  .pr-advice {
    min-height: 20rem;
  }
  .pr-advice-inner {
    padding: 3rem 1.5rem;
    max-width: none;
  }
  .pr-advice-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
  }
  .pr-advice h3 {
    font-size: 1.375rem;
  }
  /* CTA */
  .pr-cta-title { font-size: 1.625rem; }
  .pr-cta-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pr-cta-card { padding: 2rem 1.5rem; }
  .pr-cta-card-main { font-size: 1.625rem; }
  .pr-cta-card-main--jp { font-size: 1.1875rem; }
  /* Section title */
  .pr-section-title { font-size: 1.5rem; }
}
