/* css/interview.css - インタビューページ専用 */

/* --- First Section (Hero) --- */
.first-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.first-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.first-text-mori {
  flex: 1;
}

.catchphrase-mori {
  font-family: "Zen Old Mincho", serif;
  font-size: 36px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.caption-mori {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 30px;
}

.dr-neme {
  border-left: 4px solid #BFA455;
  padding-left: 15px;
}

.fv-job-title {
  font-size: 14px;
  color: #666;
}

.fv-neme-mori {
  font-size: 24px;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
}

.first-image-mori {
  flex: 1;
}

.first-image-mori img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Interview Section --- */
.interview {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}

.interview-block {
  margin-bottom: 80px;
}

/* テキストと画像のレイアウト */
.layout-left-text, .layout-right-text {
  display: flex;
  align-items: center;
  gap: 40px;
}
.layout-right-text {
  flex-direction: row-reverse;
}

.interview-text {
  flex: 1;
}

.interview-text h3 {
  font-size: 20px;
  color: #BFA455;
  margin-bottom: 15px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.interview-text .caption {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.interview-photo {
  flex: 1;
}

.interview-photo img {
  border-radius: 8px;
  width: 100%;
}

/* テキストのみレイアウト */
.layout-text-only .interview-text {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-left: 5px solid #BFA455;
}

/* --- Profile Section --- */
.profile-section {
  padding: 80px 20px;
  background: #333;
  color: #fff;
}

.profile-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.profile-image img {
  width: 300px;
  border-radius: 8px;
}

.profile-text {
  flex: 1;
}

.profile-text .name {
  font-size: 32px;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 20px;
}

.career-title {
  font-size: 18px;
  color: #BFA455;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.career-title .line {
  flex: 1;
  height: 1px;
  background: #666;
}

.career-list {
  list-style: none;
  padding: 0;
}

.career-list li {
  margin-bottom: 10px;
  font-size: 15px;
  opacity: 0.9;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .first-container, .profile-container, .layout-left-text, .layout-right-text {
    flex-direction: column;
  }
  .first-image-mori, .interview-photo {
    width: 100%;
  }
}