@charset "UTF-8";

/* ==========================================================================
   LIFE TENNIS - philosophy.css（企業理念ページ専用）
   ========================================================================== */

/* --------------------------------------------------------------------------
   ページヘッダー
   -------------------------------------------------------------------------- */
/* この写真は人物が上寄りに写っていて、中央基準で切ると頭が上端で欠ける */
.page-head__media img { object-position: 50% 30%; }

/* --------------------------------------------------------------------------
   導入コピー
   -------------------------------------------------------------------------- */
.creed { text-align: center; }

.creed__catch {
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: clamp(24px, 4.4vw, 42px);
  line-height: 1.7;
  letter-spacing: .04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.creed__text {
  margin-top: 26px;
  font-size: 15.5px;
  line-height: 2.15;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   3つの理念
   -------------------------------------------------------------------------- */
.creed-list__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.creed-card {
  position: relative;
  padding: 54px 30px 34px;
  border-radius: var(--radius-l);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .32s var(--ease);
}
.creed-card:hover { transform: translateY(-6px); }

.creed-card__num {
  position: absolute;
  top: -22px; left: 30px;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  font-family: var(--ff-en);
  font-weight: 700;
  font-size: 19px;
  box-shadow: 0 8px 20px rgba(20, 70, 55, .18);
}
.creed-card--lime .creed-card__num { background: var(--lime); }
.creed-card--sun .creed-card__num { background: var(--sun); color: var(--green); }

.creed-card__title {
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 900;
}
.creed-card__title::after {
  content: "";
  display: block;
  width: 40px; height: 4px;
  margin-top: 16px;
  border-radius: 2px;
  background: var(--sky);
}
.creed-card--lime .creed-card__title::after { background: var(--lime); }
.creed-card--sun .creed-card__title::after { background: var(--sun); }

.creed-card__text {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 2.05;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   代表メッセージ
   -------------------------------------------------------------------------- */
.message__inner {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.message__media {
  position: relative;
  border-radius: var(--radius-l);
  aspect-ratio: 4 / 5;
}
.message__media::after {
  content: "";
  position: absolute;
  left: -30px; bottom: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: var(--sky-pale);
}
.message__media picture {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.message__media img { width: 100%; height: 100%; object-fit: cover; }

.message__text {
  margin-top: 22px;
  font-size: 15.5px;
  line-height: 2.15;
  color: var(--ink-soft);
}

.message__sign {
  margin-top: 32px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--ff-round);
  font-weight: 900;
  font-size: 24px;
  color: var(--green);
}
.message__sign span {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--lime-pale);
  color: var(--lime-deep);
}

/* --------------------------------------------------------------------------
   私たちが大切にしていること
   -------------------------------------------------------------------------- */
.values__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.values__item {
  padding: 30px 30px 32px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.values__item h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
}
.values__item h3::before {
  content: "";
  width: 10px; height: 10px;
  margin-top: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--lime);
}
.values__item p {
  margin-top: 12px;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   レスポンシブ
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .creed-list__items { grid-template-columns: 1fr; gap: 44px; }
  .message__inner { grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: 40px; }
}

@media (max-width: 767px) {
  .creed__text { margin-top: 20px; font-size: 15px; }
  .creed-card { padding: 46px 22px 28px; }
  .creed-card__num { width: 50px; height: 50px; font-size: 17px; top: -18px; left: 22px; }
  .message__inner { grid-template-columns: 1fr; gap: 34px; }
  .message__media { max-width: 300px; }
  .message__media::after { left: -18px; bottom: -18px; width: 110px; height: 110px; }
  .message__text { margin-top: 18px; font-size: 15px; }
  .message__sign { font-size: 21px; margin-top: 26px; }
  .values__list { grid-template-columns: 1fr; }
  .values__item { padding: 24px 22px; }
}
