@charset "UTF-8";
/* ==========================================
   社員インタビュー 詳細ページ
   ========================================== */
.interview {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
}
@media (max-width: 1024px) {
  .interview {
    flex-direction: column;
  }
}

/* 左カラム: 写真 + プロフィール */
.interview__left {
  width: 550px;
  flex-shrink: 0;
  background: #FFFAF1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 30px 40px;
  position: sticky;
  top: 0;
  height: 100vh;
  justify-content: center;
}
@media (max-width: 1024px) {
  .interview__left {
    width: 100%;
    position: static;
    height: auto;
    padding: 40px 20px;
  }
}

.interview__photo-area {
  position: relative;
  width: 260px;
  height: 320px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .interview__photo-area {
    width: 200px;
    height: 250px;
  }
}

.interview__photo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(180deg, #e8ddd0 0%, #a8c8d8 50%, #7ab0c8 100%);
  filter: blur(20px);
  opacity: 0.6;
  transform: scale(1.1);
  z-index: 0;
}

.interview__photo {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.interview__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview__profile {
  text-align: center;
}

.interview__role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #E97F4B;
  background: #ffffff;
  border: 1px solid #E97F4B;
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.interview__role::before {
  content: "✦";
  font-size: 10px;
}

.interview__catchcopy {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 480px) {
  .interview__catchcopy {
    font-size: 18px;
  }
}

/* 中央: LEOVEロゴ */
.interview__center {
  width: 100px;
  flex-shrink: 0;
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 60px auto;
  opacity: 0.4;
}
@media (max-width: 1024px) {
  .interview__center {
    display: none;
  }
}

/* 右カラム: コンテンツ */
.interview__right {
  flex: 1;
  min-width: 0;
  padding: 60px 50px 80px;
  background: #FFFAF1;
}
@media (max-width: 1024px) {
  .interview__right {
    padding: 40px 20px 60px;
  }
}

/* インタビューステップ */
.interview-step {
  display: flex;
  gap: 24px;
  margin-bottom: 50px;
}
.interview-step__title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 24px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .interview-step__title {
    font-size: 17px;
  }
}
.interview-step__body {
  flex: 1;
  min-width: 0;
}
.interview-step__heading {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 16px;
  line-height: 1.5;
}
.interview-step__text {
  font-size: 14px;
  line-height: 2;
  color: #666666;
  margin: 0 0 16px;
}
.interview-step__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .interview-step {
    gap: 16px;
  }
}

/* プロフィールカード */
.interview-profile-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.interview-profile-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #E97F4B;
  margin: 0 0 20px;
}
.interview-profile-card__title img {
  width: 18px;
  height: 12px;
}
.interview-profile-card .info-table {
  margin-bottom: 0;
}
