/* ===== About Message ===== */
.about-message{
  position: relative;
  padding: clamp(48px,8vw,96px) 0;
  background: #f6f9fd; /* ベース */
  overflow: hidden;
}

/* 右下にうっすらグラデ */
.about-message__bg{
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 95% 85%, rgba(122,200,240,.28) 0%, rgba(122,200,240,0) 70%),
    radial-gradient(40% 40% at -10% -10%, rgba(45,94,163,.08) 0%, rgba(45,94,163,0) 70%);
  pointer-events:none;
}

.about-message__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px,5vw,64px);
  align-items: center;
}

/* 画像 */
.about-message__image img{
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト側 */
.about-message__text{
  display: block;
}

.about-message__copy{
  position: relative;
  padding-left: 24px;        /* ライン分の余白 */
  color: var(--text-primary, #0e2a3f);
  font-family: 'Noto Sans JP', system-ui, sans-serif;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 2;
  letter-spacing: .04em;
  font-weight:500;
  text-align: start;
}

/* 左の縦ライン */
.about-message__copy::before{
  content:"";
  position:absolute;
  left:0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 999px;
  background: #6FA8DB;
  box-shadow: 0 0 0 1px rgba(178,224,248,.25) inset;
}

/* アクセシビリティ用：見出しを視覚的に隠す */
.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.sp-br {
  display: none; /* 初期表示なし（PCやタブレット） */
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .about-message__inner{
    grid-template-columns: 1fr;
  }
  .about-message__image{
    order: 1;
    max-width: 720px;
    margin: 0 auto;
  }
  .business-info__title {
    font-size: 16px;
  }
  .about-message__text { order: 2; }
  .about-message__copy {
    padding-top: 24px;
  }
  .sp-br {
    display: inline; /* スマホ時のみ有効 */
  }
}

@media (max-width: 600px){
  .about-message{ padding: 40px 0; }
  .about-message__copy{ padding-left: 14px; }
  .about-message__copy::before{ width: 3px; }
}

.business-info__container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: start;
  padding: 100px 0;
}

.business-info__title {
  background: linear-gradient(90deg, rgba(122,200,240,1) 0%, rgba(0,123,199,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3.64px;
  margin: 0 0 30px 0;
  color: transparent; /* グラデ文字以外の環境のため */
}