.fp .fp-philo {
  padding: clamp(72px, 10vw, 130px) 0;
}
.fp .fp-philo-grid {
  display: grid;
  grid-template-columns: minmax(0, 440px) 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.fp .fp-philo-media {
  aspect-ratio: 4 / 5;
  background: var(--fp-panel);
  border: 1px solid var(--fp-line);
  border-radius: 4px;
  overflow: hidden;
}
.fp .fp-philo-media img,
.fp .fp-philo-media .ss-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0);
  transition: filter 0.5s var(--ease, ease);
}
.fp .fp-philo-media:hover img,
.fp .fp-philo-media:hover .ss-img {
  filter: grayscale(0);
}
.fp .fp-philo-h2 {
  margin-top: 20px;
  text-wrap: balance;
}
.fp .fp-philo-h2 em {
  font-style: normal;
}
.fp .fp-philo-p {
  margin-top: 1.3em;
  max-width: 36em;
  font-size: 15px;
  line-height: 2;
  color: #2c2c2c;
}
.fp .fp-philo-p:first-of-type {
  margin-top: 28px;
}
.fp .fp-philo-p em {
  font-style: normal;
  font-weight: 600;
  color: var(--fp-ink);
}

/* ---- VALUES: 3-up card grid (reuses .fp-card look) ---- */
.fp .fp-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fp .fp-value-grid .fp-card {
  border: 1px solid var(--fp-line);
}

/* ---- REPRESENTATIVE: 代表メッセージ ---- */
.fp .fp-rep-msg {
  max-width: 44em;
  margin-top: 8px;
}
.fp .fp-rep-msg > p {
  font-size: 16px;
  line-height: 1.95;
  color: #2c2c2c;
}
.fp .fp-rep-msg > p + p {
  margin-top: 1.3em;
}
.fp .fp-rep-msg strong {
  font-weight: 700;
  color: var(--fp-ink);
}
.fp .fp-rep-msg .fp-rep-sign {
  margin-top: 2.4em;
  padding-top: 24px;
  border-top: 1px solid var(--fp-line);
  font-family: var(--jp);
  font-size: 14px;
  line-height: 1.9;
  color: var(--fp-ink2);
}
.fp .fp-rep-msg .fp-rep-sign strong {
  font-family: var(--jp);
  font-weight: 700;
  font-size: 19px;
  color: var(--fp-ink);
}
.fp .fp-rep-reading {
  display: inline-block;
  font-family: var(--en);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--fp-ink2);
  margin-left: 10px;
  overflow-wrap: normal;
  word-break: normal;
}

/* ---- ACCESS: address + map ---- */
.fp .fp-access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: stretch;
}
.fp .fp-access-hq {
  font-family: var(--mono);
  font-weight: 400;
}
.fp .fp-access-addr {
  font-family: var(--jp);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 18px;
}
.fp .fp-access-routes {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.fp .fp-access-routes li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--fp-ink2);
}
.fp .fp-access-routes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--fp-ink3);
}
.fp .fp-access-hours {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--fp-ink2);
  flex-wrap: wrap;
}
.fp .fp-access-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-ink3);
}
.fp .fp-access-map {
  border: 1px solid var(--fp-line);
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background: var(--fp-panel);
  overflow: hidden;
  position: relative;
}
.fp .fp-access-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0);
}

/* ---- responsive ---- */
@media (max-width: 860px) {
  .fp .fp-philo-grid {
    grid-template-columns: 1fr;
  }
  .fp .fp-philo-media {
    max-width: 440px;
  }
  .fp .fp-value-grid {
    grid-template-columns: 1fr;
  }
  .fp .fp-access {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Contact page — additions beyond fp-pages.css `.fp-form` set
   (monochrome editorial, scoped under .fp)
   ========================================================= */

/* optional-field tag (counterpart to .req) — quiet, mono */
.fp .fp-field .fp-opt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fp-ink3);
  margin-left: 6px;
}

/* stacked radio/checkbox lists (vs. the default inline-wrap .fp-choices) */
.fp .fp-choices-stack {
  flex-direction: column;
  gap: 14px;
}
.fp .fp-choices-stack .fp-choice {
  font-size: 15px;
}

/* intro disclaimer above the fields */
