  /* ════════════════════════
     上段：ビジュアルエリア
  ════════════════════════ */
  .hero {
    position: relative;
    background: #F5F5F5;
	  overflow: visible;
    height: 400px;
  }
 
  .hero-inner {
    max-width: 1100px;
	 height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
  }
 
  /* 左：テキスト */
  .hero-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 480px;	 
  }
 
  .hero-catch {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 500;
    color: #014099;
    line-height: 1.55;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }
 
  .hero-rule {
    width: 40px;
    height: 3px;
    background: #014099;
    margin-bottom: 24px;
  }
 
  .hero-name {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    letter-spacing: 0.06em;
  }
 
  .hero-signature {
    font-size: 22px;
    letter-spacing: 0.1em;
  }
 
  /* 右：写真 */
  .hero-photo {
    width: clamp(320px, 40vw, 500px);
    line-height: 0;
    position: absolute;
    bottom: 0;
    right: 54px;
    z-index: 1;	  
  }
 
  .hero-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
  }
 
  /* ════════════════════════
     下段：本文エリア
  ════════════════════════ */
  .message-body {
    background: #fff;
    margin: -40px auto 0;
    padding: 80px 48px 56px;
	 max-width: 960px;
	 box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	 position: relative;
	 z-index: 1;
}
 
  .message-inner {
    max-width: 860px;
    margin: 0 auto;
  }
 
  .message-text {
    font-size: 15px;
    line-height: 2.1;
  }
 
  .message-text p + p {
    margin-top: 1.8em;
  }
 
  .message-sign {
    margin-top: 48px;
    text-align: right;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.06em;
  }
 
  .message-sign .sign-name {
    font-size: 18px;
    color: #1C1C1C;
    letter-spacing: 0.1em;
    display: block;
    margin-top: 2px;
  }
 
  /* ════════════════════════
     モバイル（縮小のみ）
  ════════════════════════ */
 @media screen and (max-width: 767px){
 
	 .hero {
    height: 260px;
  }
	 .hero-text{
	 max-width: 200px;
	 }
	 
	 .hero-inner {
    padding: 0 20px;
  }
    .hero-catch {
      font-size: 18px;
		font-weight: 500;
    }
 
    .hero-photo {
      width: clamp(160px, 44vw, 280px);
		right: 8px;
    }
	 
	 .hero-signature{
		 font-size: 16px;
	 }
	 
	 .hero-name{
		 font-size: 12px;
	 }
 
    .message-body {
      padding: 36px 20px;
      margin: -10px 10px;
    }
 
	 .message-sign{
		 font-size: 12px;
	 }
	 
	 .message-sign .sign-name{
		 font-size: 16px;
	 }
	 
    .message-text {
      font-size: 14px;
    }
  }