main section:last-child figure {
  margin: 0; }
  main section:last-child figure div {
    height: 400px;
    position: relative;
    overflow: hidden; }
    main section:last-child figure div img {
      width: 100%; }
  main section:last-child figure p {
    height: 40px;
    line-height: 40px;
    margin: -47px 0 0 0;
    position: relative;
    text-align: center;
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.5); }
main .link {
  border-top: 1px solid #DADADA;
  border-bottom: 2px solid #DADADA; }
  main .link table {
    width: 100%;
    margin: 10px 0;
    border-top: 2px solid #DADADA;
    border-bottom: 1px solid #DADADA; }
    main .link table td {
      width: 25%;
      vertical-align: top;
      padding: 10px 0; }
    main .link table a {
      vertical-align: middle;
      color: #686868; }
      main .link table a:hover {
        color: #56BAFF; }

.cd_overview {
  margin: 10px 0; }
  .cd_overview h4 {
    margin: 10px 0; }
  .cd_overview p {
    margin: 10px 0; }
  .cd_overview img {
    width: 100%; }

/*# sourceMappingURL=info-local.css.map */

 :root {
   --primary-color: #56BAFF;
   --primary-dark: #56BAFF;
   --primary-light: #56BAFF;
   --primary-bg: #f8f9fa;
   --secondary-color: #2c3e50;
   --light-bg: #f8f9fa;
   --border-color: #e0e0e0;
   --text-color: #333;
   --text-light: #777;
 }

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  background-color: var(--light-bg);
  color: var(--secondary-color);
}

/*.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}*/

.info-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 40px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

/* 左侧菜单样式优化 */
.sidebar {
  width: 100%;
  padding: 0;
  /*background-color: #fff;*/
}

.side-menu {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 15px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color);
}

.side-menu:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.menu-title {
  /*background: linear-gradient(90deg, var(--primary-color), #e07917);
  color: white;*/
  padding: 16px 20px;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--secondary-color);

  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  position: relative;
}

.menu-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.menu-title i {
  font-size: 1.2rem;
}

.menu-list {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.menu-list li {
  border-bottom: 1px solid #f0f4f8;
  transition: all 0.3s ease;
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-list li:hover {
  background-color: var(--primary-bg);
}

.menu-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.menu-list a:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.menu-list a span:last-child {
  color: var(--primary-color);
  font-size: 0.9rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.menu-list a:hover span:last-child {
  transform: translateX(3px);
  opacity: 1;
}

.menu-list .active {
  background-color: var(--light-bg) !important;
  /*border-left: 4px solid var(--primary-color);*/
}

.menu-list .active a {
  color: var(--primary-dark);
  font-weight: 600;
}

.submenu {
  list-style: none;
  padding-left: 20px;
  background-color: #f9f9f9;
  display: none;
}

.menu-list li.active .submenu {
  display: block;
}

.submenu li {
  border-bottom: 1px solid #eee;
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu a {
  padding: 10px 20px 10px 30px;
  font-size: 1.1rem;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.submenu a span:last-child {
  color: var(--primary-color);
  font-size: 0.9rem;
  opacity: 0.7;
}

.submenu a:hover {
  color: var(--primary-color);
  background-color: #f0f0f0;
}

.submenu .active a {
  color: var(--primary-color);
  font-weight: 600;
  background-color: #f0f0f0;
}

.content-section {
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.content-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-light);
}

.content-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-text {
  line-height: 1.8;
  margin-bottom: 5px;
  text-align: justify;
  text-indent: 1em;
}

.content-text-sub {
  line-height: 1.8;
  margin-bottom: 5px;
  text-align: justify;
  text-indent: 2.5em;
}

.table-container {
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-table {
  width: 100%;
  /*min-width: 800px;*/
  border-collapse: collapse;
  font-size: 0.95rem;
}

.content-table th, .content-table td {
  border: 1px solid #dee2e6;
  padding: 15px 12px;
  vertical-align: top;
  text-align: left;
}

.content-table th {
  background-color: var(--primary-light);
  color: var(--secondary-color);
  font-weight: 600;
  position: sticky;
  top: 0;
}

.content-table tr:nth-child(even) {
  background-color: #fafafa;
}

.content-table tr:hover {
  background-color: #fff9f2;
}

/* 长文本和URL换行处理 */
.content-table td {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.content-table .url-cell a {
  color: #1a73e8;
  text-decoration: none;
  word-break: break-all;
}

.content-table .url-cell a:hover {
  text-decoration: underline;
  color: #0d47a1;
}

.download-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  margin: 15px 0;
}

.download-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #28437A;
  color: white;
}

.mobile-menu-btn {
  display: none;
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

.section-divider {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.section-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--primary-light), #fff);
}

.section-divider-text {
  padding: 0 15px;
  color: var(--primary-color);
  font-weight: 600;
}

.content-section section h5 {
  color: var(--primary-color);
  margin: 20px 0 10px;
}

.content-section section h5 i {
  margin-right: 10px;
}

.image-masonry-group {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.img-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* PC端（大屏幕） */
@media (min-width: 992px) {
  .sidebar {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .content-col {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .mobile-menu-btn {
    display: none;
  }

  .sidebar {
    display: block !important;
  }

  .image-masonry-group {
    grid-template-columns: 1fr 1fr 1.2fr;
    grid-template-rows: auto auto;
  }

  /* 右侧大图，占两行 */
  .img-3 {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 991.98px) {
  .sidebar {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .content-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mobile-menu-btn {
    display: none;
  }

  .sidebar {
    display: block !important;
  }

  .content-table {
    font-size: 0.9rem;
  }

  .content-table th, .content-table td {
    padding: 12px 10px;
  }

  .link-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .info-label {
    min-width: 100px;
  }

  .image-masonry-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .img-3 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .sidebar {
    flex: 0 0 100%;
    max-width: 100%;
    display: none;
  }

  .content-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mobile-menu-btn {
    display: block;
  }

  .sidebar.active {
    display: block;
    margin-bottom: 15px;
  }

  .content-title {
    font-size: 1.5rem;
  }

  .content-table {
    /*min-width: 600px;*/
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .info-item {
    flex-direction: column;
  }

  .info-label {
    margin-bottom: 5px;
  }

  .fee-table {
    display: block;
    overflow-x: auto;
  }

  .image-masonry-group {
    grid-template-columns: 1fr;
  }

  .img-3 {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 575.98px) {
  .sidebar {
    flex: 0 0 100%;
    max-width: 100%;
    display: none;
  }
  .sidebar.active {
    display: block;
    margin-bottom: 15px;
  }
  .content-section {
    padding: 15px;
  }

  .content-table {
    /*min-width: 500px;*/
    font-size: 0.85rem;
  }

  .content-table th, .content-table td {
    padding: 10px 8px;
  }

  .menu-title {
    font-size: 1.3rem;
    padding: 14px 15px;
  }

  .menu-list a {
    padding: 12px 15px;
    font-size: 1rem;
  }

  .link-item {
    padding: 12px;
  }

  .info-card {
    padding: 15px;
  }
}

/* 响应式链接网格 */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.link-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: white;
  text-decoration: none;
  color: var(--text-color);
}

.link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
}

.square {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.link-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.link-item:hover .link-text {
  color: var(--primary-color);
}

.external-icon {
  margin-left: 10px;
  color: var(--text-light);
  font-size: 0.8rem;
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-right: 10px;
  color: var(--primary-color);
}

/* 信息卡片样式 */
.info-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 25px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.info-card h3 i {
  margin-right: 10px;
  background-color: rgba(26, 95, 180, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-item {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #eee;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-label {
  font-weight: 600;
  min-width: 120px;
  color: var(--primary-color);
}

.info-content {
  flex: 1;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.fee-table th {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 15px;
  text-align: left;
}

.fee-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.fee-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.fee-table tr:hover {
  background-color: #f0f7ff;
}

.note-box {
  background-color: #f0f7ff;
  /*border-left: 4px solid var(--primary-color);*/
  padding: 15px;
  border-radius: 0 5px 5px 0;
  margin-top: 20px;
}

/* 动画效果 */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-section {
  animation: fadeIn 0.6s ease-out forwards;
}

.info-card {
  animation: fadeIn 0.5s ease-out forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

/* 画像列のコンテナ */
.photo-row {
  display: flex;
  gap: 8px;          /* 画像間の余白（調整可） */
  margin: 1rem 0;    /* 上下の余白 */
}

/* 各画像を均等に伸ばして幅を合わせる */
.photo-row img {
  flex: 1 1 0;
  width: 0;          /* flex-basisで幅を制御 */
  height: auto;
  object-fit: cover; /* 比率を保ちながら領域を埋める */
  border-radius: 4px;
}
