@charset "utf-8";
/* ブラウザ差分をなくす最強の初期化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* normalize.css 推奨 */

/* セクション全体：背景色なし */
.mission-section {
  padding: 80px 20px;
}

/* ページ全体で左右分割 */
.mission-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  padding: 0 20px;
}

  


/* 左側：見出し＋サブタイトル */
.mission-left {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mission-heading {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.mission-title {
  font-size: 20px;
  font-weight: 500;
  color: #555;
}

/* 右側：本文＋会社情報 */
.mission-right {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mission-text {
  font-size: 16px;
  line-height: 2;
  color: #444;
  margin-bottom: 40px;
}

.representative {
  text-align: left;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-top: 20px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .mission-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .mission-left,
  .mission-right {
    width: 100%;
  }

  .mission-heading,
  .mission-title {
    text-align: center;
  }

  .representative {
    text-align: center;
    margin-top: 20px;
  }
}