/* 全体のリセット */
body {
  font-family: "Helvetica Neue", "Hiragino Sans", "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fdfd;
  color: #333;
  line-height: 1.8;
}

/* ヘッダー */
.header {
  background: #008080;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.nav-menu li a:hover {
  opacity: 0.7;
}

/* プロフィールセクション */
.profile {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.section-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.section-title-line::before,
.section-title-line::after {
  content: "";
  flex: 1;
  border-top: 2px solid #008080;
}

.section-title-line span {
  color: #008080;
  font-weight: bold;
  font-size: 1.6rem;
  white-space: nowrap;
}

/* プロフィール内容 */
.profile-content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap; /* スマホ対応 */
  align-items: flex-start;
}

.profile-photo {
  width: 200px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.profile-text {
  flex: 1;
}

.profile-text h4 {
  color: #008080;
  margin-top: 20px;
  margin-bottom: 10px;
}

.occupation {
  font-weight: bold;
  color: #555;
  margin-bottom: 20px;
}

.qualifications {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.qualifications li {
  margin-bottom: 6px;
}

/* フッター */
.footer {
  background: #008080;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

.footer p {
  margin: 5px 0;
}