
/* 事業エリア */
.pro-wrap {
  display: flex;
  gap: 150px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 10%;
}
.pro {
  margin-bottom: 25px;
}
.pro-table {
    flex: 0 0 40%;
    border-collapse: collapse;
    width: 100%;
    max-width: 700px;
}
.pro-table th, .pro-table td {
    border-bottom: 2px solid #c1c7c6;
    padding: 1em;
}
.pro-table th {
    border-bottom: 2px solid #7bbf6a;
    font-weight: bold;
    text-align: center;
    width: 20%;
    min-width: 4em;
}


/* 事業テキスト */
.txt.mental {
    font-size: 28px;
    font-family: "Monoton", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #7bbf6a;
    grid-column: 1;
    grid-row: 1;
}
.txt.system {
    font-size: 28px;
    font-family: "Monoton", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #4d6edb;
    grid-column: 1;
    grid-row: 2;
}
.txt.design {
    font-size: 28px;
    font-family: "Monoton", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #e35b4f;
    grid-column: 3;
    grid-row: 1;
}
.txt.interior {
    font-size: 28px;
    font-family: "Monoton", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #c9a650;
    grid-column: 3;
    grid-row: 2;
}

@media (max-width: 768px) {
  .pro-wrap {
    flex-direction: column;
    gap: 50px;
  }
  .pro-table {
    width: 100%;
  }
}


/* ビジョンセクション   */
.vision-section {
  width: 100%;
}
.vision-box {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.vision-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
/* 背景画像本体 */
.vision-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* テキストブロック（これが高さを決める主役） */
.vision-inner {
  position: relative;
  padding: 200px 10% 200px;
  color: #fff;
  z-index: 1;
}
.vm-text {
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.9;
  font-size: 28px;
}

/* SP用調整 */
@media (max-width: 768px) {
  .vision-inner {
    padding: 100px 10% 100px;
  }
  .vm-text {
  font-size: 16px;
}


}
