@charset "UTF-8";

.vision {
  position: relative;
  z-index: 1;
}
.wrap {
  display: flex;
  /* flex-wrap: wrap; */ /* ■250612 コメントアウト */
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
  z-index: 1;
}
/* ■250612 追記 */
.wrap .heading {
  flex-shrink: 0;
}
/* End ■250612 追記 */
.text {
  max-width: 634px;
}
.text-heading {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
.min-text {
  padding-top: 49px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.min-text p {
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.min-text .visoin-attention {
  display: flex;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 400;
}
.visoin-attention::before {
  content: '※';
}
.information-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 65px;
  justify-content: center;
}
.card {
  border-radius: 10px;
  max-width: 310px;
  width: 100%;
  box-shadow: -4px -2px 10px 0px rgba(3, 26, 17, 0.04),
    6px 4px 16px 0px rgba(3, 26, 17, 0.07);
}
.card h3 {
  font-family: var(--font-en);
  font-size: 36px;
  line-height: 1.5;
  color: var(--color-primary);
  font-weight: 600;
}
.card p {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.6666666667;
}

.card-img {
  max-width: 90px;
  margin-inline: auto;
  margin-top: 20px;
}

.card .button {
  margin-top: 20px;
}

.inner-card {
  padding: 30px 20px;
  text-align: center;
}

.information-text {
  text-align: center;

  margin-top: 50px;
}

.information-text p {
  display: inline;
  font-size: 20px;
  font-weight: 700;
  background-image: linear-gradient(
    to top,
    var(--color-accent) 0px,
    var(--color-accent) 7px,
    transparent 7px
  );
}

.information-text br {
  display: none;
}

.vision-slide {
  position: absolute;
  z-index: -1;
  top: 160px;
  left: 0;
  width: 100%;
  opacity: 0.35;
}
.vision-slide ul {
  font-size: 200px;
  font-weight: bold;
  letter-spacing: 10%;
  line-height: 125%;
  padding: 0 50px;
  color: var(--color-secondary);
  visibility: visible;
}

.vision-slide li {
  line-height: 1.25;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .br-sp {
    display: block;
  }
  .wrap {
    display: block;
  }
  .text {
    max-width: 100%;
  }
  .text-heading {
    font-size: 16px;
    padding-top: 30px;
  }
  .min-text {
    padding-top: 20px;
  }

  /* ■250612 修正 */
  .vision-slide {
    position: static;
    margin-top: 20px;
  }
  .vision-slide ul {
    font-size: 100px;
  }
  /* ■250612 End 修正 */
  .information {
    flex-direction: column;
    gap: 28px;
  }
  .information-text {
    margin-top: 40px;
  }
  .information-text p {
    font-size: 18px;
    line-height: 1.75;
    background-image: linear-gradient(
      to top,
      var(--color-accent) 0px,
      var(--color-accent) 5px,
      transparent 5px
    );
  }
  .information-text br {
    display: block;
  }
}
