/* MISSION・VISION・VALUE page specific styles */

/* Spacing around sub titles and images on MVV page */
.company__sub_title {
  margin-top: 80px;
  margin-bottom: 60px;
}

/* =========================================================
   VISION two-column section with list and notes
   ========================================================= */
.mvv-vision {
  margin-bottom: 80px;
}

.mvv-vision__inner {
  display: flex;
  align-items: start;
  gap: 100px;
}

.mvv-vision__col--image {
  flex: 0 0 35%;
}

.mvv-vision__col--image img {
  width: 100%;
  height: auto;
  display: block;
}

.mvv-vision__col--content {
  flex: 1 1 auto;
}

.mvv-vision__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mvv-vision__list li {
  position: relative;
  padding-left: 28px;
  padding-top: 28px;
  font-size: 18px;
  line-height: 1.9;
}

.mvv-vision__list li + li {
  margin-top: 28px;
  border-top: 1px solid #E5E8EE;
}

.mvv-vision__list li::before {
  content: "";
  position: absolute;
  top: 2.5em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #1F7ADB;
  border-radius: 50%;
  transform: translateY(-50%);
}

.mvv-vision__notes {
  margin-top: 40px;
}

.mvv-vision__notes p {
  font-size: 16px;
  line-height: 2;
  color: #4A4A4A;
}

.mvv-vision__notes p + p {
  margin-top: 8px;
}

@media screen and (max-width: 560px) {
  .mvv-block--sp-reverse .mvv-block__inner {
    flex-direction: column-reverse;
  }

  .mvv-vision--sp-reverse .mvv-vision__inner {
    flex-direction: column-reverse;
  }

  .company__photo img,
  .company__photo2 img,
  .company__photo3 img {
    width: 100%;
    height: 400px; /* 400px */
    object-fit: cover;
    border-radius: 10px;
  }

  .mvv-block--sp-reverse .mvv-block__inner {
    flex-direction: column-reverse;
  }

  .mvv-vision__inner {
    flex-direction: column;
  }

  .mvv-vision__list li::before {
    top: 2.5em;
  }

}

.company__photo {
  position: relative;
  margin-bottom: 60px;
}

.company__photo2 {
  position: relative;
  margin-bottom: 80px;
}

.company__photo3 {
  position: relative;
  margin-bottom: 80px;
}

/* 24px heading above VISION area under VALUE */
.mvv-heading {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 32px;
}


/* Centered white label over the MISSION image */
.company__photo::after {
  content: "MISSION";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}


/* Centered white label over the VISION image */
.company__photo2::after {
  content: "VISION";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

/* Centered white label over the VALUE image */
.company__photo3::after {
  content: "VALUE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 80px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

/* =========================================================
   MVV two-column block (image left, text right)
   ========================================================= */
.mvv-block {
  margin-bottom: 80px;
}

.mvv-block__inner {
  display: flex;
  align-items: start;
  gap: 100px;
}

.mvv-block__col--image {
  flex: 0 0 35%;
}

.mvv-block__col--image img {
  width: 100%;
  height: auto;
  display: block;
}

.mvv-block__col--text {
  flex: 1 1 auto;
}

.mvv-block__text {
  font-size: 20px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.mvv-block__text--lead {
  font-size: 32px;
  font-weight: 500;
}

.mvv-block__text--sub {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 0;
}

@media screen and (max-width: 560px) {

  .mvv-block__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .mvv-block__col--image {
    flex: none;
  }

}

