@charset "UTF-8";
/* =========================================================
   philosophy.css  企業理念ページ専用スタイル
   ========================================================= */

.phi-lead { text-align: center; }
.phi-lead__sub {
  font-family: var(--font-rounded);
  font-weight: 700;
  color: var(--pink);
  letter-spacing: .08em;
}
.phi-lead__main {
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(1.8rem, 5.4vw, 2.8rem);
  line-height: 1.4;
  margin: 14px 0 26px;
}
.phi-lead__text {
  text-align: left;
  font-size: 1rem;
  line-height: 2.1;
  color: var(--ink);
}

.phi-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.phi-value {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-s);
  transition: transform .2s ease, box-shadow .2s ease;
}
.phi-value:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.phi-value__ic {
  display: inline-grid;
  place-items: center;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  margin-bottom: 18px;
}
.phi-value__ic svg { width: 36px; height: 36px; }
.phi-value h3 {
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.phi-value p { font-size: .92rem; text-align: left; }

.phi-message {
  background: var(--cream);
  border-radius: var(--radius-l);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-s);
  border-left: 6px solid var(--pink);
}
.phi-message__label {
  display: inline-block;
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 16px;
}
.phi-message__body { font-size: 1rem; line-height: 2.1; }
.phi-message__sign {
  margin-top: 22px;
  text-align: right;
  font-family: var(--font-rounded);
  font-weight: 700;
  color: var(--navy);
}

@media (max-width: 860px) {
  .phi-values { grid-template-columns: 1fr; }
}
