/* 共通スタイル：common/style.css */

.section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #e66100; 
}

.section-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 0.5rem;
  border-left: 4px solid #e66100; /* 強調ライン（アクセントカラー） */
  border-bottom: 1px solid #ccc;
  color: #333;
}

.publication-list{
   padding-left: 1.5rem;
  margin-left: 0;
  margin-bottom: 2rem; 
}

/*  ニュースリスト独自部分---------------- */
ul.news-list {
    list-style: none;
    padding: 0;
}

ul.news-list li {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
}

.news-date {
    font-weight: bold;
    color: #333;
}

.news-jp {
    margin-top: 0.3rem;
}

.news-en {
    font-size: 0.9rem;
    color: #666;
}

/*  メンバーリスト独自部分---------------- */
.member-section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.member-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.member-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    max-width: 700px;
}

.member-list li {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5rem;
}

.member-name a {
    text-decoration: none;
    color: #1a5fb4;
}

.member-title {
    font-size: 0.9rem;
    color: #666;
}


