/* ==========================================================================
   MVV Page — Mission, Vision, Value リデザイン
   ========================================================================== */

.mvv-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

/* -------------------------------------------------------------------
   共通ブロック
   ------------------------------------------------------------------- */
.mvv-block {
  margin-bottom: 0;
}

.mvv-block-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #6c757d;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* -------------------------------------------------------------------
   Mission & Vision — 横並びレイアウト
   ------------------------------------------------------------------- */
.mvv-block-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  border-bottom: 1px solid #e9ecef;
}

.mvv-block--vision .mvv-block-inner,
.mvv-block-inner.mvv-block--vision {
  flex-direction: row-reverse;
}

/* テキスト側 */
.mvv-block-text {
  flex: 1;
  min-width: 0;
}

.mvv-block-statement {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.6;
  color: #1a2333;
  margin: 0 0 28px;
}

.mvv-block-desc {
  font-size: 1rem;
  line-height: 2;
  color: #6c757d;
  margin: 0;
}

/* ビジュアル側 */
.mvv-block-visual {
  flex-shrink: 0;
  width: 360px;
}

.mvv-block-visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* Vision の抽象グラフィック */
.mvv-vision-graphic {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.mvv-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  background: #1a2333;
}

.mvv-circle--1 {
  width: 200px;
  height: 200px;
  top: 0;
  left: 0;
  animation: float-circle 8s ease-in-out infinite;
}

.mvv-circle--2 {
  width: 160px;
  height: 160px;
  top: 60px;
  right: 0;
  animation: float-circle 10s ease-in-out infinite reverse;
}

.mvv-circle--3 {
  width: 120px;
  height: 120px;
  bottom: 0;
  left: 80px;
  animation: float-circle 12s ease-in-out infinite 2s;
}

@keyframes float-circle {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(15px, -20px); }
  50% { transform: translate(-10px, 15px); }
  75% { transform: translate(20px, 10px); }
}

/* -------------------------------------------------------------------
   Value — カードグリッド
   ------------------------------------------------------------------- */
.mvv-block--values {
  padding: 80px 0;
}

.mvv-values-header {
  text-align: center;
  margin-bottom: 60px;
}

.mvv-values-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a2333;
  margin: 0;
}

.mvv-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mvv-value-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mvv-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #1a2333;
  transition: height 0.4s ease;
}

.mvv-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(26, 35, 51, 0.1);
}

.mvv-value-card:hover::before {
  height: 100%;
}

.mvv-value-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(26, 35, 51, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.mvv-value-en {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a2333;
  margin: 0 0 6px;
  letter-spacing: 0.5px;
}

.mvv-value-ja {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6c757d;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.mvv-value-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #6c757d;
  margin: 0;
}

/* -------------------------------------------------------------------
   ページ下部ナビ
   ------------------------------------------------------------------- */
.mvv-bottom-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-top: 40px;
}

.mvv-bottom-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 36px;
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  color: #1a2333;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  min-width: 240px;
}

.mvv-bottom-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background-color: #1a2333;
  color: #fff;
}

.mvv-bottom-link-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.mvv-bottom-link:hover .mvv-bottom-link-arrow {
  transform: translateX(6px);
}

/* -------------------------------------------------------------------
   レスポンシブ
   ------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .mvv-page {
    padding: 0 20px 60px;
  }

  .mvv-block-inner {
    flex-direction: column !important;
    gap: 32px;
    padding: 50px 0;
  }

  .mvv-block-visual {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .mvv-vision-graphic {
    width: 200px;
    height: 200px;
  }

  .mvv-circle--1 {
    width: 140px;
    height: 140px;
  }

  .mvv-circle--2 {
    width: 100px;
    height: 100px;
  }

  .mvv-circle--3 {
    width: 80px;
    height: 80px;
    left: 50px;
  }

  .mvv-block-statement {
    font-size: 1.5rem;
  }

  .mvv-block-desc {
    font-size: 0.95rem;
  }

  .mvv-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mvv-value-card {
    padding: 28px 24px;
  }

  .mvv-value-num {
    font-size: 1.8rem;
  }

  .mvv-bottom-nav {
    flex-direction: column;
    gap: 12px;
  }

  .mvv-bottom-link {
    min-width: auto;
  }
}
