@charset "UTF-8";

/* ===== リセット ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { display: block; border: 0; }
a { text-decoration: none; }

/* ===== ベース ===== */
:root {
  --navy:   #003893;
  --navy-d: #003893;
  --purple: #9a4d8c;
  --purple-bg: #f2ecf4;
  --teal:   #3f8a80;
  --teal-bg: #e9f2f1;
  --ink:    #333;
  --gray:   #333;
}
body {
  font-family: "YakuHanJP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: #FFF;
  -webkit-font-smoothing: antialiased;
}

/* ===== ページ / カード ===== */
.card {
  position: relative;
  width: 760px;
  height: 1000px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #111;
  overflow: hidden;
}
.top-bar { height: 8px; background: var(--navy); }

/* ===== ヘッダー ===== */
.header {
  background: url("../images/head_bg.jpg") no-repeat top center;
  background-size: 758px 262px;
  height: 262px;
  box-sizing: border-box;
  padding: 24px 34px 0;
}
/* タイトルは背景画像(head_bg)側に表示。h1テキストはSEO/読み上げ用に残しつつ視覚的に非表示。
   リード位置がずれないよう、旧タイトル画像と同じ高さ(87px)の領域は確保する。 */
.main-copy {
  margin: 0;
  height: 87px;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
}
.main-copy img { width: 710px; height: 87px; }
.lead {
  margin-top: 13px;
  margin-left: 3px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

/* ===== POINT 共通 ===== */
.point {
  position: relative;
  margin: 20px 20px 0;
  padding: 20px 18px 20px 28px;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .13);
}
.point--1 .col--right,
.point--2 .col--right {
  padding: 12px;
  border-radius: 0;
}
.point--1 .col--right { background: var(--purple-bg); }
.point--2 .col--right { background: var(--teal-bg); }

/* POINT.1 をヘッダー背景に被せる（浮遊カード）: ボックス天=194px, バンド下端=270px → 被せ76px */
.point--1 {
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

.tab { position: absolute; top: 0; left: 0; height: 20px; width: auto; }
.tab--inline { position: static; align-self: flex-start; margin-bottom: 8px; }

.point__cols { display: flex; gap: 20px;}
.col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.col--left{
  margin: 20px 0 0 0;
}

/* 見出し・写真・本文 */
.ttl img { max-width: 100%; height: auto; }
.photo { width: 100%; height: auto; border-radius: 3px; }
.body {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  text-align: justify;
}

.point--1_body{ margin-top: 15px;}

/* ===== CTA ボタン ===== */
.btn {
  align-self: flex-end;
  margin-top: 12px;
  padding: 7px 22px 10px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border-radius: 0;
  position: relative;
  line-height: 1;
  transition: opacity .2s;
}
/* ボックス右下角にフラッシュで配置（POINT.1） */
.btn--corner {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-top: 0;
}
.btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
}
.btn:hover { opacity: .85; }
.btn--purple { background: var(--purple); }
.btn--teal   { background: var(--teal); }

/* ===== POINT.1 右カラム ===== */
.col--right { position: relative; }
.badge {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 3;
  width: 62px;
  height: auto;
}
.subttl {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.33;
  color: var(--purple);
}

/* ===== POINT.2（2つの独立ボックス） ===== */
.point2 {
  display: flex;
  gap: 20px;
  margin: 20px 0 0 20px;   /* 右は黒枠まで（INTERVIEWの写真をフレーム端まで） */
}
.box {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 370px;               /* 2ボックス同一高さ（デザイン実測） */
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .13);
  padding-bottom: 20px;
}
.box--spark { flex: 0 0 350px; }
.box--interview { flex: 0 0 350px; }   /* INTERVIEWも350px（写真だけ右にはみ出す） */
.box-tab {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: auto;
  z-index: 3;
}
.box-photo { width: 100%; height: auto; display: block; }
/* コールアウト画像：左右10px余白。上は緑の背景がボックス上端＋10pxになるよう
   画像を上へ出す（王冠部分＝上部の透明域がボックス上にはみ出す）。 */
.box-photo--callout { width: calc(100% - 20px); margin: -12.5px 10px 0; }
.box-ttl { padding: 0 16px; }
.box-ttl img { max-width: 100%; height: auto; display: block; }
/* コールアウト画像（薄緑）の下にタイトルを配置（被せない） */
.box-ttl--over { margin-top: 14px; }
.box .body { padding: 0 22px; }

/* INTERVIEW ボックス */
.box--interview {
  display: flex;
  flex-direction: column;
  width: 350px;
  padding-top: 37px;      /* タイトル上の余白 */
  padding-bottom: 0;      /* グレー帯を下端まで */
}
.box-ttl--iv { margin-top: 0; }

/* 本文＋写真（頭を揃える。写真は右＝黒枠まで。写真高さ＝本文高さ） */
.iv-main { display: flex; gap: 12px; margin-top: 12px; padding-left: 22px; align-items: flex-start; }
.iv-main .body { flex: 1; padding: 0; margin-top: 0; }
.student { width: 118px; flex: none; margin-right: -18px; }   /* 写真だけ右にはみ出す */
.student-photo { position: relative; }
.student-photo img { width: 120px; height: 191px; object-fit: cover; display: block; }
/* キャプション（氏名・所属）：写真下部に70%白背景で被せる／改行させない */
.caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0;
  padding: 4px 5px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 8.5px;
  line-height: 1.5;
  color: #000;
  white-space: nowrap;
}

/* 下部グレー帯（写真下端に接地）：innovator・※取材当時・ボタン */
.iv-foot {
  flex: 1;
  position: relative;
  background: #ededed;
  height: 64px;
}
/* ※取材当時：写真の左端に揃え、グレー帯の上部 */
.iv-foot .note {
  position: absolute;
  top: 4px; right: -18px;     /* はみ出した写真の左端に揃える */
  width: 120px;
  padding-left: 2px;
  margin: 0;
  text-align: left;
  font-size: 9px;
  color: #666;
}
/* THE INNOVATOR：120×67、本文との余白15px（グレー上端から上に飛び出す） */
.iv-foot .innovator {
  position: absolute;
  left: 22px; top: 7px;
  width: 120px;
  display: block;
}
.iv-foot .innovator img { display: block; width: 86px; height: auto; }
.iv-foot .btn--corner { position: absolute; right: 0; bottom: 0; }
.btn--ivteal { background: #006591; }

/* ===== フッター ===== */
.footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 18px 0 16px;
  padding-top: 14px;
}
.k-logo { width: 204px; height: auto; }
.footer__info { flex: 1; margin: 8px 0 0 0;}
.faculties { font-size: 11px; font-weight: 500; color: #222; }
.address   { margin-top: 5px; font-size: 10px; color: var(--gray); }
.footer__btns { display: flex; gap: 6px; }
.fbtn {
  padding: 11px 12px 15px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: var(--navy-d);
  transition: opacity .2s;
}
.fbtn:hover { opacity: .88; }

/* ===== クレジット ===== */
.r-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 760px;
  margin: 12px auto 0;
  font-size: 10px;
  color: var(--gray);
}
.r-footer img { width: 258px; height: auto; }
