
.step {
  display: flex;
  gap: 30px;
  width: 60%;
  margin: 60px auto 0;
  padding-bottom: 20px;
  border-bottom: 2px solid black;
}

.step-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 8px;
}

.step-label {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  color: #C46E00;
}

.step-number {
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #C46E00;
}

.caria-texts {
  display: flex;
  flex-direction: column;
}

.caria-title {
  font-size: clamp(23px, 3vw, 30px);;
  font-weight: bold;
  margin: 0;
}

.caria-description {
  font-size: clamp(16px, 2vw, 18px);;
  color: #666;
  margin: 3px 0 0;
}

.criteria-last {
  font-size: clamp(16px, 2vw, 20px);
  text-align: center;
  margin: 120px auto 200px;
  line-height: 1.5;
  font-weight: bold;
  width: 60%;
}


/* =========================
   Interview Layout v4（3問・コンパクト）
========================= */
.itv4-wrap {
  width: 60%;
  margin: 100px auto 0;
}

.itv4-kicker {
  text-align: center;
  letter-spacing: 0.14em;
  color: #C46E00;
  margin: 0 0 14px;
  font-weight: 800;
  font-size: 22px;
}

/* 薄い緑背景 */
.itv4-panel {
  background: #fcfcfc;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 16px 38px rgba(0,0,0,0.06);
}

/* 上：写真＋プロフィール */
.itv4-top {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  margin-bottom: 14px;
}

/* 写真：小さめで枠内 */
.itv4-photo {
  width: 160px;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.itv4-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.itv4-profile {
  flex: 1;
}

.itv4-name {
  margin: 0;
  font-weight: 900;
  color: #000;
  font-size: 18px;
}

.itv4-role {
  margin: 6px 0 0;
  font-weight: 800;
  color: #000;
  font-size: 17px;
}

.itv4-meta {
  margin: 6px 0 0;
  color: #000;
  font-size: 16px;
  opacity: 0.9;
}

.itv4-intro{
  margin: 10px 0 0;
  padding-left: 12px;

  font-size: 15px;
  line-height: 1.7;
  font-weight: 800;
  letter-spacing: .02em;

  color: #111;
  border-left: 3px solid #C46E00;
}

/* Q&A */
.itv4-qa {
  display: grid;
  gap: 10px;
}

.itv4-item {
  background: rgba(255,255,255,0.78);
  border-radius: 14px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}

.itv4-item-h {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.itv4-badge {
  width: 32px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  color: #000;
  font-weight: 900;
  font-size: 16px;
}

.itv4-q {
  margin: 0;
  color: #000;
  font-weight: 900;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.4;
}

.itv4-a {
  margin: 0;
  color: #000;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.85;
}

/* スマホ */
@media screen and (max-width: 668px) {
  .itv4-wrap {
    width: 90%;
    margin-top: 100px;
  }

  .itv4-panel {
    padding: 16px;
  }

  .itv4-top {
    align-items: flex-start;
  }

  .itv4-photo {
    width: 120px;
    height: 120px;
  }

  .itv4-top {
    display: block;          /* ←縦並びにする */
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .itv4-photo {
    width: 100%;
    height: 240px;           /* ←大きめで見せる */
    margin-bottom: 12px;
    border-radius: 16px;
  }

}




@media screen and (max-width: 468px) {
.step {
  display: block;
  width: 90%;
}

.step-box {
  margin: 0 auto;
}
.step-label {
  font-size: 15px;
  font-weight: bold;
}

.step-number {
  font-size: 30px;
  font-weight: bold;
}
.criteria-last {
  width: 90%;
}
.caria-title {
  text-align: center;
}

}


