
/* =====================================
   Corporate Message (CLEAN / CEO Overlap WIDE / NO Radius)
===================================== */

/* ===== セクション本体 ===== */
.corp-message{
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}

/* 斜めブルー帯：一番下 */
.corp-message__bg{
  position: absolute;
  left: -12vw;
  right: -12vw;
  top: 18%;
  height: 520px;
  background: linear-gradient(135deg, #1c4fd1, #163b9c);
  transform: rotate(-7deg);
  z-index: 0;
}

/* ✅ ウォーターマーク（Supporting Infrastructure） */
.corp-message::before{
  /* content: "Revitalizing the MONOZUKURI ";  */
  position: absolute;
  left: 0px;
  right: 0;
  top: 20px;
  padding: 0 clamp(14px, 4vw, 56px);
  box-sizing: border-box;

  font-size: clamp(40px, 5vw, 80px);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  text-align: left;

  font-family: "Inter","Helvetica Neue","Arial","Noto Sans",system-ui,sans-serif;

  color: rgba(11, 47, 85, .10);
  -webkit-text-stroke: .4px rgba(11,47,85,.06);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);

  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
  display: block;
}

/* ✅ ウォーターマーク（Empowering the Future） */
.corp-message::after{
  /* content: "through the world"; */
  position: absolute;
  left: 0;
  right: 0;
  top: 150px;
  padding: 0 clamp(14px, 4vw, 56px);
  box-sizing: border-box;

  font-size: clamp(40px, 5vw, 80px);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  text-align: right;

  font-family: "Inter","Helvetica Neue","Arial","Noto Sans",system-ui,sans-serif;

  color: rgba(255,255,255,.16);
  -webkit-text-stroke: .35px rgba(0,0,0,.06);
  text-shadow: 0 1px 0 rgba(0,0,0,.08);

  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
  display: block;
}

/* 中身は最前面 */
.corp-message__inner{
  position: relative;
  z-index: 3;
}

/* ====== 2カラムレイアウト ====== */
.corp-message__grid{
  width: min(1080px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;


  /* ✅ 左カードが右へはみ出すので visible */
  overflow: visible;
}

/* ====== 左：社長ブロック ====== */
.corp-ceo{
  position: relative;
  overflow: visible;
  padding-bottom: 64px; /* ✅ かぶせカード分の余白 */
}

/* 写真枠（角丸なし） */
.corp-ceo__photo{
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  background: #eee;
}

/* 画像比率固定（縦長） */
.corp-ceo__photo::before{
  content:"";
  display:block;
  padding-top: 120%;
}

.corp-ceo__photo img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* ✅ テキスト枠：写真に“かぶせる”＋右へ幅を出す（角丸なし） */
.corp-ceo__card{
  position: absolute;
  left: 22px;
  right: -72px;     /* ✅ ここで右へはみ出す（幅出し） */
  bottom: -26px;    /* ✅ ここで写真にかぶせる */
  padding: 18px 20px;

  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 50px rgba(0,0,0,.14);

  z-index: 2;
}

/* タイポ */
.corp-ceo__role{
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(0,0,0,.55);
  text-transform: uppercase;
}

.corp-ceo__note{
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  color: rgba(0,0,0,.70);
}

/* ====== 右：本文カード（角丸なし） ====== */
.corp-message__card{
  padding: 64px 72px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
}

/* 本文 */
.corp-message__body p{
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  color: #333;
}
.corp-message__body p:last-child{ margin-bottom: 0; }

/* ===== Responsive ===== */
@media (max-width: 1025px){
  .corp-message{ padding: 92px 0; }
  .corp-message::after{ top: 76px; }

  .corp-message__grid{ grid-template-columns: 320px 1fr; }
  .corp-message__card{ padding: 48px 40px; }

  /* はみ出し量を少し控えめ */
  .corp-ceo__card{ right: -54px; }
}

@media (max-width: 860px){
  .corp-message__grid{
    grid-template-columns: 1fr; /* 縦積み */
  }

  .corp-ceo{
    width: min(250px, 100%);
    padding-bottom: 0;
    margin: auto;
  }

  /* ✅ 縦積み時は、はみ出しを止めて自然に下へ */
  .corp-ceo__card{
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -24px 0 0 18px; /* 写真に少しかぶせつつ右へズラす */
    width: calc(100% - 18px);
  }
}

@media (max-width: 600px){
  .corp-message{ padding: 72px 0; }

  /* スマホは巨大ウォーターマークOFF */
  .corp-message::before,
  .corp-message::after{ display: none; }

  .corp-message__card{ padding: 36px 26px; }

  .corp-message__body p{
    font-size: 14px;
    line-height: 1.5;
  }

  .corp-ceo__card{
    margin: -18px 0 0 12px;
    width: calc(100% - 12px);
    padding: 16px 16px;
  }
}

