@charset "utf-8";

/* for kdf-vision.html (S)
---------------------------------------------------------------------------*/

/* ============================
   ミッション・ビジョン
============================ */

/* カード全体（初期状態：高級感フェード＋ガラスパネル風） */
.mv-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(229,229,229,0.7);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;

  /* 高級感のある柔らかい影 */
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);

  /* ガラスパネル風の質感 */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  /* ふわっと表示の初期状態（高級感モーション） */
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1),
    box-shadow 0.9s ease;
}

/* IntersectionObserver で付与されるクラス（発火後） */
.mv-card.inview {
  opacity: 1;
  transform: translateY(0) scale(1);

  /* 発火後は影を少し強めて高級感を演出 */
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* 見出し（カード専用） */
.mv-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.mv-card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, rgba(0,0,0,0.35), rgba(0,0,0,0));
  opacity: 0.7;
}

/* 本文 */
.mv-card p {
  font-size: 1.05rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

/* VISION 箇条書き */
.vision-list.refined {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
}

.vision-list.refined li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  padding-left: 0.6em;
}

.vision-list.refined li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #444;
  font-size: 1.1rem;
}

/* VALUE（中央寄せ） */
.list.center {
  text-align: center;
}

.list.center .image.icon {
  margin: 0 auto 1rem;
}

/* VALUE 見出し */
.list.center .text h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

/* VALUE 説明文 */
.mv-card .list .text p.left-big {
  font-size: 1.15rem !important;
  line-height: 1.9 !important;
  font-weight: 500;
  text-align: left;
}

.list.center .text p.left-big {
  text-align: left;
}

/* for kdf-vision.html (E)
---------------------------------------------------------------------------*/
