@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  background-color: #f8f9fa;
  min-width: 900px;
  /* 固定枠の高さ分だけ押し下げてコンテンツが隠れないようにする */
  padding-top: 180px;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
}
a {
  color: #4a78bf;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #3260A7;
  text-decoration: underline;
}
.site-wrapper {
  max-width: none;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: none;
}
/* ===== fixed-header：1段目＋ナビをまとめて固定 ===== */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* ===== 1段目 ===== */
.header-row--top {
  background: linear-gradient(135deg, #eaf1fb 0%, #f5f8ff 60%, #ffffff 100%);
  border-bottom: 1px solid #d0e0f5;
  padding: 8px 20px;
}
.header-row--top-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
/* ===== 左側：ロゴ + サイト名 ===== */
.header-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin: 0;
  font-size: inherit;
  line-height: 1;
}
.header-logo-link {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.header-logo-link:hover, .header-logo-link:focus, .header-logo-link:active {
  text-decoration: none;
}
.header-logo-link:hover {
  opacity: 0.8;
}
.header-logo-img {
  display: block;
  height: 65px;
  width: auto;
  object-fit: contain;
  border: none;
}
/* サイト名テキスト */

.header-site-name--main {
  display: block;
  margin: 0;
  line-height: 1.2;
  font-size: 22px;
  font-weight: 700;
  color: #3d79b5;
  letter-spacing: 0.05em;
}
.header-site-name--org {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.03em;
}
/* ===== 右側：審査指定機関テキスト + JIPDECロゴ ===== */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.header-utility-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header-utility-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #4a78bf;
  background-color: #fff;
  border: 1px solid #4a78bf;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.header-utility-btn:hover {
  background-color: #4a78bf;
  color: #fff;
  text-decoration: none;
}
.header-utility-btn:hover svg {
  stroke: #fff;
}
.header-tagline-jipdec {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-tagline {
  text-align: right;
  line-height: 1.5;
}
.header-tagline--sub {
  font-size: 15px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.02em;
  text-align: center;
}
.header-jipdec-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.3s ease;
}
.header-jipdec-link:hover {
  opacity: 0.8;
}
.header-jipdec-link img {
  width: 85px;
  height: 75px;
  object-fit: contain;
  border: none;
}
/* ===== ナビゲーション ===== */
/* fixed-headerの子要素なのでstaticで問題なし */
.main-nav {
  position: static;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: none;
}
.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: space-evenly;
  margin: 0 auto;
}
.nav-list li {
  flex: 1;
  border-right: 1px solid #e0e0e0;
}
.nav-list li:last-child {
  border-right: none;
}
.nav-list a {
  display: block;
  padding: 14px 10px;
  text-align: center;
  color: #666;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-list a:hover {
  background: linear-gradient(135deg, #4a78bf 0%, #6b99e0 100%);
  color: #fff;
  text-decoration: none;
}
.nav-list a.active {
  background: linear-gradient(135deg, #4a78bf 0%, #6b99e0 100%);
  color: #fff;
}
/* ===== アンカーリンクのズレ補正 ===== */
/* ①固定ヘッダー分だけスクロール位置をずらす */
[id] {
  scroll-margin-top: 200px; /* bodyのpadding-topと同じ値 */
}
/* ===== Slideshow ===== */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 1;
  height: auto;
  max-height: 500px;
}
.slideshow .slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.slideshow .slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.slideshow img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* 左右ボタン */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: clamp(34px, 3vw, 46px);
  height: clamp(34px, 3vw, 46px);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1;
  background: rgba(255, 255, 255, 0.85);
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.slide-btn:hover {
  background: rgba(255, 255, 255, 0.98);
}
.slide-btn.prev {
  left: 12px;
}
.slide-btn.next {
  right: 12px;
}
/* ドット */
.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}
.slide-dots button {
  width: clamp(8px, 1.1vw, 10px);
  height: clamp(8px, 1.1vw, 10px);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
}
.slide-dots button.is-active {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.2);
}
.main-container {
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}
.content-layout {
  display: flex;
  gap: 30px;
  padding: 30px;
}
.primary-content {
  flex: 1;
  min-width: 0;
}
.sidebar {
  width: 240px;
  flex-shrink: 0;
}
.section-title {
  font-size: 32px;
  color: #4a78bf;
  border-bottom: 3px solid #4a78bf;
  padding-bottom: 12px;
  margin-bottom: 30px;
  font-weight: 700;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-item {
  border: 2px solid #ddd;
  padding: 20px;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 0;
}
.news-item.featured {
  border-color: #4a78bf;
  border-width: 3px;
}
.news-heading {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: left;
  padding: 0;
  border: none;
}
.news-item.featured .news-heading {
  color: #ff0000;
}
.text-chusanren {
  color: #4280DF;
}
.text-jipdec {
  color: #FD8D32;
}
.news-date-group {
  margin-bottom: 20px;
}
.news-date-group .news-item {
  margin-top: 15px;
  margin-bottom: 0;
}
.news-date-group .news-item:last-child {
  margin-bottom: 0;
}
.news-date {
  display: block;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  font-size: 16px;
  padding: 8px 12px;
  background-color: #f5f5f5;
  border-left: 4px solid #666;
}
.news-date-group .news-date {
  margin-bottom: 0;
}
.news-body {
  font-size: 16px;
  line-height: 1.9;
}
.news-body p {
  margin-bottom: 15px;
}
.news-body p:last-child {
  margin-bottom: 0;
}
.highlight-red {
  color: #ff0000;
  font-weight: 700;
  margin-bottom: 8px !important;
}
.detail-link {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 20px;
  background-color: #6b99e0;
  color: #fff !important;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.3s ease;
}
.detail-link:hover {
  background-color: #4a78bf;
  text-decoration: none;
}
.sidebar-banners {
  background-color: #fff;
  border: 1px solid #CBD6DE;
  padding: 20px 10px;
  border-radius: 4px;
  margin-bottom: 25px;
}
.banner-item {
  text-align: center;
  margin-bottom: 20px;
}
.banner-item:last-child {
  margin-bottom: 0;
}
.banner-item a {
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner-item a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.banner-item img {
  border-radius: 4px;
}
.banner-item p {
  font-size: 12px;
}
.site-footer {
  background: linear-gradient(135deg, #eaf1fb 0%, #f5f8ff 60%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
  color: #333;
  padding: 50px 32px 32px;
  margin-top: 60px;
  max-width: none;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-company-info {
  background-color: #fff;
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.footer-company-info h3 {
  font-size: 18px;
  color: #3260a7;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}
.footer-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-contact-details p {
  margin: 0;
  font-size: 15px;
  color: #555;
}
.footer-contact-details .contact-tel, .footer-contact-details .contact-email {
  font-size: 18px;
  font-weight: 700;
  color: #4a78bf;
}
.footer-contact-details .contact-email a {
  color: #4a78bf;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #4a78bf;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding-left: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-nav a::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #6b99e0;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #6b99e0;
  padding: 5px 10px 5px 30px;
  border-radius: 4px;
}
.copyright {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid #d0e4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
/* ===== Common Subpage Styles ===== */
.single-column {
  max-width: 100%;
}
.single-column .primary-content {
  width: 100%;
  max-width: 100%;
}
.page-title {
  font-size: 32px;
  color: #4a78bf;
  border-bottom: 3px solid #4a78bf;
  padding-bottom: 12px;
  margin-bottom: 30px;
  font-weight: 700;
}
.content-section {
  margin-bottom: 40px;
}
.content-box {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 25px 30px;
  margin-bottom: 25px;
}
.content-heading {
  font-size: 20px;
  color: #4a78bf;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8f4fd;
}
.content-text {
  line-height: 1.9;
  color: #333;
}
.content-text p {
  margin-bottom: 15px;
}
.content-text p:last-child {
  margin-bottom: 0;
}
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.bullet-list li {
  padding-left: 25px;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.8;
}
.bullet-list li::before {
  content: "●";
  position: absolute;
  left: 0;
}
.bullet-list li:last-child {
  margin-bottom: 0;
}
.simple-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.simple-list li {
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
}
.simple-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #333;
}
.numbered-list {
  list-style: decimal;
  padding-left: 25px;
  margin: 15px 0;
}
.numbered-list li {
  margin-bottom: 12px;
  line-height: 1.8;
  padding-left: 10px;
}
.numbered-list li:last-child {
  margin-bottom: 0;
}
.numbered-list .term {
  color: #D15206;
  background-color: #FDE5D0;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: 5px;
}
.numbered-list2 {
  list-style: '（※1）　';
  margin-left: 60px;
}
.numbered-list2 :nth-child(2) {
  list-style: '（※2）　';
}
.numbered-list2 :nth-child(3) {
  list-style: '（※3）　';
  color: #FB0509;
}
.sub-list {
  list-style: none;
  padding-left: 20px;
  margin: 10px 0;
}
.sub-list_a {
  list-style: lower-alpha;
  padding-left: 10px;
}
.note-box {
  background-color: #f9fafb;
  border-left: 4px solid #6b99e0;
  padding: 20px 25px;
  margin: 25px 0;
  border-radius: 4px;
}
.note-box p {
  margin-bottom: 10px;
  line-height: 1.8;
}
.note-box p:last-child {
  margin-bottom: 0;
}
.alert-box {
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px 25px;
  margin: 25px 0;
}
.alert-box.important {
  background-color: #fff5f5;
  border-color: #ff6b6b;
}
.alert-content {
  line-height: 1.8;
}
.content-box.warning {
  border-color: #ff6b6b;
  border-width: 2px;
  background-color: #fffafa;
}
.content-box.warning .content-heading {
  color: #d32f2f;
  border-bottom-color: #ffcdd2;
}
.chart-image {
  text-align: center;
  margin: 25px 0;
  padding: 20px;
  background-color: #f9fafb;
  border-radius: 6px;
}
.chart-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.flow-chart {
  text-align: center;
}
.process-step {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0;
  margin-bottom: 25px;
  overflow: hidden;
}
.step-heading {
  background: linear-gradient(135deg, #4a78bf 0%, #6b99e0 100%);
  color: #fff;
  padding: 15px 25px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}
.step-content {
  padding: 25px;
}
.step-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}
.step-content p:last-child {
  margin-bottom: 0;
}
.important-notice {
  background-color: #fff9e6;
  border-left: 4px solid #ffd93d;
  padding: 15px 20px;
  margin: 15px 0;
  border-radius: 4px;
}
.important-notice p {
  font-weight: 700;
  margin-bottom: 10px;
}
.download-section {
  margin-bottom: 40px;
}
.section-heading {
  font-size: 22px;
  color: #4a78bf;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.heading-icon {
  font-size: 24px;
}
.download-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.download-item {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px 25px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.download-item2 {
  background-color: #fff;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.download-item:hover {
  border-color: #4a78bf;
  box-shadow: 0 2px 8px rgba(74, 120, 191, 0.1);
}
.download-item2:hover {
  border-color: #4a78bf;
  box-shadow: 0 2px 8px rgba(74, 120, 191, 0.1);
}
.download-info {
  flex: 1;
  color: #4a78bf;
  font-weight: 600
}
.download-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a78bf !important;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}
.download-link:hover {
  color: #3260a7 !important;
  text-decoration: underline;
}
.download-list {
  margin-top: 0px;
}
.download-summary {
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 0;
  margin-top: 10px;
}
.download-summary p {
  padding: 20px;
  background-color: #F0F0F0;
}
.btn-download {
  background: linear-gradient(135deg, #4a78bf 0%, #6b99e0 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(74, 120, 191, 0.3);
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(74, 120, 191, 0.4);
}
.file-icon {
  font-size: 20px;
}
.file-name {
  flex: 1;
}
.download-date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.date-label {
  font-size: 12px;
  color: #999;
}
.download-date time {
  font-size: 13px;
  color: #666;
}
.submission-info {
  background-color: #f0f4f8;
  border-radius: 8px;
  padding: 25px 30px;
  margin: 30px 0 30px 0;
}
.subsection-title {
  font-size: 18px;
  color: #4a78bf;
  font-weight: 700;
  margin: 25px 0 15px 0;
}
.info-content {
  margin-bottom: 20px;
  padding: 0px 20px 15px 20px;
  border-radius: 4px;
  border-left: 4px solid #6b99e0;
}
.info-content:last-child {
  margin-bottom: 0;
}
.notice-list {
  margin-bottom: 20px;
  padding: 0px 20px 15px 20px;
  border-radius: 4px;
  border-left: 4px solid #6b99e0;
}
.submission-address {
  background-color: #fff;
  padding: 5px 20px 15px 20px;
  border-radius: 4px;
  border-left: 4px solid #6b99e0;
}
.critical-note {
  color: #d32f2f;
  font-weight: 700;
  padding: 12px 15px;
  background-color: #ffebee;
  border-radius: 4px;
  margin-top: 10px;
}
.link-item {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.link-item:hover {
  border-color: #4a78bf;
  box-shadow: 0 2px 8px rgba(74, 120, 191, 0.1);
}
.link-item.highlight {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f4fd 100%);
  border-color: #4a78bf;
}
.link-title {
  font-size: 18px;
  color: #4a78bf;
  font-weight: 700;
  margin-bottom: 12px;
}
.link-content {
  line-height: 1.8;
}
.link-content p {
  margin-bottom: 10px;
}
.external-link {
  display: inline-block;
  color: #6b99e0 !important;
  font-weight: 600;
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.external-link:hover {
  border-bottom-color: #6b99e0;
  text-decoration: none;
}
.inquiry-window {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}
.inquiry-window.highlight {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f4fd 100%);
  border-color: #4a78bf;
}
.window-title {
  font-size: 18px;
  color: #4a78bf;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8f4fd;
}
.window-content {
  line-height: 1.8;
}
.window-content p {
  margin-bottom: 12px;
}
.window-content p:last-child {
  margin-bottom: 0;
}
.window-content ol {
  padding-left: 20px;
}
.window-content li {
  list-style: disc;
}
.contact-info-box {
  background-color: #f0f4f8;
  border: 2px solid #4a78bf;
  border-radius: 8px;
  padding: 25px 30px;
  margin-top: 30px;
}
.contact-heading {
  font-size: 18px;
  color: #4a78bf;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-details {
  line-height: 1.9;
}
.organization-name {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.contact-address {
  font-style: normal;
}
/* ===== 料金表関連のスタイル ===== */
.price-table-wrapper {
  margin: 30px 0;
}
.table-title {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
}
.price-table thead tr:first-child th {
  background-color: #4a78bf;
  color: #fff;
  font-weight: 700;
  padding: 12px 15px;
  border: 1px solid #3260a7;
  text-align: center;
}
.price-table thead tr:nth-child(2) th {
  background-color: #6b99e0;
  color: #fff;
  font-weight: 700;
  padding: 10px 12px;
  border: 1px solid #4a78bf;
  text-align: center;
  font-size: 14px;
}
.price-table tbody th {
  background-color: #f0f4f8;
  color: #333;
  font-weight: 700;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  text-align: center;
}
.price-table tbody td {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  text-align: right;
  color: #333;
}
.price-table .total-row th, .price-table .total-row td {
  background-color: #e8f4fd;
  font-weight: 700;
  border: 2px solid #4a78bf;
}
.table-responsive {
  overflow-x: auto;
  margin: 20px 0;
}
.price-change-notice {
  background-color: #fff9e6;
  border-left: 4px solid #ffd93d;
  padding: 12px 15px;
  margin: 20px 0 15px 0;
  font-weight: 700;
  color: #d32f2f;
}
.info-box {
  background-color: #f9fafb;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px 25px;
  margin: 25px 0;
}
.info-box p {
  margin-bottom: 10px;
  line-height: 1.8;
}
.info-box p:last-child {
  margin-bottom: 0;
}
.fee-section {
  margin-bottom: 25px;
}
.fee-section:last-child {
  margin-bottom: 0;
}
.fee-title {
  font-size: 18px;
  color: #4a78bf;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8f4fd;
}
.note {
  font-size: 16px;
  margin-top: 10px;
}
/* ===== 現地審査時間表 ===== */
.audit-time-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.audit-time-table thead tr:first-child th {
  background-color: #4a78bf;
  color: #fff;
  font-weight: 700;
  padding: 12px 15px;
  border: 1px solid #3260a7;
  text-align: center;
}
.audit-time-table thead tr:nth-child(2) th {
  background-color: #6b99e0;
  color: #fff;
  font-weight: 700;
  padding: 10px 12px;
  border: 1px solid #4a78bf;
  text-align: center;
  font-size: 14px;
}
.audit-time-table tbody th {
  background-color: #f0f4f8;
  color: #333;
  font-weight: 700;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  text-align: center;
}
.audit-time-table tbody td {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  text-align: center;
  color: #333;
}
/* ===== 事業者規模区分表 ===== */
.scale-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.scale-table thead th {
  background-color: #4a78bf;
  color: #fff;
  font-weight: 700;
  padding: 12px 15px;
  border: 1px solid #3260a7;
  text-align: center;
}
.scale-table tbody th {
  background-color: #f0f4f8;
  color: #333;
  font-weight: 700;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  text-align: center;
}
.scale-table tbody td {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  text-align: center;
  color: #333;
  line-height: 1.6;
}
.scale-table-simple {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.scale-table-simple thead tr:first-child th {
  background-color: #4a78bf;
  color: #fff;
  font-weight: 700;
  padding: 12px 15px;
  border: 1px solid #3260a7;
  text-align: center;
}
.scale-table-simple thead tr:nth-child(2) th {
  background-color: #6b99e0;
  color: #fff;
  font-weight: 700;
  padding: 10px 12px;
  border: 1px solid #4a78bf;
  text-align: center;
  font-size: 14px;
}
.scale-table-simple tbody th {
  background-color: #f0f4f8;
  color: #333;
  font-weight: 700;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  text-align: center;
}
.scale-table-simple tbody td {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  text-align: center;
  color: #333;
}
/* ===== 補足情報ボックス ===== */
.subsection {
  margin: 30px 0;
}
.example-box {
  background-color: #f0f8ff;
  border-left: 4px solid #6b99e0;
  padding: 20px 25px;
  margin: 20px 0;
  border-radius: 4px;
}
.example-box p {
  margin-bottom: 10px;
  line-height: 1.8;
}
.example-box p:last-child {
  margin-bottom: 0;
}
.attention-box {
  background-color: #fff5f5;
  border: 2px solid #ff6b6b;
  border-radius: 6px;
  padding: 20px 25px;
  margin: 25px 0;
}
.attention-box p {
  margin-bottom: 10px;
  line-height: 1.8;
  color: #333;
}
.attention-box p:last-child {
  margin-bottom: 0;
}
/* ===== 再現地調査表 ===== */
.hiragana-index {
  margin: 30px 0;
}
.index-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}
.index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
}
.index-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: #f0f4f8;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.index-button:hover {
  background-color: #4a78bf;
  border-color: #4a78bf;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(74, 120, 191, 0.2);
}
.index-button:hover .index-text {
  color: #fff;
}
.index-text {
  font-size: 20px;
  font-weight: 700;
  color: #4a78bf;
  transition: color 0.3s ease;
}
/* ===== Seminar Page Specific Styles ===== */
.seminar-iframe-wrapper {
  width: 100%;
  margin-top: 20px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
}
.seminar-iframe {
  width: 100%;
  min-height: 550px;
  border: none;
  display: block;
  background-color: #fff;
  margin: 0;
  padding: 0;
}
/* ===== Sitemap Page Specific Styles ===== */
.sitemap-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.sitemap-section {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 25px 30px;
  transition: all 0.3s ease;
}
.sitemap-section:hover {
  border-color: #4a78bf;
  box-shadow: 0 2px 8px rgba(74, 120, 191, 0.1);
}
.sitemap-heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  border: none;
}
.sitemap-heading a {
  color: #4a78bf;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.sitemap-heading a::before {
  content: "▶";
  font-size: 14px;
  transition: transform 0.3s ease;
}
.sitemap-heading a:hover {
  color: #3260a7;
  text-decoration: none;
}
.sitemap-heading a:hover::before {
  transform: translateX(3px);
}
.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}
.sitemap-list li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.sitemap-list li:last-child {
  border-bottom: none;
}
.sitemap-list li::before {
  content: "–";
  position: absolute;
  left: 10px;
  color: #6b99e0;
  font-weight: 700;
}
.sitemap-list a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}
.sitemap-list a:hover {
  color: #4a78bf;
  text-decoration: underline;
  transform: translateX(5px);
}
.intro-box {
  margin-bottom: 20px;
}
.page-top {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}
.page-top a {
  display: inline-block;
  padding: 10px 24px;
  background-color: #f5f5f5;
  color: #666;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.page-top a:hover {
  background-color: #4a78bf;
  color: #fff;
  text-decoration: none;
}
/* ===== 個人情報の取扱いにおける事故等の報告===== */
.link-icon {
  font-size: 20px;
  color: #4a78bf;
}
.step-content {
  flex: 1;
}
/* ===== Incident report section (method2.html #jiko) ===== */
.process-step#jiko .summary-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.process-step#jiko .summary-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}
.process-step#jiko .summary-table th, .process-step#jiko .summary-table td {
  padding: 12px 12px;
  border-bottom: 1px solid #e8f4fd;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.75;
}
.process-step#jiko .summary-table th {
  width: 220px;
  background-color: #f2f7ff;
  color: #2f4e7a;
  font-weight: 700;
}
.process-step#jiko .summary-table tr:last-child th, .process-step#jiko .summary-table tr:last-child td {
  border-bottom: none;
}
/* Inner boxes (definition / handling / review / deadline etc.) */
.process-step#jiko .definition-box, .process-step#jiko .handling-box, .process-step#jiko .result-notice-box, .process-step#jiko .review-box, .process-step#jiko .deadline-box, .process-step#jiko .reporting-method {
  margin: 10px 0;
  padding: 5px 20px 20px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-left: 5px solid #6b99e0;
  border-radius: 6px;
}
.process-step#jiko .law-update-notice {
  margin: 18px 0;
}
.process-step#jiko .definition-box p, .process-step#jiko .handling-box p, .process-step#jiko .review-box p, .process-step#jiko .deadline-box p, .process-step#jiko .law-update-notice p {
  margin-bottom: 10px;
}
.process-step#jiko .definition-box p:last-child, .process-step#jiko .handling-box p:last-child, .process-step#jiko .review-box p:last-child, .process-step#jiko .deadline-box p:last-child, .process-step#jiko .law-update-notice p:last-child {
  margin-bottom: 0;
}
/* Tables in this section */
.process-step#jiko .incident-criteria-table, .process-step#jiko .reporting-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.process-step#jiko .criteria-table, .process-step#jiko .reporting-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}
.process-step#jiko .criteria-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e8f4fd;
  font-size: 17px;
  color: #2f4e7a;
  font-weight: 500;
}
.process-step#jiko .reporting-table th, .process-step#jiko .reporting-table td {
  padding: 12px 14px;
  border: 1px solid #C4C4C4;
  vertical-align: top;
  font-size: 16px;
}
.process-step#jiko .reporting-table thead th {
  background-color: #f2f7ff;
  color: #2f4e7a;
  font-weight: 700;
}
.process-step#jiko .reporting-table {
  table-layout: fixed; /* これが重要 */
}
.process-step#jiko .reporting-table th:nth-child(1), .process-step#jiko .reporting-table td:nth-child(1) {
  width: 33%;
}
.process-step#jiko .reporting-table th:nth-child(2), .process-step#jiko .reporting-table td:nth-child(2) {
  width: 33%;
}
.process-step#jiko .reporting-table th:nth-child(3), .process-step#jiko .reporting-table td:nth-child(3) {
  width: 33%;
}
.reporting-notes {
  font-size: 18px;
}
.report-flow h4 {
  color: #2f4e7a;
  margin-left: 10px;
}
.reporting-notes li {
  margin-left: 10px;
}
.report-flow p {
  margin-left: 20px;
  padding-top: 10px;
}
.btn-space {
  margin-left: 5px;
}
.report-flow {
  background-color: #f9fafb;
  border: 2px solid #B9D1F7;
  padding: 20px 10px;
  margin: 25px;
  border-radius: 10px;
}

/* ===== movie.html===== */
/* ===== Video Embed (2-up large) ===== */
.video-grid {
  display: grid;
  gap: 24px; /* ここを基準に幅計算します */
  margin-top: 18px;
}
/* 2つ並び（大きめ） */
.video-grid--twoup {
  --vg-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vg-gap);
}
/* 合計が「奇数」のとき、最後の1枚を下段中央に（幅は2カラムの1枚分） */
.video-grid--twoup > :nth-last-child(1):nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc((100% - var(--vg-gap)) / 2);
}
.video-card {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 18px;
  transition: all 0.3s ease;
}
.video-card:hover {
  border-color: #4a78bf;
  box-shadow: 0 2px 8px rgba(74, 120, 191, 0.12);
}
.video-title {
  font-size: 16px;
  font-weight: 700;
  color: #2f4e7a;
  margin-bottom: 12px;
}
.video-note {
  font-size: 15px;
  margin: 10px;
  text-align: center;
}
.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-actions {
  margin-top: 14px;
  text-align: left;
}
