/*==============================
  メインビジュアルセクション
==============================*/
body.partner-page .site-main {
  padding-top: 0;
}

.secMainVis {
  background-color: #f9f9f9;
  padding: 0 80px 20px; /* ← 上の余白だけ削る */
  padding-top: 40px;
}

.mainVisInr {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.secTtlWrap {
  flex: 1 1 50%;
  min-width: 300px;
}

.secSubTtl {
  font-size: 1rem;
  font-weight: bold;
  color: #06b6d4;
  margin-bottom: 1rem;
}

.secTtl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.secLead {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

/*==============================
  問い合わせボタン（単層構造に修正）
==============================*/
.secBtnWrap {
  text-align: left; /* スマホでは center */
}

.secBtnWrap .btn {
  display: inline-block;
  max-width: 280px;
  width: 100%;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.secBtnWrap .btn a {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 2rem;
  background-color: #06b6d4;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.secBtnWrap .btn a:hover {
  background-color: #0891b2;
}

/*==============================
  画像エリア
==============================*/
.secImg {
  flex: 1 1 40%;
  text-align: center;
}

.secImg img {
  max-width: 100%;
  height: auto;
}

/*==============================
  レスポンシブ対応
==============================*/
@media screen and (max-width: 768px) {
  .mainVisInr {
    flex-direction: column;
    text-align: center;
  }

  .secTtl {
    font-size: 1.5rem;
  }

  .secLead {
    font-size: 0.95rem;
  }

  .secBtnWrap {
    text-align: center;
  }
}
