.entry-section-title {
  display: flex;
  align-items: center;
  font-size: clamp(20px, 3.5vw, 35px);
  font-weight: bold;
  margin: 140px 0 5px 100px;
}

.entry-section-title .bar {
  display: inline-block;
  width: 12px;  
  height: clamp(20px, 3.5vw, 45px);
  border-radius: 10px; 
  background-color: #C46E00; 
  margin-right: 15px; 
}


.entry-section-text{
    margin-bottom: 20px;
}

/* ===== キャッチコピー ===== */
.vision-text {
  font-size: clamp(18px, 3vw, 36px);
  text-align: center;
  font-weight: bold;
  margin: 40px 0 60px;
  line-height: 1.5;
  color: #333;
}

/* ===== 3ボックス ===== */
.message-section {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  padding: 70px 20px 40px;
}

.message-box {
  position: relative;
  border: 2px solid #000;
  border-radius: 15px;
  padding: 62px 34px 44px;
  width: 320px;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
}

.message-box h2 {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #C46E00;
  color: #fff;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: bold;
  white-space: nowrap;
}

.message-box p {
  line-height: 1.9;
  font-size: clamp(14px, 2vw, 16px);
  color: #333;
  margin: 0;
}

/* ===== 締めの文章 ===== */
.vision-last {
  width: 70%;
  margin: 40px auto 200px;
  font-size: clamp(16px, 2vw, 20px);
  text-align: center;
  line-height: 1.9;
  font-weight: bold;
  color: #333;
}


@media screen and (max-width: 980px) {
.message-section {
  gap: 40px;
}
  .vision-last {
    width: 85%;
  }

}

@media screen and (max-width: 768px) {
.entry-section-title {
  margin: 140px 0 5px 60px;
}
  .vision-text {
    margin: 30px 20px 50px;
  }
}

@media screen and (max-width: 480px) {
    .entry-section-title {
  margin: 140px 0 5px 30px;
}
  .message-box {
    width: 90%;
    padding: 60px 20px 40px;
  }

  .vision-last {
    width: 90%;
    margin: 30px auto 150px;
  }

}