/* -------------------------------
   プロフィールページ専用CSS
-------------------------------- */

/* プロフィールキャッチコピー */
.profile-message {
  text-align: center;
  margin-bottom: 3em;
  padding: 0px 25px;
}

.profile-message h2 {
  font-size: 1.6em;
  font-weight: bold;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5em;
}

.profile-message p {
  font-size: 22px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* レスポンシブ */
@media (max-width: 768px) {

  .profile-message p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto;
    text-align: left;
  }
  
}

/* プロフィールセクション */
.profile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2em;
  padding: 2em;
  background-color: #ffffff;
  border-radius: 48px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 80px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-image img {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.profile-details {
  flex: 1;
  min-width: 280px;
  font-family: 'Helvetica Neue', sans-serif;
  color: #649cb9;
}

.profile-details h3 {
  font-size: 1.8em;
  margin-bottom: 0.5em;
  font-weight: bold;
  color: #649cb9;
}

.profile-details .en-name {
  color: #649cb9;
  margin-left: 0.5em;
}

.profile-details p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .profile-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-image img {
    width: 300px;
    height: 300px;
  }

  .profile-details {
    width: 100%;
    padding-top: 1em;
  }

  .profile-details h3 {
    text-align: center;
    font-size: 1.6em;
  }


  .profile-details p {
    text-align: center;
    font-size: 0.9em;
  }
}

/* 趣味セクション */
.profile-details .hobby-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.3em;
  color: #649cb9;
}

.profile-details .hobby-list {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 2em;
}

.profile-details .hobby-list li {
  font-size: 0.9em;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0.5em;
}

/* SNSアイコン */
.sns-link {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.sns-link img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.zeirishi-link {
  text-align: left;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .profile-section {
    flex-direction: column;
  }
  .profile-image, .profile-text {
    flex: 1 1 100%;
  }
  .profile-image img {
    max-width: 100%;
  }
}

/* 経歴セクション */
.career-section {
  max-width: 1200px;
  margin: 2em auto;
  padding: 2em;
  margin-bottom: 80px;
  background-color: #fff;
  border-radius: 48px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Helvetica Neue', sans-serif;
}

.career-section h2 {
  font-size: 1.6em;
  margin-bottom: 1em;
  padding-bottom: 0.5rem;
  font-weight: bold;
  color: black;
}

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

.career-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8em;
}

.career-date {
  flex: 0 0 100px; /* 日付の固定幅 */
  margin-left: 2em;
  margin-right: 1em;
  font-weight: bold;
  color: #333;
}

.career-text {
  flex: 1;
  word-break: break-word;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .career-item {
  margin-bottom: 0.9em;
  }

  .career-date {
    margin-left: 0;
  }
}

/* 所属団体セクション */
.affiliation-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  padding: 2em;
  background-color: #ffffff;
  border-radius: 48px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: 0 auto;
}

.affiliation-text {
  flex: 1;
  min-width: 280px;
}

.affiliation-text h2 {
  font-size: 1.5em;
  margin-bottom: 1em;
  padding-bottom: 0.3em;
  color: #333;
}

.affiliation-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.affiliation-text ul li {
  margin-left: 4em;
  margin-bottom: 0.8rem;
  font-size: 1.1em;
  text-align: left;
}

.affiliation-text ul li a {
  color: #0077cc;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: color 0.3s ease;
}

.affiliation-text ul li a:hover {
  color: #005999;
  text-decoration: underline;
}

.affiliation-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
