/* TOPセクション */
.top-section {
  position: relative;
  text-align: center;
  background-color: #f4f4f4;
  margin-top: 60px; /* ナビゲーションバーに被らないように上にマージンを追加 */
  overflow: hidden; /* 画像がセクションからはみ出さないようにする */
}
.top-image {
  width: 100%;
  height: 200px; /* PCで縦幅25% */
  overflow: hidden;
  position: relative;
}
.top-image img {
  width: 100%;
  height: auto;
  object-fit: cover; /* 画像の縦横比を維持しつつ、上下中央を基準にトリミング */
}
.top-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.top-icon {
  width: 30%; /* PC表示で横幅30% */
  height: auto;
  margin-bottom: 10px;
}
.top-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap; /* 改行を防ぐ */
}
@media (max-width: 768px) {
  .top-image {
    height: 200px; /* モバイルで縦幅40% */
  }
  .top-icon {
    width: 50%; /* モバイル表示で横幅50% */
  }
}

/* news.css */

/* 全体のスタイル */
body {
    font-family: 'Noto Sans Japanese', sans-serif;
    line-height: 1.6;
}

.news-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;

    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* ニュースセクション */
.news-section {
	    margin-top: 40px;
    margin-bottom: 40px;
}

/* ニュース項目 */
.news-item {
    border-bottom: 1px dashed #ccc; /* 点線の罫線を追加 */
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.news-item:last-child {
    border-bottom: none; /* 最後の項目の下線を削除 */
}
/* 日付 */
.news-date {
    font-weight: bold;
    margin-bottom: 10px;
}

/* ニュースタイトル */
.news-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ニュース本文 */
.news-content {
    margin-bottom: 10px;
}

/* 役員リストのスタイル */
.executive-list {
    list-style-type: none;
    padding: 0;
}

.executive-list li {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

.executive-list .position {
    width: 200px; /* 役職名の幅を固定 */
    flex-shrink: 0;
}

.executive-list .name {
    width: 70px; /* 名前の幅を固定 */
    flex-shrink: 0;
}

.executive-list .note {
    flex-grow: 1;
}
.news-images {
    margin: 15px 0;
}

.news-image {
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* お好みで影を追加 */
}
/* リンク */
a {
    color: #0033cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .news-date,
    .news-title,
    .news-content {
        font-size: 0.9em;
    }
}