/* 轮播容器 */
  #simple-slider {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
  }

  /* 轮播图片 */
  #simple-slider img {
    width: 100%;
    display: block;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }

  /* 当前显示的图片 */
  #simple-slider img.active {
    opacity: 1;
    position: relative;
  }

  /* 可选：下一张/上一张按钮 */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
  }

  .prev { left: 10px; }
  .next { right: 10px; }
.myClass {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center;     /* 垂直居中 */
    height: 100%;            /* 占满父容器高度 */
}

/* 父容器样式 */
.menu {
    list-style: none; /* 去掉默认圆点 */
    padding: 0;
    margin: 0;
    width: 200px; /* 可根据需要调整 */
    margin-top: 50px; /* ulの上部に100pxの余白を追加 */
}

/* 列表项 */
.menu li {
    position: relative;
    padding-left: 20px; /* 给箭头留出空间 */
    margin-bottom: 5px;
    font-size: 16px;
    color: #0c64b4; /* 字体颜色为蓝色 */
    cursor: pointer;
}

/* 左侧箭头 */
.menu li::before {
    content: '▶'; /* 黑色三角符号 */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* 垂直居中 */
    font-size: 12px;
    color: #0c64b4; /* 箭头颜色与文字一致 */
}

/* テーブル全体のスタイル */
.company-profile {
    width: 800px; /* テーブルの幅 */
    border-collapse: collapse; /* 罫線を1本に */
    border: 1px solid #a9a9a9;
    font-family: sans-serif; /* フォントを指定 */
    font-size: 16px;
}

/* ヘッダーセル（左側）のスタイル */
.company-profile .header {
    background-color: #eaf3fa; /* 背景色 */
    width: 180px; /* 幅を指定 */
    padding: 10px;
    border: 1px solid #a9a9a9;
    font-weight: bold;
    text-align: left;
    vertical-align: middle; /* 上下中央揃え */
}

/* データセル（右側）のスタイル */
.company-profile .data {
    padding: 10px;
    border: 1px solid #a9a9a9;
    vertical-align: middle; /* 上下中央揃え */
    line-height: 1.5; /* 行の高さを調整 */
}

/* 「事業内容」のように複数行にまたがるセルのスタイル */
.company-profile .header[rowspan] {
    text-align: center; /* 水平中央揃え */
}/* テーブル全体のスタイル */
.reception-table {
    width: 600px; /* テーブルの幅 */
    border-collapse: collapse; /* 罫線を1本に */
    font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif; /* フォントを指定 */
    font-size: 15px;
    margin: 20px auto; /* 中央寄せ */
    border: 1px solid #dcdcdc; /* 全体の薄い罫線 */
}

/* ヘッダーセルのスタイル */
.reception-table th {
    background-color: #f0f8ff; /* 薄い水色の背景 */
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    text-align: center;
    font-weight: bold;
    color: #333;
    white-space: nowrap; /* テキストの折り返しを防ぐ */
}

/* データセルのスタイル */
.reception-table td {
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    text-align: center;
    color: #555;
    white-space: nowrap; /* テキストの折り返しを防ぐ */
}

/* 偶数行の背景色（ストライプ） */
.reception-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
/* 表格整体样式 */
table.type {
    width: 95%;
    border-collapse: collapse; /* 合并边框 */
    margin: 20px auto;
    font-family: "メイリオ", sans-serif;
    text-align: center;
}

/* 表头样式 */
table.type th {
    background-color: #4CAF50; /* 绿色背景 */
    color: white;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
}

/* 表格单元格样式 */
table.type td {
    padding: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* 隔行换色 */
table.type tr:nth-child(even) td {
    background-color: #f9f9f9;
}

/* 鼠标悬停高亮行 */
table.type tr:hover td {
    background-color: #f1f1f1;
}

/* rowspan 合并的单元格垂直居中 */
table.type td[rowspan] {
    vertical-align: middle;
    font-weight: bold;
    background-color: #e8f5e9; /* 淡绿色背景突出 */
}


/* 时间线容器 */
#blog-posts {
  max-width: 700px;
  margin: 20px auto;
  padding-left: 20px;
  position: relative;
  font-family: Arial, sans-serif;
}

/* 每篇文章 */
.blog-post {
  border-left: 3px solid #3498db;
  padding: 10px 20px;
  margin: 15px 0;
  position: relative;
  background: #f9f9f9;
  border-radius: 5px;
}

/* 时间线圆点 */
.blog-post::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 15px;
  width: 15px;
  height: 15px;
  background: #3498db;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

/* 文章标题 */
.blog-post h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
}

/* 标题链接 */
.blog-post h3 a {
  text-decoration: none;
  color: #2c3e50;
}

.blog-post h3 a:hover {
  color: #3498db;
}

/* 日期 */
.blog-post small {
  color: #777;
}

/* 内容预览 */
.blog-post p {
  margin: 5px 0 0 0;
  color: #333;
}

#news1 {
  display: flex !important;
  justify-content: center !important; /* 水平居中 */
  gap: 20px !important; /* 两个按钮的间距 */
}

#news1 a.btn-default {
  display: inline-block !important;
  padding: 10px 20px !important;
  background: black !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 5px !important;
}

