:root {
  --color-bg: #ffffff;
  --color-surface: #f8f9fa;
  --color-border: #e5e8eb;
  --color-text-main: #1a1f2e;
  --color-text-sub: #6c757d;
  --color-primary: #3a7078;
  --color-primary-soft: #e0eef0;
  --color-primary-deep: #2a5056;
  --color-accent: #3a7078;
  --color-accent-soft: #e8f2fc;
  --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  --radius-card: 12px;
  --radius-pill: 999px;
  --header-height: 115px;
  --header-height-scrolled: 68px;

  --font-main: "Inter", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text-main);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* Layout */

.section {
  padding: 40px 16px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(1.6rem, 1.2rem + 0.8vw, 2rem);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.section-header p {
  margin: 0;
  color: var(--color-text-sub);
  line-height: 1.8;
  font-size: 0.95rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: stretch;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, height 0.2s ease;
  border-bottom: none;
}

.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 280px;
  right: 0;
  bottom: 0;
  backdrop-filter: none;
  pointer-events: none;
  z-index: -1;
}

.site-header.transparent {
  background: transparent;
  color: var(--color-text-main);
  border-color: var(--color-border);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .7);
  box-shadow: none;
  color: var(--color-text-main);
  border-color: rgba(221, 227, 239, 0.9);
}

.site-header.scrolled .header-logo-section {
  background-color: var(--color-bg);
}

.header-logo-section {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  background-color: transparent;
  z-index: 102;
  justify-content: flex-start;
  transition: background-color 0.25s ease;
  position: relative;
}

.header-inner {
  flex: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 32px;
  padding: 12px 20px 12px 0;
  position: relative;
  z-index: 1;
}

.header-left {
  position: relative;
  z-index: 51;
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding-left: 20px;
}

.header-center,
.header-right {
  display: flex;
  align-items: center;
}

.header-right {
  grid-column: 3;
  justify-self: end;
}

/* Header Logo - ヘッダー内のロゴ */
.header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 24px 16px 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-logo:hover .header-logo-image {
  transform: translateX(4px) scale(1.02);
}

.header-logo-image {
  height: 75px;
  width: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

/* Global nav */

.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  justify-self: center;
}

.language-switch {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  border-radius: 6px;
  padding: 1px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(221, 227, 239, 0.8);
  gap: 0;
}

.site-header.transparent .language-switch {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.site-header.scrolled .language-switch {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(221, 227, 239, 0.9);
}

.lang-btn {
  position: relative;
  padding: 3px 10px;
  border-radius: 5px;
  border: none;
  background: transparent;
  /* color は .site-header.transparent または .site-header.scrolled で設定 */
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.4;
  min-height: auto;
  white-space: nowrap;
  writing-mode: horizontal-tb;
}

.lang-btn:hover:not(.active) {
  background-color: rgba(34, 116, 198, 0.1);
  transform: translateY(-1px);
}

/* トップ時（透明背景）とスクロール時（白背景）の言語スイッチ - 共通スタイル */
.site-header.transparent .lang-btn,
.site-header.scrolled .lang-btn {
  color: var(--color-text-main);
}

/* トップ時（透明背景）の言語スイッチ - active */
.site-header.transparent .lang-btn.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep));
  box-shadow: 0 2px 8px rgba(58, 112, 120, 0.25), 0 1px 3px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  font-weight: 600;
}

.lang-btn.active,
.site-header.scrolled .lang-btn.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep));
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(34, 116, 198, 0.35), 0 1px 3px rgba(0, 0, 0, 0.15);
  font-weight: 600;
}

.global-nav {
  width: 100%;
}

.global-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  border: none;
  border-bottom: 2px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.transparent .global-menu {
  border-color: var(--color-border);
  background: transparent;
  box-shadow: none;
}

.site-header.scrolled .global-menu {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.nav-link {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  padding: 20px 24px;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  border-radius: 0;
  margin: 0;
  text-decoration: none;
  display: inline-block;
  /* 色は .site-header.transparent または .site-header.scrolled で設定 */
}

/* トップ時（透明背景）のスタイル */
.site-header.transparent .nav-link {
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

.site-header.transparent .nav-link:hover {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  transform: none;
  font-weight: 600;
}

/* ドロップダウンメニューが表示されていないときのみopacity: 1を適用 */
.site-header.transparent .global-menu:not(.has-active-dropdown) .nav-link:hover {
  opacity: 1;
}

/* スクロール時（白背景）のスタイル - より高い優先度で適用 */
.site-header.scrolled .nav-link {
  color: var(--color-text-main);
  opacity: 1;
  text-shadow: none;
  font-weight: 600;
}

.site-header.scrolled .nav-link:hover {
  color: var(--color-primary-deep);
  text-shadow: none;
  background: transparent;
  border-bottom-color: var(--color-primary-deep);
  box-shadow: none;
  transform: none;
  font-weight: 600;
}

/* ドロップダウンメニューが表示されていないときのみopacity: 1を適用 */
.site-header.scrolled .global-menu:not(.has-active-dropdown) .nav-link:hover {
  opacity: 1;
}

/* トップ時（透明背景）のドロップダウンホバー */
.site-header.transparent .has-dropdown:hover .nav-link {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* スクロール時（白背景）のドロップダウンホバー - より高い優先度で適用 */
.site-header.scrolled .has-dropdown:hover .nav-link {
  background: transparent;
  border-bottom-color: var(--color-primary-deep);
  box-shadow: none;
  color: var(--color-primary-deep);
  font-weight: 600;
}

/* ドロップダウンメニューが表示されていないとき、または選択されているメニューアイテムのみopacity: 1 */
.site-header.transparent .has-dropdown:not(.is-dimmed):hover .nav-link,
.site-header.transparent .global-menu:not(.has-active-dropdown) .has-dropdown:hover .nav-link {
  opacity: 1;
}

.site-header.scrolled .has-dropdown:not(.is-dimmed):hover .nav-link,
.site-header.scrolled .global-menu:not(.has-active-dropdown) .has-dropdown:hover .nav-link {
  opacity: 1;
}

/* ドロップダウンメニューが表示されているとき、選択されていないメニューアイテムを薄く（すべての状態で） */
.global-menu.has-active-dropdown .has-dropdown.is-dimmed .nav-link,
.global-menu.has-active-dropdown .has-dropdown.is-dimmed:hover .nav-link {
  opacity: 0.35 !important;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

/* 選択されているメニューアイテムは常に不透明（すべての状態で） */
.global-menu.has-active-dropdown .has-dropdown:not(.is-dimmed) .nav-link,
.global-menu.has-active-dropdown .has-dropdown:not(.is-dimmed):hover .nav-link {
  opacity: 1 !important;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}


.nav-link::after {
  display: none;
}

/* Dropdown (PC) */

.has-dropdown {
  position: relative;
}

.dropdown-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--header-height));
  background: var(--color-bg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  border-top: 2px solid var(--color-primary);
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--color-border);
  background-image: none;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-top-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.dropdown-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(58, 112, 120, 0.3) 20%, rgba(58, 112, 120, 0.5) 50%, rgba(58, 112, 120, 0.3) 80%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(58, 112, 120, 0.3);
}

.has-dropdown:hover .dropdown-panel {
  border-top-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.has-dropdown:hover .dropdown-panel::before {
  opacity: 1;
}

.site-header.scrolled .dropdown-panel {
  top: calc(var(--header-height-scrolled) - 1px);
}

.has-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  max-height: 600px;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.dropdown-panel.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* メニューアイテムとドロップダウンの間に見えないブリッジを作成 */
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 8px;
  background: transparent;
  z-index: 100;
  pointer-events: none;
}


.dropdown-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 64px 60px;
  display: grid;
  gap: 0;
  position: relative;
}

.dropdown-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 128px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 20%, rgba(58, 112, 120, 0.4) 50%, rgba(212, 175, 55, 0.3) 80%, transparent 100%);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* デフォルト: 3列グリッド（項目が多い場合） */
.dropdown-inner:not(.two-column):not(.three-column):not(.four-column):not(.single-column) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 40px;
}

/* 2列レイアウト（セクション分けがある場合） */
.dropdown-inner.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
}

/* 3列レイアウト（中程度の項目数） */
.dropdown-inner.three-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 40px;
}

/* 4列レイアウト（少ない項目数） */
.dropdown-inner.four-column {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 32px;
}

/* 1列レイアウト（項目が少ない場合） */
.dropdown-inner.single-column {
  grid-template-columns: 1fr;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.dropdown-column:not(:last-child) {
  border-right: 2px solid rgba(58, 112, 120, 0.2);
  padding-right: 56px;
  margin-right: 56px;
  position: relative;
}

.dropdown-column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(58, 112, 120, 0.3) 20%, rgba(58, 112, 120, 0.4) 50%, rgba(58, 112, 120, 0.3) 80%, transparent 100%);
  box-shadow: 0 0 6px rgba(58, 112, 120, 0.2);
}

.dropdown-inner.two-column .dropdown-column:not(:last-child) {
  padding-right: 48px;
  margin-right: 48px;
}

.dropdown-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-text-main);
  margin: 0 0 24px 0;
  padding: 0 0 16px 0;
  border: none;
  border-bottom: 2px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  position: relative;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: none;
}

.dropdown-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(58, 112, 120, 0.8) 50%, var(--color-primary) 100%);
  opacity: 1;
  border-radius: 0;
  box-shadow: 0 0 8px rgba(58, 112, 120, 0.4);
}

.dropdown-inner a {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-main);
  padding: 18px 28px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  line-height: 1.7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-bottom: 8px;
  min-height: 56px;
  letter-spacing: 0.02em;
  background: var(--color-surface);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  text-shadow: none;
}

.dropdown-inner a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--color-primary) 0%, rgba(58, 112, 120, 0.8) 100%);
  border-radius: 0 2px 2px 0;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  box-shadow: 0 0 6px rgba(58, 112, 120, 0.4);
}

.dropdown-inner a:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary);
  padding-left: 32px;
  transform: translateX(4px);
  font-weight: 600;
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(58, 112, 120, 0.12);
  text-shadow: none;
}

.dropdown-inner a:hover::before {
  height: 70%;
  opacity: 1;
}

/* セクション内のリンク間隔 */
.dropdown-column a {
  margin-bottom: 4px;
  white-space: nowrap;
}

/* セクションタイトル直後のリンク */
.dropdown-column .dropdown-title + a {
  margin-top: 0;
}

/* Header right */

.header-right {
  justify-content: flex-end;
  gap: 8px;
  align-items: flex-end;
  flex-direction: column;
}

/* サイト内検索フォーム */
.site-search-form {
  display: flex;
  align-items: center;
  position: relative;
  width: 200px;
  min-width: 180px;
}

.search-input {
  width: 100%;
  padding: 6px 36px 6px 12px;
  border: 1px solid rgba(221, 227, 239, 0.6);
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  color: var(--color-text-main);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.site-header.transparent .search-input {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.site-header.transparent .search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.site-header.scrolled .search-input {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(221, 227, 239, 0.7);
  color: var(--color-text-main);
}

.search-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(34, 116, 198, 0.1);
  background-color: var(--color-bg);
}

.site-header.transparent .search-input:focus {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-text-main);
}

.search-submit {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: rgba(27, 42, 59, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.site-header.transparent .search-submit {
  color: rgba(255, 255, 255, 0.8);
}

.search-submit:hover {
  background-color: rgba(34, 116, 198, 0.1);
  color: var(--color-primary);
}

.site-header.transparent .search-submit:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.search-submit:active {
  transform: translateY(-50%) scale(0.95);
}

.search-submit svg {
  width: 16px;
  height: 16px;
}

.site-search {
  display: none;
}

.site-header.scrolled .site-search {
  display: none;
}

.site-search input {
  border: none;
  background: transparent;
  color: inherit;
  font-size: 0.8rem;
  width: 160px;
}

.site-search input:focus {
  outline: none;
}

.site-search button {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.search-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid currentColor;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background-color: currentColor;
  transform: translate(7px, 8px) rotate(45deg);
}

.search-toggle {
  display: none;
}

  .hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #3a7078;
  background: var(--color-bg);
  backdrop-filter: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 100;
}

.hamburger.is-open {
  background: var(--color-bg) !important;
  border-color: #3a7078 !important;
}

.site-header.scrolled .hamburger {
  background-color: var(--color-bg);
  border-color: rgba(221, 227, 239, 0.9);
  backdrop-filter: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.site-header.scrolled .hamburger:hover {
  background-color: #f8f9fa;
}

.hamburger span {
  display: block !important;
  width: 22px;
  height: 2.5px;
  border-radius: 2px;
  background-color: #3a7078;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  pointer-events: none;
}

.hamburger span:nth-child(1) {
  top: 11px;
  left: 9px;
}

.hamburger span:nth-child(2) {
  top: 18.75px;
  left: 9px;
}

.hamburger span:nth-child(3) {
  top: 26.5px;
  left: 9px;
}

.hamburger.is-open {
  background: var(--color-bg) !important;
  border-color: #3a7078 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.hamburger.is-open span {
  background-color: #3a7078 !important;
}

.hamburger.is-open span:nth-child(1) {
  top: 18.75px;
  left: 9px;
  transform: rotate(45deg) !important;
  background-color: #3a7078 !important;
  opacity: 1 !important;
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
  visibility: hidden !important;
}

.hamburger.is-open span:nth-child(3) {
  top: 18.75px;
  left: 9px;
  transform: rotate(-45deg) !important;
  background-color: #3a7078 !important;
  opacity: 1 !important;
}

/* Mobile nav */

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height-scrolled);
  left: 0;
  right: 0;
  max-height: calc(100vh - var(--header-height-scrolled));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(20px);
  z-index: 98;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.mobile-nav nav {
  position: relative;
  z-index: 2;
  padding: 16px;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 20px 32px;
  max-width: 100%;
}

.mobile-nav ul li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.is-open ul li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.is-open ul li:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.is-open ul li:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.is-open ul li:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.is-open ul li:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.is-open ul li:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.is-open ul li:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav.is-open ul li:nth-child(7) { transition-delay: 0.35s; }

.mobile-accordion {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-main);
  border-bottom: 1px solid rgba(221, 227, 239, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-accordion::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.mobile-accordion.is-open {
  color: var(--color-primary);
  border-bottom-color: rgba(34, 116, 198, 0.3);
}

.mobile-accordion.is-open::after {
  content: "−";
  transform: none;
  color: var(--color-primary-deep);
}

.mobile-accordion:hover {
  color: var(--color-primary);
  background-color: rgba(34, 116, 198, 0.05);
  border-radius: 8px;
}

/* 各種委員会など、直接リンクのメニュー項目 */
.mobile-nav ul li > a {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-main);
  border-bottom: 1px solid rgba(221, 227, 239, 0.6);
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
}

.mobile-nav ul li > a:hover {
  color: var(--color-primary);
  background-color: rgba(34, 116, 198, 0.05);
  border-radius: 8px;
}

.mobile-panel {
  display: none;
  padding: 8px 0 16px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-panel a {
  display: block;
  padding: 10px 12px;
  font-size: 0.88rem;
  color: var(--color-text-sub);
  border-radius: 6px;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}

.mobile-panel a:hover {
  background-color: rgba(34, 116, 198, 0.08);
  color: var(--color-primary);
  padding-left: 16px;
}

.mobile-section {
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
  padding: 8px 12px;
  background-color: rgba(34, 116, 198, 0.08);
  border-radius: 6px;
}

/* Hero */

.hero {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding: 32px 0 24px;
/*  margin-top: calc(-1 * var(--header-height)); */
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 80px;
  overflow: hidden;
  width: 100%;
}

.hero-large {
  min-height: 60vh;
  padding-bottom: 300px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/kv-2.jpg");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  mix-blend-mode: normal;
  filter: saturate(1.02);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(58, 112, 120, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  z-index: 0;
}

.hero-inner {
  margin: auto;
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  max-width: 1120px;
  padding: 0 20px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(58, 112, 120, 0.2) 0%, rgba(212, 175, 55, 0.2) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, var(--color-accent));
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.8), 0 0 8px rgba(212, 175, 55, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.hero h1 {
  margin: 0 0 16px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-japanese {
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem);
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}

.hero-ffnj {
  display: inline-block;
  font-size: clamp(2rem, 1.8rem + 1.5vw, 3rem);
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
}

.hero-ffnj-word {
  display: inline-block;
  margin-right: 0.3em;
}

.hero-ffnj-word:last-child {
  margin-right: 0;
}

.hero-ffnj-first {
  color: #d6751a;
  text-shadow: 0 2px 8px rgba(214, 117, 26, 0.6);
}

.hero-subtitle {
  max-width: 900px;
  margin: 0 0 12px;
  padding: 0 20px;
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* 下中央寄せバージョン */
.hero-inner.hero-bottom-center {
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
}

/* 右寄せバージョン */
.hero-inner.right-aligned {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-inner.right-aligned .hero-subtitle {
  text-align: right;
}


/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #3a7078, #2a5056);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(7, 41, 87, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(7, 41, 87, 0.55);
}

.btn.ghost {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 0;
  padding: 8px 0;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.ghost::after {
  content: "→";
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.2em;
  line-height: 1;
}

.site-header.scrolled .btn.ghost {
  background-color: transparent;
  border-color: var(--color-border);
  color: var(--color-text-main);
  border-bottom-color: var(--color-text-sub);
}

.btn.ghost:hover {
  background-color: transparent;
  border-bottom-color: var(--color-primary-deep);
  color: var(--color-primary-deep);
  transform: none;
  box-shadow: none;
}

.btn.ghost:hover::after {
  transform: translateX(4px);
}

.btn.outline {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary-deep);
}

.btn.outline:hover {
  background-color: var(--color-primary-soft);
}

.btn.accent {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #9d7a0f 100%);
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4), 0 4px 16px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn.accent:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e4bf47 0%, #c9a42f 50%, #ae8f1f 100%);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5), 0 6px 20px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Cards */

.cards-section {
  background: var(--color-surface);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(1, auto);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--color-surface);
  border-radius: 12px;
  padding: 32px 28px 32px 48px;
  box-shadow: 0 8px 24px rgba(15, 35, 57, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--color-border);
  border-left: none;
  min-height: 120px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:visited {
  color: inherit;
}
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #ed6d2b;
  z-index: 1;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  filter: brightness(0.92) saturate(1.05) contrast(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(27, 42, 59, 0.85) 0%,
    rgba(27, 42, 59, 0.6) 30%,
    rgba(27, 42, 59, 0.3) 60%,
    rgba(27, 42, 59, 0) 100%
  );
  z-index: 2;
  opacity: 1;
}

.card-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-deep) 50%, var(--color-accent) 100%);
  z-index: 3;
  box-shadow: 0 -2px 12px rgba(58, 112, 120, 0.4), 0 0 8px rgba(243, 155, 61, 0.3);
}

.info-card h3 {
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.15rem);
  margin: 0;
  text-align: left;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-text-main);
  position: relative;
  z-index: 3;
  letter-spacing: 0.02em;
  flex: 1;
}

.info-card:hover {
  transform: translateX(8px) translateY(-2px);
  box-shadow: 0 12px 32px rgba(237, 109, 43, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  background: var(--color-surface);
}

.info-card:hover::before {
  width: 8px;
}

.info-card:hover h3 {
  color: #ed6d2b;
}

/* News */

.news-section {
  background: var(--color-bg);
}

.news-list {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.news-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
  color: var(--color-text-main);
  text-decoration: none;
  cursor: pointer;
}

.news-item:visited {
  color: var(--color-text-main);
}

.news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-item:hover::before {
  opacity: 1;
}

.news-item:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.news-item time {
  color: var(--color-text-sub);
  font-feature-settings: "palt";
}

.news-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-title {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* 抜粋（.news-snippet）が無い場合はタイトルの余白を詰める */
.news-content:not(:has(.news-snippet)) .news-title {
  margin-bottom: 0;
}

.news-item::after {
  content: "→";
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--color-primary);
  opacity: 0;
  transition: all 0.3s ease;
  line-height: 1;
}

.news-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

.news-item:hover .news-title {
  color: var(--color-primary);
}

.news-snippet {
  color: var(--color-text-sub);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* News List Page (news.html) */
.news-list-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.news-card {
  display: block;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.news-card:visited {
  color: inherit;
}

.news-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.news-card-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 16px;
}

.news-card time {
  color: var(--color-text-sub);
  font-feature-settings: "palt";
  font-size: 0.9375rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 140px;
}

.news-card-title {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.6;
  flex: 1;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
  color: var(--color-primary);
}

.news-card-snippet {
  color: var(--color-text-sub);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin: 0;
  padding-left: 164px;
}

@media (max-width: 767px) {
  .news-list-page {
    gap: 20px;
  }

  .news-card {
    padding: 24px;
  }

  .news-card-header {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }

  .news-card time {
    min-width: auto;
  }

  .news-card-title {
    font-size: 1rem;
  }

  .news-card-snippet {
    padding-left: 0;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

/* News Page Content Block */
.news-page .content-block {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}

.news-page .content-block h2 {
  margin-bottom: 48px;
}

.news-page .content-block:hover {
  box-shadow: none;
  border-color: transparent;
  transform: none;
}

.news-page .content-block::before {
  display: none;
}

.news-page .content-block:hover::before {
  display: none;
}

@media (max-width: 767px) {
  .news-page .content-block {
    padding: 0;
  }
}

/* News Single Page */
.news-single-header {
  margin-bottom: 40px;
}

.news-single-header time {
  display: block;
  color: var(--color-text-sub);
  font-size: 0.9375rem;
  margin-bottom: 16px;
  font-feature-settings: "palt";
}

.news-single-header h2 {
  font-size: clamp(1.375rem, 1.6vw, 1.75rem);
  font-weight: 700;
  color: #1a2332;
  margin: 0;
  padding-bottom: 12px;
  position: relative;
  line-height: 1.6;
}

.news-single-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
}

.news-single-footer {
  margin-top: 60px;
  text-align: center;
}

.news-back-link {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.news-back-link:hover {
  color: var(--color-primary-deep);
  border-bottom-color: var(--color-primary-deep);
  padding-right: 8px;
}

.news-back-link::after {
  content: "→";
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.news-back-link:hover::after {
  transform: translateX(4px);
}

/* News Post Page */
.news-post {
  max-width: 900px;
  margin: 0 auto;
}

.news-post h2 {
  margin-bottom: 24px;
}

.news-post-breadcrumb {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.news-post-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.news-post-breadcrumb li {
  display: flex;
  align-items: center;
}

.news-post-breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: var(--color-text-sub);
}

.news-post-breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-post-breadcrumb a:hover {
  color: var(--color-primary-deep);
  text-decoration: underline;
}

.news-post-breadcrumb span {
  color: var(--color-text-sub);
}

.news-post-date {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.news-post-date time {
  color: var(--color-text-sub);
  font-size: 0.9375rem;
  font-feature-settings: "palt";
}

.news-post-content {
  margin-bottom: 64px;
}

.news-post-navigation {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 2px solid var(--color-border);
}

.news-post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-post-nav-prev {
  margin-bottom: 8px;
}

.news-post-nav-label {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  font-weight: 500;
}

.news-post-nav-link {
  color: var(--color-text-main);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.news-post-nav-link:hover {
  color: var(--color-primary);
  background: #f3f4f6;
  border-color: var(--color-primary);
  transform: translateX(4px);
}

.news-post-nav-back {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.news-post-nav-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 24px;
  background: var(--color-bg);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.news-post-nav-back-link:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 112, 120, 0.3);
}

.news-post-nav-back-link::before {
  content: "←";
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .news-post {
    max-width: 100%;
  }

  .news-post h2 {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

  .news-post-breadcrumb {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .news-post-breadcrumb ol {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }

  .news-post-date {
    margin-bottom: 24px;
    padding-bottom: 12px;
  }

  .news-post-date time {
    font-size: 0.875rem;
  }

  .news-post-content {
    margin-bottom: 48px;
  }

  .news-post-navigation {
    margin-top: 48px;
    padding-top: 24px;
  }

  .news-post-nav-link {
    font-size: 0.9375rem;
    padding: 10px 14px;
  }

  .news-post-nav-back-link {
    font-size: 0.9375rem;
    padding: 10px 20px;
    width: 100%;
    justify-content: center;
  }
}

/* Annual Report Banner */

.annual-report-banner-section {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
  z-index: 1;
}

.banner-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  align-items: stretch;
}

.annual-report-banner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: linear-gradient(135deg, #ed6d2b 0%, #d45a1f 50%, #c94f15 100%);
  border-radius: 0;
  padding: 0;
  box-shadow: 0 8px 32px rgba(237, 109, 43, 0.4), 0 4px 16px rgba(237, 109, 43, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  height: auto;
  transition: all 0.3s ease;
}

.database-banner {
  background: linear-gradient(135deg, #f39b3d 0%, #e88a2a 50%, #d6751a 100%);
  box-shadow: 0 8px 32px rgba(243, 155, 61, 0.4), 0 4px 16px rgba(243, 155, 61, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.annual-report-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

.annual-report-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.annual-report-banner-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.annual-report-banner-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.annual-report-banner-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  min-width: 0;
  width: 100%;
}

.annual-report-banner-text-container > .annual-report-banner-button {
  align-self: center;
  margin-top: 0;
}

.annual-report-banner-buttons {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.annual-report-banner-button-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 80px;
}

/* 1150px以下でスマホ版のレイアウトに切り替え */
@media (max-width: 1150px) {
  /* タブレット・モバイル版のヘッダー高さを設定 */
  :root {
    --header-height-scrolled: 100px;
  }

  /* メニューの変更（ヒーローと同じタイミングで） */
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    row-gap: 0;
    column-gap: 16px;
    padding: 12px 20px;
  }

  .header-left {
    position: relative;
    height: var(--header-height);
  }

  .header-center {
    display: none;
  }

  .header-right {
    justify-content: flex-end;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    grid-column: 2;
  }

  .site-search-form {
    width: 160px;
    min-width: 140px;
  }

  .dropdown-panel {
    display: none !important;
  }

  .global-menu {
    display: none;
  }

  .hamburger {
    display: inline-flex !important;
    z-index: 103 !important;
    position: fixed;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    gap: 0;
    top: 12px;
    right: 20px;
    background: var(--color-bg);
    border: 1px solid rgba(221, 227, 239, 0.9);
    backdrop-filter: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
  }

  .site-header.scrolled .hamburger {
    background-color: var(--color-bg);
    border-color: rgba(221, 227, 239, 0.9);
    backdrop-filter: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
    display: block;
    background-color: var(--color-text-main);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    pointer-events: none;
  }

  .hamburger span:nth-child(1) {
    top: 12px;
    left: 11px;
  }

  .hamburger span:nth-child(2) {
    top: 20px;
    left: 11px;
  }

  .hamburger span:nth-child(3) {
    top: 28px;
    left: 11px;
  }

  .site-header.transparent .hamburger span,
  .site-header.scrolled .hamburger span {
    background-color: #3a7078;
  }

  .hamburger.is-open {
    background: var(--color-bg);
    border-color: #3a7078;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 104;
    position: fixed;
    top: 12px;
    right: 20px;
  }

  .hamburger.is-open span {
    background-color: #3a7078;
    z-index: 1;
    position: absolute;
  }

  .hamburger.is-open span:nth-child(1) {
    top: 20px;
    left: 11px;
    transform: rotate(45deg);
    background-color: #3a7078;
    opacity: 1;
    visibility: visible;
    display: block;
  }

  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    visibility: hidden;
    display: none;
  }

  .hamburger.is-open span:nth-child(3) {
    top: 20px;
    left: 11px;
    transform: rotate(-45deg);
    background-color: #3a7078;
    opacity: 1;
    visibility: visible;
    display: block;
  }

  /* モバイルメニューの位置・挙動改善 */
  .mobile-nav {
    top: 0;
    max-height: calc(100vh - var(--header-height-scrolled));
    margin-top: var(--header-height-scrolled);
    transform: translateX(-100%);
    z-index: 100;
  }

  .mobile-nav.is-open {
    transform: translateX(0);
  }

  /* モバイルメニューが開いた時もロゴを表示 */
  .site-header .header-logo-section {
    display: flex;
    z-index: 102;
    position: relative;
  }

  .site-search {
    display: none;
  }

  /* ヒーローとバナーの関係をスマホ版と同じに */
  .hero.hero-large {
    flex-direction: column;
    padding-bottom: 20px;
  }

  .annual-report-banner-section {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    padding: 0;
    width: 100%;
    flex-shrink: 0;
    order: 2;
    background: var(--color-bg);
    overflow: hidden;
  }

  .hero-inner {
    order: 1;
  }

  .banner-container {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    align-items: stretch;
  }

  .annual-report-banner {
    padding: 0;
    height: auto;
    border-radius: 0;
  }

  .annual-report-banner-content {
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
    align-items: center;
  }

  .annual-report-banner-text-container {
    width: 100%;
    align-items: center;
  }

  .annual-report-banner-top {
    gap: 0;
    width: 100%;
  }

  .annual-report-banner-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 10px;
    vertical-align: middle;
  }

  .annual-report-banner-icon svg {
    width: 48px;
    height: 48px;
  }

  .annual-report-banner-text h3 {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .annual-report-banner-text p {
    font-size: 0.8rem;
    line-height: 1.6;
    opacity: 0.95;
  }

  .annual-report-banner-buttons {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .annual-report-banner-button-group {
    min-width: 100%;
    width: 100%;
  }

  .annual-report-banner-button {
    padding: 12px 20px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    margin-top: 4px;
  }

  .annual-report-banner-button svg {
    width: 14px;
    height: 14px;
  }

  .annual-report-banner-button-note {
    font-size: 0.7rem;
    white-space: nowrap;
  }
}

.annual-report-banner-button-note {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
}


.annual-report-banner-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  border: none;
  color: #ffffff;
  box-shadow: none;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.annual-report-banner-icon svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.database-banner .annual-report-banner-icon {
  background: transparent;
  border: none;
  box-shadow: none;
}

.database-banner .annual-report-banner-icon img {
  filter: brightness(0.95) contrast(1.2);
}

.annual-report-banner-text {
  color: #ffffff;
  min-width: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
}

.annual-report-banner-text h3 {
  font-size: clamp(0.9rem, 0.8rem + 0.4vw, 1.4rem);
  margin: 0 0 10px 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.5;
  white-space: normal;
  overflow: visible;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.annual-report-banner-description {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 1rem);
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.98);
  opacity: 0.95;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.15);
  white-space: normal;
  overflow: visible;
  font-weight: 400;
  text-align: center;
}

.annual-report-banner-text p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.95;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.annual-report-banner-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  color: #ed6d2b;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(237, 109, 43, 0.3), 0 2px 8px rgba(237, 109, 43, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(237, 109, 43, 0.25);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 4px;
  max-width: 200px;
}

.annual-report-banner-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.annual-report-banner-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.annual-report-banner-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(237, 109, 43, 0.4), 0 4px 12px rgba(237, 109, 43, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #ed6d2b 0%, #d45a1f 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.annual-report-banner-button:hover::before {
  left: 100%;
}

.annual-report-banner-button:active {
  transform: translateY(0) scale(1);
}

.annual-report-banner-button svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.annual-report-banner-button:hover svg {
  transform: translateX(4px);
}

/* CTA */

.cta-section {
  position: relative;
  background: radial-gradient(circle at 0% 0%, #e2f2ff 0, transparent 38%),
              radial-gradient(circle at 120% 0%, #ffe1c4 0, transparent 36%),
              linear-gradient(180deg, #f6f8fb 0, #f3f6ff 100%);
  padding: 72px 16px;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/footer_logo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85;
  z-index: 0;
}

.cta-section .section-inner {
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.cta-buttons .btn {
  min-width: 260px;
  padding: 18px 40px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 12px;
}

.cta-buttons .btn span {
  display: inline-block;
}

.cta-buttons .btn svg {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-buttons .btn.primary {
  box-shadow: 0 12px 32px rgba(7, 41, 87, 0.4), 0 6px 16px rgba(7, 41, 87, 0.3);
}

.cta-buttons .btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(7, 41, 87, 0.5), 0 8px 20px rgba(7, 41, 87, 0.35);
}

.cta-buttons .btn.primary:hover svg {
  transform: translateX(4px);
}

.cta-buttons .btn.outline {
  border-width: 2px;
  background-color: var(--color-bg);
  box-shadow: 0 8px 24px rgba(58, 112, 120, 0.2), 0 4px 12px rgba(58, 112, 120, 0.15);
}

.cta-buttons .btn.outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(58, 112, 120, 0.3), 0 6px 16px rgba(58, 112, 120, 0.2);
  background-color: #e0eef0 !important;
  border-color: #3a7078 !important;
  color: var(--color-primary-deep);
}

.cta-buttons .btn.outline:hover svg {
  transform: translateX(4px);
}

.cta-buttons .btn.accent {
  background: linear-gradient(135deg, #f7a944, #e77e28);
  color: #ffffff;
  border: none;
  box-shadow: 0 12px 32px rgba(190, 96, 21, 0.45), 0 6px 16px rgba(190, 96, 21, 0.3);
  backdrop-filter: none;
  filter: none;
}

.cta-buttons .btn.accent:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f7a944, #e77e28);
  box-shadow: 0 16px 40px rgba(190, 96, 21, 0.55), 0 8px 20px rgba(190, 96, 21, 0.4);
}

.cta-buttons .btn.accent:hover svg {
  transform: translateX(4px);
}

/* Sponsors */

.sponsors-section {
  background-color: var(--color-bg);
}

.sponsor-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--color-bg);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  text-decoration: none;
  flex: 0 0 auto;
}

.sponsor-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.sponsor-logo {
  max-width: 180px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.sponsor-carousel {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px;
  border-radius: var(--radius-card);
  background-color: #f8fbff;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.sponsor-track {
  display: flex;
  gap: 16px;
  animation: sponsor-scroll 32s linear infinite;
}

.sponsor-card {
  min-width: 160px;
  padding: 18px 24px;
  border-radius: 12px;
  background-color: var(--color-bg);
  border: 1px solid rgba(222, 230, 245, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color-text-sub);
}

@keyframes sponsor-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Footer */

.site-footer {
  background: radial-gradient(circle at 0% 0%, #2d5a61 0, #1f3f45 50%, #0f1f23 100%);
  color: #ffffff;
  padding: 64px 16px 24px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: flex-start;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo .logo-mark {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo .logo-mark:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.footer-logo .logo-mark .logo-image {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-logo .logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo .logo-main {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-logo .logo-sub {
  color: rgba(240, 248, 255, 0.95);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-description {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(226, 236, 255, 0.88);
  line-height: 1.9;
}

.footer-contact-info {
  margin: 0;
}

.footer-contact {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(230, 240, 255, 0.95);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.footer-contact strong {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px 28px;
  justify-content: end;
  align-content: start;
  max-width: 100%;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-links a {
  display: inline-block;
  font-size: 0.9rem;
  color: rgba(230, 240, 255, 0.9);
  padding: 6px 0;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
  line-height: 1.5;
  width: fit-content;
  max-width: 100%;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(163, 199, 255, 0.9);
  font-size: 0.78rem;
  margin-right: 6px;
  margin-bottom: 4px;
}

/* Search Results Page */
.search-results-section {
  padding: 80px 0 120px;
  background-color: var(--color-bg);
}

.search-header {
  max-width: 1120px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.search-title {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0 0 12px 0;
  letter-spacing: 0.02em;
}

.search-query {
  font-size: 1rem;
  color: rgba(27, 42, 59, 0.7);
  margin: 0;
}

.search-results-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search-result-item {
  background-color: var(--color-bg);
  border: 1px solid rgba(221, 227, 239, 0.5);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

.search-result-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(34, 116, 198, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.search-result-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-result-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(34, 116, 198, 0.1), rgba(34, 116, 198, 0.05));
  border-radius: 4px;
  width: fit-content;
}

.search-result-title {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.search-result-title a {
  color: var(--color-text-main);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-result-title a:hover {
  color: var(--color-primary);
}

.search-result-title mark {
  background-color: rgba(255, 235, 59, 0.4);
  color: inherit;
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 600;
}

.search-result-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(27, 42, 59, 0.75);
  margin: 0;
}

.search-result-description mark {
  background-color: rgba(255, 235, 59, 0.4);
  color: inherit;
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 500;
}

.search-result-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
}

.search-result-link:hover {
  color: var(--color-primary-deep);
  transform: translateX(4px);
}

.no-results {
  text-align: center;
  padding: 80px 24px;
  color: rgba(27, 42, 59, 0.7);
}

.no-results p {
  font-size: 1.1rem;
  margin: 0 0 12px 0;
}

.no-results-suggestion {
  font-size: 0.95rem;
  color: rgba(27, 42, 59, 0.6);
}

.search-prompt {
  text-align: center;
  padding: 80px 24px;
  color: rgba(27, 42, 59, 0.7);
  font-size: 1.1rem;
}

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid rgba(126, 158, 206, 0.45);
  padding-top: 16px;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-content small {
  font-size: 0.9rem;
  color: rgba(191, 209, 238, 0.9);
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(230, 240, 255, 0.9);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-social-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

/* Responsive */

@media (max-width: 1023px) {
  .hero {
    min-height: 35vh;
    max-height: 25vh;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 50px;
  }

  .hero-large {
    min-height: 40vh;
    max-height: 30vh;
    padding-bottom: 100px;
  }

  /* Tab Navigation */
  .tab-navigation {
    gap: 10px;
    row-gap: 10px;
    column-gap: 10px;
    margin-bottom: 36px;
  }

  .tab-button {
    margin: 0;
    margin-bottom: 5px;
  }

  .section {
    padding: 40px 16px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-left {
    gap: 28px;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-links {
    grid-template-columns: repeat(2, auto);
    gap: 16px 20px;
    justify-content: start;
  }
  
  .footer-links a {
    font-size: 0.85rem;
  }

  .banner-container {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
  }

  .annual-report-banner-content {
    gap: 16px;
    padding: 24px 20px;
  }

  .annual-report-banner-button {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .sponsor-inner {
    gap: 24px;
    padding: 32px 16px;
  }

  .sponsor-item {
    padding: 16px;
  }

  .sponsor-logo {
    max-width: 150px;
    max-height: 70px;
  }
}

@media (max-width: 767px) {
  /* モバイル版のヘッダー高さを設定 */
  :root {
    --header-height-scrolled: 100px;
  }

  /* ヘッダーの背景を白に設定 */
  .site-header {
    background: var(--color-bg) !important;
  }

  .site-header::after {
    backdrop-filter: none !important;
  }

  .site-header.transparent,
  .site-header.scrolled {
    background: var(--color-bg) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  }

  .header-logo-section {
    background-color: var(--color-bg);
    display: flex;
    z-index: 102;
    position: relative;
    padding: 12px 0;
  }

  /* ロゴサイズの縮小 */
  .header-logo-image {
    height: 50px;
    display: block;
    filter:none
  }

  .header-logo {
    padding: 12px 16px 12px 0;
    display: inline-flex;
  }

  .header-logo-section {
    padding: 0 0 0 20px;
  }

  .mobile-nav ul {
    padding: 0 16px;
  }

  /* ヒーローセクションの調整（スマホ） */
  .hero {
    margin-top: 0;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
    min-height: 40vh;
    max-height: 50vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
  }

  /* index.html以外のヒーローの高さを小さく＆h1を画像上に配置 */
  .hero:not(.hero-large) {
    min-height: 25vh;
    max-height: 30vh;
    padding-top: var(--header-height);
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
  }

  .hero:not(.hero-large) .hero-inner {
    margin: 0;
    padding: 0 16px;
  }

  .hero:not(.hero-large) .hero-inner.hero-bottom-center {
    justify-content: center;
    padding-bottom: 0;
  }

  .hero:not(.hero-large) h1 {
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }

  .hero-large {
    min-height: 45vh;
    max-height: 55vh;
    padding-bottom: 60px;
  }

  /* index.html専用のヒーロー調整 */
  .hero.hero-large {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: visible;
    max-height: none;
    min-height: auto;
  }

  .hero.hero-large .hero-inner {
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 0;
  }

  .hero.hero-large h1 {
    text-align: left;
  }

  .hero.hero-large .hero-subtitle {
    text-align: left;
  }

  .hero-inner {
    width: 100%;
    flex-shrink: 0;
    text-align: center;
    align-items: center;
    padding: 0 16px;
    max-width: 100%;
    margin: 0;
  }

  /* 背景画像は共通の .hero::before を使用 */

  .hero-inner.hero-bottom-center {
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
  }

  .hero-kicker {
    font-size: 0.65rem;
    padding: 3px 10px;
    margin-bottom: 12px;
  }

  .hero h1 {
    text-align: center;
    margin-bottom: 38px;
    width: 100%;
    font-size: clamp(1.6rem, 5.2vw, 2rem);
  }

  .hero-japanese {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .hero-ffnj {
    font-size: clamp(1rem, 11vw, 3rem);
    line-height: 1.1;
}

  .hero-subtitle {
    max-width: none;
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: center;
    padding: 0;
  }

  /* バナーのサイズ・文字サイズ調整 */
  .annual-report-banner-section {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    padding: 0;
    width: 100%;
    flex-shrink: 0;
    order: 2;
    background: var(--color-bg);
    overflow: hidden;
  }

  .hero-inner {
    order: 1;
  }

  .banner-container {
    gap: 0;
    margin-top: 0;
    align-items: stretch;
  }

  .annual-report-banner {
    padding: 0;
    height: auto;
    border-radius: 0;
  }

  .annual-report-banner-content {
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
    align-items: center;
  }

  .annual-report-banner-text-container {
    width: 100%;
    align-items: center;
  }

  .annual-report-banner-top {
    gap: 0;
    width: 100%;
  }

  .annual-report-banner-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 10px;
    vertical-align: middle;
  }

  .annual-report-banner-icon svg {
    width: 48px;
    height: 48px;
  }

  .annual-report-banner-text h3 {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .annual-report-banner-text p {
    font-size: 0.8rem;
    line-height: 1.6;
    opacity: 0.95;
  }

  .annual-report-banner-buttons {
    gap: 16px;
  }

  .annual-report-banner-button-group {
    min-width: 100%;
  }

  .annual-report-banner-button {
    padding: 12px 20px;
    font-size: 0.85rem;
    border-radius: 8px;
    margin-top: 4px;
    width: 100%;
  }

  .annual-report-banner-button-note {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .annual-report-banner-button svg {
    width: 14px;
    height: 14px;
  }

  /* card-sectionのサイズ調整 */
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .info-card {
    padding: 16px 12px;
    min-height: auto;
  }

  .info-card h3 {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    padding: 0;
  }

  .news-item {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }

  .news-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cta-buttons .btn {
    width: 100%;
    min-width: auto;
    padding: 14px 28px;
  }

  .sponsor-inner {
    gap: 20px;
    padding: 24px 12px;
  }

  .sponsor-item {
    padding: 12px;
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }

  .sponsor-logo {
    max-width: 100%;
    max-height: 60px;
  }

  .site-footer {
    padding: 48px 16px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 24px;
  }

  .footer-left {
    gap: 24px;
  }

  .footer-logo {
    gap: 12px;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-content: start;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  .footer-contact {
    font-size: 0.85rem;
  }

  .site-search-form {
    width: 140px;
    min-width: 120px;
    order: 1;
  }

  .language-switch {
    order: 2;
  }

  .hamburger {
    order: 3;
  }

  .search-input {
    font-size: 0.75rem;
    padding: 5px 32px 5px 10px;
  }

  .search-submit {
    width: 24px;
    height: 24px;
  }

  .search-submit svg {
    width: 14px;
    height: 14px;
  }

  .search-results-section {
    padding: 60px 0 80px;
  }

  .search-result-item {
    padding: 24px;
  }

  .banner-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .annual-report-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px 16px;
  }

  .annual-report-banner-icon {
    width: 64px;
    height: 64px;
  }

  .annual-report-banner-text h3 {
    font-size: 1.1rem;
  }

  .annual-report-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .annual-report-banner-button {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }
}

@media (min-width: 1151px) {
  .header-center {
    display: flex;
  }

  .global-menu {
    display: flex;
  }

  .hamburger {
    display: none !important;
    display: none;
  }
}

/* 1151px以上でヒーローとバナーをPCレイアウトに固定 */
@media (min-width: 1151px) {
  .hero.hero-large {
    padding-bottom: 300px;
    min-height: 60vh;
  }

  .annual-report-banner-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }
}

@media (min-width: 1440px) {
  .section-inner,
  .header-inner,
  .footer-inner {
    max-width: 1200px;
  }
}

/* About Page Styles */
.content-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 50%, #f5f6f7 100%);
  position: relative;
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58, 112, 120, 0.1), transparent);
}

.content-wrapper {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-main {
  line-height: 2;
  color: var(--color-text-main);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.content-block {
  margin-bottom: 96px;
  background: var(--color-bg);
  padding: 56px 48px;
  border-radius: 20px;
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(58, 112, 120, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
}

.content-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-deep), var(--color-primary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.content-block:hover {
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(58, 112, 120, 0.12);
  transform: translateY(-2px);
}

.content-block:hover::before {
  opacity: 1;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  font-size: clamp(1.375rem, 1.6vw, 1.75rem);
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 48px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(58, 112, 120, 0.15);
  position: relative;
  letter-spacing: -0.03em;
  line-height: 1.3;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}

.content-block h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-deep) 50%, var(--color-primary) 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(58, 112, 120, 0.3);
}

.content-block h3 {
  font-size: clamp(1.2rem, 1.3vw, 1.5rem);
  font-weight: 600;
  color: #1f2937;
  margin-top: 48px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.4;
  position: relative;
  padding-left: 16px;
}

.content-block h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  bottom: 0.3em;
  width: 4px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-deep));
  border-radius: 2px;
}

.content-block h3:first-of-type {
  margin-top: 0;
}

.content-block h4 {
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
  font-weight: 600;
  color: #374151;
  margin-top: 40px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.content-text {
  color: #1f2937;
  font-size: 0.9375rem;
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.content-text p {
  margin-bottom: 24px;
  font-size: calc(1em + 1px);
  color: #374151;
  text-align: justify;
  text-justify: inter-ideograph;
}

.content-text p:last-child {
  margin-bottom: 0;
}

.content-text ul,
.content-text ol {
  margin: 28px 0;
  padding-left: 36px;
}

.content-text li {
  margin-bottom: 14px;
  line-height: 2;
  color: #374151;
  position: relative;
  padding-left: 8px;
  font-size: calc(1em + 1px);
}

.content-text ul li::marker {
  color: var(--color-primary);
  font-weight: 600;
}

.content-text ol li {
  counter-increment: list-counter;
}

.content-text ol {
  counter-reset: list-counter;
}

.vision-mission {
  background: linear-gradient(135deg, 
    rgba(58, 112, 120, 0.06) 0%, 
    rgba(58, 112, 120, 0.03) 50%,
    rgba(58, 112, 120, 0.01) 100%);
  padding: 40px 44px;
  border-radius: 16px;
  margin: 40px 0;
  border-left: 5px solid var(--color-primary);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 2px 8px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(58, 112, 120, 0.1);
  border-right: 1px solid rgba(58, 112, 120, 0.08);
  border-bottom: 1px solid rgba(58, 112, 120, 0.08);
}

.vision-mission::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(58, 112, 120, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vision-mission::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(58, 112, 120, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vision-mission h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-family: "Inter", sans-serif;
}

.vision-mission p {
  margin-bottom: 28px;
  font-style: italic;
  color: #374151;
  line-height: 2;
  position: relative;
  z-index: 1;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
}

.vision-mission p:last-child {
  margin-bottom: 0;
}

.signature {
  text-align: right;
  margin-top: 48px;
  font-weight: 500;
  color: #6b7280;
  font-size: 1rem;
  padding-top: 28px;
  border-top: 1px solid rgba(58, 112, 120, 0.15);
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.info-list {
  margin: 36px 0;
}

.info-list dt {
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  padding-left: 16px;
  border-left: 4px solid var(--color-primary);
  padding-top: 6px;
  padding-bottom: 6px;
  position: relative;
  line-height: 1.6;
}

.info-list dt::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-deep));
  border-radius: 2px;
}

.info-list dt:first-child {
  margin-top: 0;
}

.info-list dd {
  margin-left: 0;
  margin-bottom: 28px;
  padding-left: 24px;
  line-height: 2;
  color: #374151;
}

.info-list dd p {
  margin-bottom: 14px;
  color: #374151;
  text-align: justify;
  text-justify: inter-ideograph;
}

.info-list dd p:last-child {
  margin-bottom: 0;
}

.activity-title {
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 20px;
  display: block;
  color: var(--color-primary);
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  padding-left: 12px;
  position: relative;
}

.activity-title::before {
  content: "◆";
  left: 0;
  color: var(--color-primary);
  font-size: 0.8em;
}

.activity-list {
  margin: 20px 0;
  padding: 24px 36px;
  background: linear-gradient(135deg, rgba(58, 112, 120, 0.03) 0%, rgba(58, 112, 120, 0.01) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.activity-list li {
  margin-bottom: 14px;
  line-height: 2;
  color: #374151;
  position: relative;
  padding-left: 4px;
}

.activity-list li::marker {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1em;
}

/* Table Styles */
.table-responsive {
  overflow-x: auto;
  margin: 32px 0;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.officer-table,
.committee-table,
.reimbursement-table,
.related-materials-table,
.training-info-table {
  font-size: 0.9375rem;
}

.officer-table,
.committee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-bg);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(58, 112, 120, 0.08);
}

.officer-table {
  table-layout: auto;
}

.officer-table thead {
  background: linear-gradient(135deg, 
    var(--color-primary) 0%, 
    var(--color-primary-deep) 50%,
    var(--color-primary) 100%);
  color: white;
  position: relative;
}

.officer-table thead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.officer-table thead th {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.officer-table th,
.officer-table td,
.committee-table th,
.committee-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(229, 232, 235, 0.6);
  vertical-align: middle;
}

.officer-table th {
  font-weight: 600;
  white-space: nowrap;
  font-size: calc(1em + 1px);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.officer-table th:nth-child(1) {
  width: 140px;
  min-width: 140px;
  max-width: 140px;
}

.officer-table th:nth-child(2) {
  width: 180px;
  min-width: 180px;
  max-width: 180px;
}

.officer-table th:nth-child(3) {
  width: auto;
}

.officer-table td:nth-child(1) {
  width: 140px;
  min-width: 140px;
  max-width: 140px;
}

.officer-table td:nth-child(2) {
  width: 180px;
  min-width: 180px;
  max-width: 180px;
}

.officer-table td:nth-child(3) {
  width: auto;
}

.officer-table td {
  color: #374151;
  line-height: 1.8;
  font-size: calc(1em + 1px);
  vertical-align: middle;
}

.officer-table tbody tr {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.officer-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(58, 112, 120, 0.05) 0%, rgba(58, 112, 120, 0.02) 100%);
}

.officer-table tbody tr:last-child td {
  border-bottom: none;
}

.committee-table th,
.committee-table td {
  border-bottom: none;
}

.committee-table tr:last-child th,
.committee-table tr:last-child td {
  border-bottom: none;
}

.committee-table th {
  font-weight: 700;
  color: var(--color-primary);
  width: 200px;
  vertical-align: middle;
  background: rgba(58, 112, 120, 0.05);
  font-size: calc(1em + 1px);
  letter-spacing: 0.03em;
  padding: 20px 24px;
}

.committee-table td {
  vertical-align: middle;
  color: #374151;
  line-height: 1.8;
  font-size: calc(1em + 1px);
  padding: 20px 24px;
}

.committee-table tr {
  transition: background-color 0.2s ease;
}

.committee-table tr:hover {
  background-color: rgba(58, 112, 120, 0.02);
}

.committee-list {
  display: grid;
  gap: 32px;
  margin: 40px 0;
}

.committee-item {
  background: var(--color-bg);
  padding: 40px 44px;
  border-radius: 16px;
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(58, 112, 120, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.committee-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-deep) 100%);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 0 8px rgba(58, 112, 120, 0.2);
}

.committee-item:hover {
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  border-color: rgba(58, 112, 120, 0.15);
}

.committee-item:hover::before {
  transform: scaleY(1);
}

.committee-item h3 {
  font-size: clamp(1.35rem, 1.5vw, 1.65rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 24px;
}

/* 新しいシンプルな委員会一覧 */
.committee-list-simple {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 40px 0;
}

.committee-item-simple {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 8px;
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.committee-item-simple:hover {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.link-list {
  display: grid;
  gap: 24px;
  margin: 32px 0;
}

.link-item {
  background: var(--color-bg);
  padding: 32px 36px;
  border-radius: 16px;
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(58, 112, 120, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.link-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-deep) 100%);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-item:hover {
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  border-color: rgba(58, 112, 120, 0.15);
}

.link-item:hover::before {
  transform: scaleY(1);
}

.link-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.link-item p {
  margin-bottom: 12px;
  color: #2c3e50;
  line-height: 1.8;
}

.link-item a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  font-weight: 500;
}

.link-item a:hover {
  color: var(--color-primary-deep);
  border-bottom-color: var(--color-primary-deep);
}

.download-link {
  margin: 32px 0;
}

.download-link .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* ダウンロードボタンが複数続く場合のグループ */
.download-links-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
}

.download-links-group .download-link {
  margin: 0;
}

.download-links-group a.btn {
  display: inline-flex !important;
  align-items: center;
  gap: 16px !important;
}

/* ダウンロード実行中のボタン状態 */
.download-link.is-downloading,
.download-link.is-downloading .btn {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .content-section {
    padding: 60px 0;
    background: var(--color-bg);
  }

  .content-wrapper {
    padding: 0 20px;
  }

  .content-block {
    margin-bottom: 64px;
    padding: 40px 28px;
    border-radius: 16px;
  }

  .content-block h2 {
    font-size: 1.375rem;
    margin-bottom: 36px;
    padding-bottom: 12px;
  }

  .content-block h2::after {
    width: 100%;
  }

  .content-block h3 {
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 14px;
  }

  .content-block h3::before {
    width: 3px;
  }

  .content-block h4 {
    font-size: 1.125rem;
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .content-text {
    font-size: 0.875rem;
    line-height: 1.85;
  }

  .content-text p {
    margin-bottom: 20px;
    font-size: calc(1em + 1px);
    text-align: left;
  }

  .table-responsive {
    margin: 16px -20px;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
  }

  .officer-table,
  .committee-table {
    font-size: 0.875rem;
    min-width: 100%;
    display: table;
  }

  .officer-table th,
  .officer-table td,
  .committee-table th,
  .committee-table td {
    padding: 12px 8px;
    white-space: normal;
    word-break: break-word;
  }

  /* Table responsive wrapper for better mobile experience */
  .table-responsive table {
    width: 100%;
    min-width: 100%;
  }

  .officer-table {
    display: block;
  }

  .officer-table thead {
    display: none;
  }

  .officer-table tbody,
  .officer-table tr,
  .officer-table td {
    display: block;
    width: 100%;
  }

  .officer-table tr {
    margin-bottom: 16px;
    background: var(--color-bg);
    border-radius: var(--radius-card);
    padding: 16px;
    box-shadow: var(--shadow-soft);
  }

  .officer-table td {
    border: none;
    padding: 8px 0;
    text-align: left;
  }


  .officer-table td:first-child {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
  }

  .committee-table {
    display: block;
  }

  .committee-table tbody,
  .committee-table tr {
    display: block;
  }

  .committee-table tr {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--color-bg);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .committee-table tr:last-child {
    margin-bottom: 0;
  }

  .committee-table th,
  .committee-table td {
    display: block;
    width: 100%;
    padding: 0;
    vertical-align: middle;
  }

  .committee-table th {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .committee-table td {
    padding: 0;
    line-height: 1.8;
    color: #374151;
  }

  .vision-mission {
    padding: 32px 24px;
    margin: 32px 0;
    border-radius: 14px;
  }

  .vision-mission h3 {
    font-size: 0.8125rem;
    margin-bottom: 16px;
  }

  .vision-mission p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .info-list {
    margin: 28px 0;
  }

  .info-list dt {
    font-size: 1.0625rem;
    margin-top: 28px;
    padding-left: 12px;
  }

  .info-list dt::before {
    width: 3px;
  }

  .info-list dd {
    padding-left: 20px;
    margin-bottom: 24px;
  }

  .activity-title {
    font-size: 1.0625rem;
    margin-top: 24px;
    margin-bottom: 16px;
  }

  .activity-list {
    padding: 20px 28px;
    border-radius: 10px;
  }

  .committee-item {
    padding: 32px 28px;
    border-radius: 14px;
  }

  .committee-item h3 {
    font-size: 1.375rem;
    margin-bottom: 24px;
    padding-bottom: 14px;
  }

  /* 新しいシンプルな委員会一覧（モバイル） */
  .committee-list-simple {
    gap: 10px;
    margin: 32px 0;
  }

  .committee-item-simple {
    padding: 16px 20px;
    font-size: 0.9375rem;
    border-left-width: 3px;
  }

  .link-item {
    padding: 28px 28px;
    border-radius: 14px;
  }

  .link-item h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
  }

  .signature {
    margin-top: 40px;
    font-size: 0.9375rem;
    padding-top: 24px;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(58, 112, 120, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  background: var(--color-primary-deep);
  box-shadow: 0 6px 20px rgba(58, 112, 120, 0.4), 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px) scale(1.05);
}

.scroll-to-top:active {
  transform: translateY(0) scale(0.95);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

@media (max-width: 767px) {
  .scroll-to-top {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Tab Navigation */
.tab-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: none;
}

.tab-button {
  padding: 8px 20px;
  background: rgba(58, 112, 120, 0.08);
  border: 1px solid rgba(58, 112, 120, 0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-main);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
}

.tab-button:hover {
  color: var(--color-primary);
  background: rgba(58, 112, 120, 0.12);
  border-color: rgba(58, 112, 120, 0.3);
  transform: translateY(-1px);
}

.tab-button.active {
  color: #ffffff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(58, 112, 120, 0.3);
}

.tab-content {
  margin-top: 0;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Meeting List */
/* Meeting Section */
.meeting-section {
  margin: 40px 0;
  padding: 32px;
  background: var(--color-bg);
  border: 1px solid rgba(58, 112, 120, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.meeting-section:hover {
  border-color: rgba(58, 112, 120, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.meeting-section h3 {
  margin-top: 0;
  margin-bottom: 24px;
}

.meeting-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.meeting-item {
  display: block;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(58, 112, 120, 0.03) 0%, rgba(58, 112, 120, 0.01) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.meeting-item:visited {
  color: inherit;
}

.meeting-item:hover {
  background: linear-gradient(135deg, rgba(58, 112, 120, 0.05) 0%, rgba(58, 112, 120, 0.02) 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateX(4px);
  text-decoration: none;
  color: inherit;
}

.meeting-date {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.meeting-name {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 8px;
}

.meeting-name a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.meeting-name a:hover {
  color: var(--color-primary-deep);
  text-decoration: underline;
}

.meeting-description {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.7;
  margin-top: 8px;
}


/* Meeting Accordion */
.meeting-accordion-wrapper {
  margin: 40px 0;
  padding: 32px;
  background: var(--color-bg);
  border: 1px solid rgba(58, 112, 120, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.meeting-accordion-wrapper:hover {
  border-color: rgba(58, 112, 120, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.meeting-accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.meeting-accordion-button:hover h3 {
  color: var(--color-primary);
}

.meeting-accordion-button h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.3vw, 1.5rem);
  font-weight: 600;
  color: #1f2937;
  letter-spacing: -0.02em;
  line-height: 1.4;
  position: relative;
  padding-left: 20px;
}

.meeting-accordion-button h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 5px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-deep));
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(58, 112, 120, 0.3);
}

.meeting-accordion-button:hover h3 {
  color: var(--color-primary);
}

.meeting-accordion-button.active h3 {
  color: var(--color-primary);
}

.accordion-arrow {
  flex-shrink: 0;
  margin-left: 20px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  width: 28px;
  height: 28px;
  background: rgba(58, 112, 120, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.meeting-accordion-button:hover .accordion-arrow {
  background: rgba(58, 112, 120, 0.2);
}

.meeting-accordion-button.active .accordion-arrow {
  transform: rotate(180deg);
  background: var(--color-primary);
  color: #ffffff;
}

.meeting-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.3s ease;
  padding-top: 0;
}

.meeting-accordion-content.active {
  max-height: 2000px;
  padding-top: 24px;
}

@media (max-width: 767px) {
  .tab-navigation {
    margin-bottom: 28px;
    gap: 12px;
    row-gap: 12px;
    column-gap: 12px;
    flex-wrap: wrap;
  }

  .tab-button {
    padding: 8px 14px;
    font-size: 0.8125rem;
    margin: 0;
    margin-bottom: 5px;
    flex: 0 1 auto;
    min-width: auto;
  }

  .meeting-section {
    margin: 28px 0;
    padding: 20px;
  }

  .meeting-section h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .meeting-section h4 {
    font-size: 1.0625rem;
    margin-bottom: 12px;
  }

  .meeting-accordion-wrapper {
    margin: 28px 0;
    padding: 20px;
  }

  .meeting-list {
    gap: 20px;
    margin: 0;
  }

  .meeting-item {
    padding: 20px 24px;
  }

  .meeting-date {
    font-size: 1rem;
  }

  .meeting-name {
    font-size: 0.9375rem;
  }

  .meeting-description {
    font-size: 0.875rem;
  }

  .meeting-accordion-button {
    padding: 16px 20px;
  }

  .meeting-accordion-button h3 {
    font-size: 1.2rem;
    padding-left: 16px;
  }

  .accordion-arrow {
    width: 24px;
    height: 24px;
    margin-left: 12px;
  }
}

/* Reimbursement Table */
.reimbursement-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-bg);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(58, 112, 120, 0.08);
  table-layout: auto;
}

.reimbursement-table thead {
  background: linear-gradient(135deg, 
    var(--color-primary) 0%, 
    var(--color-primary-deep) 50%,
    var(--color-primary) 100%);
  color: white;
}

.reimbursement-table th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: calc(1em + 1px);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.reimbursement-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(229, 232, 235, 0.6);
  color: #374151;
  line-height: 1.8;
  font-size: calc(1em + 1px);
  vertical-align: middle;
}

.reimbursement-table tbody tr {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reimbursement-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(58, 112, 120, 0.05) 0%, rgba(58, 112, 120, 0.02) 100%);
}

.reimbursement-table tbody tr:last-child td {
  border-bottom: none;
}

.reimbursement-table th:nth-child(1),
.reimbursement-table td:nth-child(1) {
  width: 100px;
  text-align: center;
  white-space: nowrap;
  word-break: normal;
}

.reimbursement-table th:nth-child(2),
.reimbursement-table td:nth-child(2) {
  width: auto;
}

.reimbursement-table th:nth-child(3),
.reimbursement-table td:nth-child(3) {
  width: 120px;
  text-align: right;
  font-weight: 600;
}

/* Requirement List */
.requirement-list {
  margin: 24px 0;
  padding-left: 32px;
  counter-reset: requirement-counter;
}

.requirement-list li {
  margin-bottom: 16px;
  line-height: 2;
  color: #374151;
  position: relative;
  padding-left: 8px;
}

.requirement-list li::marker {
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 767px) {
  .reimbursement-table {
    font-size: 0.875rem;
  }

  .reimbursement-table th,
  .reimbursement-table td {
    padding: 12px 16px;
  }

  .reimbursement-table th:nth-child(1),
  .reimbursement-table td:nth-child(1) {
    width: 60px;
  }

  .reimbursement-table th:nth-child(3),
  .reimbursement-table td:nth-child(3) {
    width: 100px;
  }

  .requirement-list {
    padding-left: 28px;
  }

  .requirement-list li {
    margin-bottom: 14px;
  }
}

/* Related Materials Table */
.related-materials-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-bg);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(58, 112, 120, 0.08);
  table-layout: auto;
}

.related-materials-table thead {
  background: linear-gradient(135deg, 
    var(--color-primary) 0%, 
    var(--color-primary-deep) 50%,
    var(--color-primary) 100%);
  color: white;
}

.related-materials-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: calc(1em + 1px);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.related-materials-table td {
  padding: 0;
  text-align: left;
  border-bottom: 1px solid rgba(229, 232, 235, 0.6);
  color: #374151;
  line-height: 1.6;
  font-size: calc(1em + 1px);
  vertical-align: middle;
}

.related-materials-table tbody tr {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-materials-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(58, 112, 120, 0.05) 0%, rgba(58, 112, 120, 0.02) 100%);
}

.related-materials-table tbody tr:last-child td {
  border-bottom: none;
}

.related-materials-table th:nth-child(1) {
  width: 60px;
  text-align: center;
  font-weight: 600;
  font-size: inherit;
  color: white;
}

.related-materials-table td:nth-child(1) {
  width: 60px;
  text-align: center;
  font-weight: 700;
  color: var(--color-primary);
  font-size: inherit;
}

.related-materials-table th:nth-child(3),
.related-materials-table td:nth-child(3) {
  width: 150px;
  text-align: center;
}

.related-materials-table .download-link {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  margin: 15px 0;
}

.related-materials-table .download-link:hover {
  background: var(--color-primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 112, 120, 0.3);
}


@media (max-width: 767px) {
  .related-materials-table {
    font-size: 0.875rem;
  }

  .related-materials-table th {
    padding: 10px 14px;
  }

  .related-materials-table td {
    padding: 0;
  }

  .related-materials-table th:nth-child(1),
  .related-materials-table td:nth-child(1) {
    width: 50px;
    font-size: 0.875rem;
  }

  .related-materials-table th:nth-child(3),
  .related-materials-table td:nth-child(3) {
    width: 100px;
  }

  .related-materials-table .download-link {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

/* Training Info Table */
.training-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-bg);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(58, 112, 120, 0.08);
  table-layout: auto;
}

.training-info-table th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-size: calc(1em + 1px);
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, 
    rgba(58, 112, 120, 0.1) 0%, 
    rgba(58, 112, 120, 0.05) 100%);
  color: var(--color-primary);
  border-bottom: 1px solid rgba(229, 232, 235, 0.6);
  width: 180px;
  vertical-align: middle;
}

.training-info-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(229, 232, 235, 0.6);
  color: #374151;
  line-height: 1.8;
  font-size: calc(1em + 1px);
  vertical-align: middle;
}

.training-info-table tbody tr:last-child th,
.training-info-table tbody tr:last-child td {
  border-bottom: none;
}

.training-info-table .btn.primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #3a7078;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
}

.training-info-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(58, 112, 120, 0.02) 0%, rgba(58, 112, 120, 0.01) 100%);
}

@media (max-width: 767px) {
  .training-info-table {
    font-size: 0.875rem;
  }

  .training-info-table th,
  .training-info-table td {
    padding: 12px 16px;
  }

  .training-info-table th {
    width: 120px;
    font-size: inherit;
  }
}

/* FAQ Section */
.faq-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(58, 112, 120, 0.15);
}

.faq-tag {
  padding: 8px 20px;
  background: rgba(58, 112, 120, 0.08);
  border: 1px solid rgba(58, 112, 120, 0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-main);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.faq-tag:hover {
  background: rgba(58, 112, 120, 0.12);
  border-color: rgba(58, 112, 120, 0.3);
}

.faq-tag.active {
  color: #ffffff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  font-weight: 600;
}

.faq-categories {
  margin-top: 32px;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category h3 {
  font-size: clamp(1.2rem, 1.3vw, 1.5rem);
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(58, 112, 120, 0.15);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-bg);
  border: 1px solid rgba(58, 112, 120, 0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(58, 112, 120, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(58, 112, 120, 0.02);
}

.faq-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.faq-text {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.6;
}

.faq-arrow {
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-item.active .faq-question {
  background: rgba(58, 112, 120, 0.03);
  border-bottom: 1px solid rgba(58, 112, 120, 0.12);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 24px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .faq-filter-tags {
    margin-bottom: 32px;
    padding-bottom: 16px;
  }

  .faq-tag {
    padding: 6px 16px;
    font-size: 0.8125rem;
  }

  .faq-category {
    margin-bottom: 36px;
  }

  .faq-category h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .faq-question {
    padding: 16px 20px;
    gap: 12px;
  }

  .faq-text {
    font-size: 0.875rem;
  }

  .faq-item.active .faq-answer {
    padding: 16px 20px;
  }

  .faq-answer p {
    font-size: 0.875rem;
  }
}

/* New FAQ Structure Styles */
.section-contents {
  margin-top: 40px;
}

.faq-toc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(58, 112, 120, 0.15);
}

.bl_sec--faq-toc {
  background: var(--color-bg);
  border: 1px solid rgba(58, 112, 120, 0.12);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  width: 100%;
}

.faq-toc__parent {
  font-size: clamp(1.2rem, 1.3vw, 1.5rem);
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(58, 112, 120, 0.15);
}

.faq-toc__parent-text {
  color: var(--color-primary);
}

.faq-toc__children {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-toc__child {
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
  background: rgba(58, 112, 120, 0.08);
  border: 1px solid rgba(58, 112, 120, 0.2);
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-toc__child:hover {
  background: rgba(58, 112, 120, 0.12);
  color: var(--color-primary);
  border-color: rgba(58, 112, 120, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.faq-articles {
  margin-top: 40px;
}

.bl_sec {
  margin-bottom: 0;
}

.bl_h3 {
  font-size: clamp(1.2rem, 1.3vw, 1.5rem);
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(58, 112, 120, 0.15);
}

.faq_inner {
  margin-top: 24px;
}

.faq_h4 {
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
  font-weight: 600;
  color: #374151;
  margin-top: 40px;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--color-primary);
  scroll-margin-top: 120px;
}

.faq_h4:first-of-type {
  margin-top: 0;
}

.faq-flex_wrap {
  background: var(--color-bg);
  border: 1px solid rgba(58, 112, 120, 0.12);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-flex_wrap:hover {
  border-color: rgba(58, 112, 120, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-flex {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-flex--question {
  padding: 20px 24px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-flex--question:hover {
  background: rgba(58, 112, 120, 0.02);
}

.faq-flex_item01 {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  vertical-align: middle;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.faq-icon--q {
  background: var(--color-primary);
  color: #ffffff;
}

.faq-icon--a {
  background: rgba(58, 112, 120, 0.1);
  color: var(--color-primary);
}

.faq-flex_item01 p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.7;
  flex: 1;
  vertical-align: middle;
}

.faq-flex_item02 {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transform: rotate(180deg);
}

.faq-flex_wrap.active .faq-flex_item02 {
  transform: rotate(0deg);
}

.icon-arrow {
  width: 21.733px;
  height: 14.138px;
  display: block;
}

.faq-flex--answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(-10px);
}

.faq-flex--answer .faq-icon {
  margin-top: 2px;
  vertical-align: middle;
}

.faq-flex_wrap.active .faq-flex--answer {
  max-height: 1000px;
  padding: 20px 24px;
  border-top: 1px solid rgba(58, 112, 120, 0.12);
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.faq__answer-text {
  flex: 1;
  vertical-align: middle;
}

.faq__answer-text p {
  margin: 0 0 12px 0;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.8;
}

.faq__answer-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .faq-toc {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 32px;
  }

  .bl_sec--faq-toc {
    padding: 20px;
  }

  .faq-toc__parent {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }

  .faq-toc__child {
    font-size: 0.8125rem;
    padding: 8px 16px;
  }

  .bl_sec {
    margin-bottom: 0;
  }

  .bl_h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }

  .faq_h4 {
    font-size: 1.125rem;
    margin-top: 32px;
    margin-bottom: 20px;
    padding-left: 12px;
  }

  .faq-flex--question {
    padding: 16px 20px;
    gap: 12px;
  }

  .faq-flex_item01 {
    gap: 12px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }

  .faq-flex_item01 p {
    font-size: 0.875rem;
  }

  .faq-flex_wrap.active .faq-flex--answer {
    padding: 16px 20px;
  }

  .faq__answer-text {
    margin-left: 0;
  }

  .faq__answer-text p {
    font-size: 0.875rem;
  }
}

/* Documents Page Styles */
.documents-intro {
  text-align: center;
  margin: 0px 0 48px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(58, 112, 120, 0.05) 0%, rgba(58, 112, 120, 0.02) 100%);
  border-radius: 16px;
  border: 1px solid rgba(58, 112, 120, 0.1);
}

.documents-intro p {
  font-size: clamp(1.125rem, 1.2vw, 1.25rem);
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.8;
  margin: 0;
}

/* Documents Tab Navigation */
.documents-tab-navigation {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.documents-tab-button {
  flex: 1;
  padding: 18px 36px;
  background: rgba(58, 112, 120, 0.08);
  border: 2px solid rgba(58, 112, 120, 0.15);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.documents-tab-button:first-child {
  border-right: 1px solid rgba(58, 112, 120, 0.15);
}

.documents-tab-button:last-child {
  border-left: 1px solid rgba(58, 112, 120, 0.15);
}

.documents-tab-button h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1.3vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-sub);
  transition: color 0.3s ease;
}

.documents-tab-button:hover {
  background: rgba(58, 112, 120, 0.12);
  border-color: rgba(58, 112, 120, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.documents-tab-button:hover h2 {
  color: var(--color-primary);
}

.documents-tab-button.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(58, 112, 120, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  z-index: 1;
}

.documents-tab-button.active h2 {
  color: #ffffff;
}

.documents-tab-button.active + .documents-tab-button {
  border-left-color: var(--color-primary);
}

.documents-tab-panel {
  display: none;
  border: 2px solid rgba(58, 112, 120, 0.15);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 40px;
  background: var(--color-bg);
  box-shadow: 0 4px 16px rgba(58, 112, 120, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-top: -2px;
}

.documents-tab-panel.active {
  display: block;
  border-color: var(--color-primary);
  border-top: 2px solid var(--color-primary);
}

/* Download Button */
.download-button-wrapper {
  margin-top: 24px;
}

.download-button {
  display: inline-block;
  padding: 12px 32px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.download-button:hover {
  background: var(--color-primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 112, 120, 0.3);
}

/* Text Red */
.text-red {
  color: #dc3545 !important;
}

.content-text .text-red {
  color: #dc3545 !important;
}

/* Signup Banner Button */
.signup-banner-button-wrapper {
  margin-top: 24px;
}

.signup-banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ed6d2b 0%, #d45a1f 100%);
  color: #ffffff;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(237, 109, 43, 0.4), 0 2px 8px rgba(237, 109, 43, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.signup-banner-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.signup-banner-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(237, 109, 43, 0.5), 0 4px 12px rgba(237, 109, 43, 0.4);
  background: linear-gradient(135deg, #d45a1f 0%, #c04f1a 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.signup-banner-button:hover::before {
  left: 100%;
}

.signup-banner-button:active {
  transform: translateY(0) scale(1);
}

/* Documents Accordion */
.documents-accordion-section {
  margin-bottom: 32px;
  border: 1px solid rgba(58, 112, 120, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg);
}

.documents-accordion-button {
  width: 100%;
  padding: 24px 32px;
  background: var(--color-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  text-align: left;
}

.documents-accordion-button:hover {
  background: rgba(58, 112, 120, 0.03);
}

.documents-accordion-button.active {
  background: rgba(58, 112, 120, 0.05);
  border-bottom: 1px solid rgba(58, 112, 120, 0.1);
}

.documents-accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.documents-accordion-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 112, 120, 0.1);
  border-radius: 8px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.documents-accordion-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.documents-accordion-icon svg,
.documents-accordion-icon img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(15%) saturate(1000%) hue-rotate(150deg) brightness(0.9);
}

.documents-accordion-button h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.3vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-main);
}

.documents-accordion-plus {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 112, 120, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  text-align: center;
}

.documents-accordion-plus span {
  display: inline-block;
  transform: translateY(-1px);
  line-height: 1;
}

.documents-accordion-button.active .documents-accordion-plus {
  background: var(--color-primary);
  color: #ffffff;
}

.documents-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 32px;
}

.documents-accordion-content.active {
  max-height: 5000px;
  padding: 32px;
}

/* Documents Subsection */
.documents-subsection {
  margin-bottom: 32px;
}

.documents-subsection:last-child {
  margin-bottom: 0;
}

.documents-subsection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.documents-subsection-header h4 {
  margin: 0;
  font-size: clamp(1.125rem, 1.2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-main);
}

.modal-trigger {
  padding: 8px 20px;
  background: rgba(58, 112, 120, 0.1);
  border: 1px solid rgba(58, 112, 120, 0.2);
  border-radius: 20px;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.modal-trigger:hover {
  background: rgba(58, 112, 120, 0.15);
  border-color: rgba(58, 112, 120, 0.3);
}

/* Documents Download List */
.documents-download-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.documents-download-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(58, 112, 120, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(58, 112, 120, 0.08);
  transition: all 0.3s ease;
}

.documents-download-list li:hover {
  background: rgba(58, 112, 120, 0.05);
  border-color: rgba(58, 112, 120, 0.15);
}

.documents-download-list li span {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--color-text-main);
}

.documents-download-list .download-link {
  padding: 8px 20px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin: 0;
}

.documents-download-list .download-link:hover {
  background: var(--color-primary-deep);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(58, 112, 120, 0.3);
}

.documents-download-list .download-link.external-link {
  background: rgba(58, 112, 120, 0.1);
  color: var(--color-primary);
}

.documents-download-list .download-link.external-link:hover {
  background: rgba(58, 112, 120, 0.15);
}

/* Documents Link List */
.documents-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.documents-link-list li {
  margin-bottom: 12px;
}

.documents-link-list a {
  color: var(--color-primary);
  text-decoration: underline;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.documents-link-list a:hover {
  color: var(--color-primary-deep);
}

.documents-note {
  font-size: 0.75rem;
  color: var(--color-text-sub);
  font-style: italic;
  text-align: right;
  margin-top: 24px;
  display: block;
}

.content-text .documents-note {
  text-align: right;
  font-size: 0.75rem;
}

/* KPI注釈 */
.kpi-note {
  font-size: 0.9em;
  font-weight: 700;
  color: #666;
  display: block;
  margin-top: 4px;
}

/* テキスト右寄せ */
.text-right {
  text-align: right !important;
}

.content-text .text-right {
  text-align: right !important;
}

/* 下線付きリンク */
.text-underline {
  text-decoration: underline;
}

/* 関連リンクセクション */
.documents-related-links {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

.documents-related-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: #666;
  margin-bottom: 12px;
}

.documents-related-links .documents-link-list {
  margin-top: 0;
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.image-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 10001;
  background: var(--color-bg);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.image-modal-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 8px;
}

.image-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: var(--color-text-main);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.image-modal-close:hover {
  background: var(--color-bg);
  transform: scale(1.1);
}

/* Mobile Responsive for Documents */
@media (max-width: 767px) {
  .documents-intro {
    margin: 32px 0 40px;
    padding: 24px;
  }

  .documents-intro p {
    font-size: 1rem;
  }

  .documents-tab-navigation {
    flex-direction: column;
    gap: 0;
    border-bottom: none;
  }

  .documents-tab-button {
    flex: 1;
    padding: 16px 24px;
    border-radius: 12px 12px 0 0;
    border: 2px solid rgba(58, 112, 120, 0.15);
    border-bottom: none;
    margin-bottom: 0;
  }

  .documents-tab-button:first-child {
    border-right: 2px solid rgba(58, 112, 120, 0.15);
  }

  .documents-tab-button:last-child {
    border-left: 2px solid rgba(58, 112, 120, 0.15);
  }

  .documents-tab-button:hover {
    transform: translateY(0);
  }

  .documents-tab-button.active {
    border-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    transform: translateY(0);
  }

  .documents-tab-panel {
    padding: 32px 24px;
    border-radius: 0 0 12px 12px;
    margin-top: 0;
  }

  .documents-tab-panel.active {
    border-top: 2px solid var(--color-primary);
  }

  .documents-tab-button h2 {
    font-size: 1.125rem;
  }

  .documents-accordion-button {
    padding: 20px 24px;
  }

  .documents-accordion-header {
    gap: 12px;
  }

  .signup-banner-button {
    padding: 12px 20px;
    font-size: 0.85rem;
    border-radius: 8px;
    width: 100%;
    justify-content: center;
  }

  .documents-accordion-icon {
    width: 44px;
    height: 44px;
  }

  .documents-accordion-icon img {
    width: 28px;
    height: 28px;
  }

  .documents-accordion-button h3 {
    font-size: 1.125rem;
  }

  .documents-accordion-content {
    padding: 0 24px;
  }

  .documents-accordion-content.active {
    padding: 24px;
  }

  .documents-subsection-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .documents-download-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .documents-download-list li span {
    width: 100%;
  }

  .documents-download-list .download-link {
    width: 100%;
    text-align: center;
  }

  .image-modal-content {
    max-width: 95%;
    padding: 16px;
  }

  .image-modal-close {
    top: -32px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}

/* ============================================
   Enhanced Responsive Design
   ============================================ */

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Content Section */
  .content-section {
    padding: 80px 0;
  }

  .content-wrapper {
    padding: 0 32px;
  }

  .content-block {
    padding: 48px 36px;
    margin-bottom: 56px;
  }

  .content-block h2 {
    font-size: clamp(1.375rem, 1.6vw, 1.75rem);
    margin-bottom: 32px;
  }

  .content-block h3 {
    font-size: clamp(1.2rem, 1.3vw, 1.5rem);
    margin-top: 36px;
    margin-bottom: 18px;
  }

  .content-block h4 {
    font-size: clamp(1.125rem, 1.2vw, 1.375rem);
    margin-top: 28px;
    margin-bottom: 14px;
  }

  .content-text {
    font-size: 0.9375rem;
    line-height: 1.9;
  }

  /* Tables */
  .officer-table,
  .committee-table,
  .reimbursement-table,
  .related-materials-table {
    font-size: 0.875rem;
  }

  .officer-table th,
  .officer-table td,
  .committee-table th,
  .committee-table td,
  .reimbursement-table th,
  .reimbursement-table td,
  .related-materials-table th,
  .related-materials-table td {
    padding: 14px 16px;
  }

  /* Tab Navigation */
  .tab-navigation {
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tab-button {
    padding: 8px 18px;
    font-size: 0.875rem;
    margin-right: 0;
    margin-bottom: 0;
  }

  /* Meeting Sections */
  .meeting-section,
  .meeting-accordion-wrapper {
    padding: 28px;
    margin: 28px 0;
  }

  .meeting-item {
    padding: 20px 24px;
  }

  /* FAQ */
  .faq-toc {
    gap: 24px;
    margin-bottom: 36px;
  }

  .faq-toc__parent {
    font-size: 1.25rem;
  }

  .faq-toc__child {
    font-size: 0.875rem;
    padding: 8px 18px;
  }

  .faq-flex--question {
    padding: 16px 20px;
    gap: 12px;
  }

  .faq-flex_item01 {
    gap: 12px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }

  .faq-flex_item01 p {
    font-size: 0.875rem;
  }

  .faq-flex_wrap.active .faq-flex--answer {
    padding: 16px 20px;
  }

  .faq__answer-text {
    margin-left: 0;
  }

  .faq__answer-text p {
    font-size: 0.875rem;
  }

  .faq-flex_wrap.active .faq-flex--answer {
    padding: 18px 22px;
  }

  /* Documents */
  .documents-intro {
    padding: 28px;
    margin: 0 0 40px;
  }

  .documents-tab-button {
    padding: 16px 28px;
  }

  .documents-tab-button h2 {
    font-size: 1.25rem;
  }

  .documents-tab-panel {
    padding: 40px 32px;
  }

  .documents-accordion-button {
    padding: 20px 28px;
  }

  .documents-accordion-content.active {
    padding: 28px;
  }

  /* News */
  .news-card {
    padding: 28px;
  }

  .news-card-header {
    gap: 20px;
  }

  .news-card-snippet {
    padding-left: 140px;
  }

  /* Banner Buttons */
  .annual-report-banner-buttons {
    gap: 12px;
  }

  .annual-report-banner-button {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }

  .signup-banner-button {
    padding: 14px 28px;
    font-size: 0.9375rem;
  }

  /* Hero Section */
  .hero {
    min-height: 55vh;
    padding-top: 90px;
  }

  .hero-large {
    min-height: 55vh;
    padding-bottom: 280px;
  }
}

/* Mobile (max-width: 767px) - Enhanced */
@media (max-width: 767px) {
  /* Content Section */
  .content-section {
    padding: 60px 0;
  }

  .content-wrapper {
    padding: 0 16px;
  }

  .content-block {
    padding: 32px 20px;
    margin-bottom: 48px;
    border-radius: 12px;
  }

  .content-block h2 {
    font-size: 1.375rem;
    margin-bottom: 28px;
    padding-bottom: 10px;
  }

  .content-block h3 {
    font-size: 1.2rem;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-left: 12px;
  }

  .content-block h3::before {
    width: 3px;
  }

  .content-block h4 {
    font-size: 1.125rem;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .content-text {
    font-size: 0.875rem;
    line-height: 1.85;
  }

  .content-text p {
    margin-bottom: 16px;
    font-size: calc(1em + 1px);
  }

  /* Tables - Mobile Optimization */
  .table-responsive {
    margin: 12px -16px;
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .officer-table,
  .committee-table,
  .reimbursement-table,
  .related-materials-table {
    font-size: 0.8125rem;
    min-width: 100%;
  }

  .reimbursement-table th,
  .reimbursement-table td {
    padding: 10px 12px;
    word-break: break-word;
    white-space: normal;
  }

  .reimbursement-table th:nth-child(1),
  .reimbursement-table td:nth-child(1) {
    width: 50px;
    min-width: 50px;
  }

  .reimbursement-table th:nth-child(3),
  .reimbursement-table td:nth-child(3) {
    width: 80px;
    min-width: 80px;
  }

  .related-materials-table th,
  .related-materials-table td {
    padding: 12px 8px;
    word-break: break-word;
    white-space: normal;
  }

  .related-materials-table th:nth-child(1),
  .related-materials-table td:nth-child(1) {
    width: 50px;
    min-width: 50px;
  }

  .related-materials-table th:nth-child(3),
  .related-materials-table td:nth-child(3) {
    width: 120px;
    min-width: 120px;
  }

  .related-materials-table .download-link {
    padding: 6px 12px;
    font-size: 0.75rem;
    margin: 12px 0;
  }

  /* Tab Navigation */
  .tab-navigation {
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Meeting Sections */
  .meeting-section,
  .meeting-accordion-wrapper {
    padding: 20px;
    margin: 24px 0;
    border-radius: 12px;
  }

  .meeting-list {
    gap: 16px;
  }

  .meeting-item {
    padding: 16px 20px;
  }

  .meeting-date {
    font-size: 0.9375rem;
  }

  .meeting-name {
    font-size: 0.875rem;
  }

  .meeting-description {
    font-size: 0.8125rem;
  }

  .meeting-accordion-button {
    padding: 14px 16px;
  }

  .meeting-accordion-button h3 {
    font-size: 1.2rem;
    padding-left: 14px;
  }

  .accordion-arrow {
    width: 22px;
    height: 22px;
    margin-left: 10px;
  }

  /* FAQ */
  .faq-toc {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .bl_sec--faq-toc {
    padding: 16px;
  }

  .faq-toc__parent {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }

  .faq-toc__child {
    font-size: 0.8125rem;
    padding: 6px 14px;
  }

  .bl_h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .faq_h4 {
    font-size: 1.125rem;
    margin-top: 28px;
    margin-bottom: 16px;
    padding-left: 10px;
  }

  .faq-flex--question {
    padding: 14px 16px;
    gap: 10px;
  }

  .faq-flex_item01 {
    gap: 10px;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }

  .faq-flex_item01 p {
    font-size: 0.8125rem;
  }

  .faq-flex_wrap.active .faq-flex--answer {
    padding: 14px 16px;
  }

  .faq__answer-text {
    margin-left: 0;
  }

  .faq__answer-text p {
    font-size: 0.8125rem;
  }

  /* Documents */
  .documents-intro {
    padding: 20px;
    margin: 0 0 32px;
  }

  .documents-intro p {
    font-size: 1rem;
  }

  .documents-tab-navigation {
    flex-direction: row;
    gap: 0;
    margin-bottom: 0;
  }

  .documents-tab-button {
    padding: 12px 16px;
    border-radius: 12px 12px 0 0;
    flex: 1;
  }

  .documents-tab-button:first-child {
    border-right: 1px solid rgba(58, 112, 120, 0.15);
  }

  .documents-tab-button:last-child {
    border-left: 1px solid rgba(58, 112, 120, 0.15);
  }

  .documents-tab-button h2 {
    font-size: clamp(0.95rem, 3vw, 1.125rem);
    line-height: 1.4;
  }

  .documents-tab-panel {
    padding: 24px 16px;
    border-radius: 0 0 12px 12px;
    margin-top: 0;
  }

  .content-block {
    padding: 32px 20px;
    margin-bottom: 48px;
  }

  /* Language Switcher - Mobile */
  .language-switcher {
    margin-bottom: 20px !important;
    justify-content: flex-end !important;
  }

  .language-switcher > div {
    padding: 3px !important;
    gap: 8px !important;
  }

  .lang-label {
    font-size: 12px !important;
    padding: 3px 6px !important;
  }

  .lang-switch {
    width: 46px !important;
    height: 24px !important;
  }

  .lang-slider {
    border-radius: 24px !important;
  }

  .lang-slider-handle {
    height: 16px !important;
    width: 16px !important;
    left: 4px !important;
    bottom: 4px !important;
  }

  .lang-slider-handle[style*="translateX(22px)"] {
    transform: translateX(22px) !important;
  }

  .documents-accordion-button {
    padding: 16px 20px;
  }

  .documents-accordion-header {
    gap: 10px;
  }

  .documents-accordion-icon {
    width: 40px;
    height: 40px;
  }

  .documents-accordion-icon img {
    width: 24px;
    height: 24px;
  }

  .documents-accordion-button h3 {
    font-size: 1.0625rem;
  }

  .documents-accordion-content {
    padding: 0 20px;
  }

  .documents-accordion-content.active {
    padding: 20px;
  }

  .documents-subsection-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .documents-download-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }

  .documents-download-list .download-link {
    width: 100%;
    text-align: center;
  }

  .download-button {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  /* News */
  .news-list-page {
    gap: 16px;
  }

  .news-card {
    padding: 20px;
  }

  .news-card-header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }

  .news-card time {
    min-width: auto;
    font-size: 0.875rem;
  }

  .news-card-title {
    font-size: 0.9375rem;
  }

  .news-card-snippet {
    padding-left: 0;
    font-size: 0.8125rem;
    line-height: 1.7;
  }

  .news-page .content-block h2 {
    margin-bottom: 36px;
  }

  .news-post {
    padding: 0 16px;
  }

  .news-post h2 {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }

  .news-post-breadcrumb {
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .news-post-breadcrumb ol {
    font-size: 0.75rem;
    flex-wrap: wrap;
  }

  .news-post-date {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  .news-post-date time {
    font-size: 0.8125rem;
  }

  .news-post-content {
    margin-bottom: 40px;
  }

  .news-post-content p {
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .news-post-navigation {
    margin-top: 40px;
    padding-top: 20px;
    gap: 12px;
  }

  .news-post-nav-link {
    padding: 12px 16px;
    font-size: 0.875rem;
  }

  .news-post-nav-back {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  /* Banner Buttons */
  .annual-report-banner-content {
    padding: 20px 16px;
  }

  .annual-report-banner-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .annual-report-banner-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.875rem;
    justify-content: center;
  }

  .annual-report-banner-button-note {
    font-size: 0.75rem;
    margin-top: 8px;
  }

  .signup-banner-button-wrapper {
    margin-top: 20px;
  }

  .signup-banner-button {
    padding: 12px 20px;
    font-size: 0.8125rem;
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-bottom-content small {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  /* Section */
  .section {
    padding: 32px 16px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 4vw, 1.875rem);
  }

  /* Cards */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Footer */
  .site-footer {
    padding: 40px 16px 16px;
  }

  .footer-inner {
    gap: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  /* Image Modal */
  .image-modal-content {
    max-width: 95%;
    padding: 12px;
  }

  .image-modal-close {
    top: -28px;
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  /* Requirement List */
  .requirement-list {
    padding-left: 24px;
  }

  .requirement-list li {
    margin-bottom: 12px;
    font-size: 0.875rem;
  }

  /* Download Links */
  .download-link {
    margin: 20px 0;
  }

  .download-link .btn {
    padding: 12px 20px;
    font-size: 0.875rem;
  }
}

/* Tablet Responsive (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Hero Section */
  .hero {
    min-height: 35vh;
    max-height: 25vh;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 50px;
  }

  .hero-large {
    min-height: 40vh;
    max-height: 30vh;
    padding-bottom: 100px;
  }

  /* index.html専用のヒーロー調整 - タブレット版 */
  .hero.hero-large {
    padding-bottom: 300px;
    min-height: 60vh;
    max-height: none;
    overflow: visible;
  }

  /* ヒーロー直下にバナーを配置（スマホレイアウトと同様） */
  .annual-report-banner-section {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 40px;
    padding: 0;
    width: 100%;
    flex-shrink: 0;
    background: var(--color-bg);
    overflow: hidden;
  }

  .hero-inner {
    padding: 0 24px;
  }

  .hero-japanese {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
  }

  .hero-ffnj {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    padding: 0 24px;
  }

  /* Content */
  .content-wrapper {
    padding: 0 32px;
  }

  .content-block {
    padding: 48px 40px;
    margin-bottom: 80px;
  }

  .content-block h2 {
    font-size: 1.5rem;
  }

  .content-block h3 {
    font-size: 1.3rem;
  }

  /* Tab Navigation */
  .tab-navigation {
    gap: 10px;
    row-gap: 10px;
    column-gap: 10px;
    margin-bottom: 36px;
  }

  .tab-button {
    padding: 7px 18px;
    font-size: 0.84375rem;
    margin: 0;
    margin-bottom: 5px;
  }

  .documents-tab-navigation {
    gap: 0;
  }

  .documents-tab-button {
    padding: 16px 28px;
  }

  .documents-tab-button h2 {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  }

  .documents-tab-panel {
    padding: 36px 32px;
  }

  /* Language Switcher */
  .language-switcher {
    margin-bottom: 20px;
  }

  .language-switcher > div {
    padding: 3px;
  }

  .lang-label {
    font-size: 13px;
    padding: 3px 6px;
  }

  .lang-switch {
    width: 48px;
    height: 26px;
  }

  .lang-slider-handle {
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
  }

  /* Tables */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .officer-table,
  .committee-table {
    font-size: 0.9rem;
  }

  .officer-table th,
  .officer-table td,
  .committee-table th,
  .committee-table td {
    padding: 14px 12px;
  }

  /* Accordion */
  .documents-accordion-button {
    padding: 18px 24px;
  }

  .documents-accordion-header {
    gap: 12px;
  }

  .documents-accordion-icon {
    width: 44px;
    height: 44px;
  }

  .documents-accordion-button h3 {
    font-size: 1.125rem;
  }

  /* Cards */
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  /* Footer */
  .footer-inner {
    gap: 36px;
  }

  /* Meeting Section */
  .meeting-section {
    margin: 32px 0;
    padding: 28px;
  }

  .meeting-section h3 {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  .meeting-section h4 {
    font-size: 1.125rem;
    margin-bottom: 14px;
  }

  .meeting-accordion-wrapper {
    margin: 32px 0;
    padding: 28px;
  }

  /* Language Switcher - Tablet */
  .language-switcher {
    margin-bottom: 20px !important;
  }

  .language-switcher > div {
    padding: 3px !important;
    gap: 8px !important;
  }

  .lang-label {
    font-size: 13px !important;
    padding: 3px 6px !important;
  }

  .lang-switch {
    width: 48px !important;
    height: 26px !important;
  }

  .lang-slider {
    border-radius: 26px !important;
  }

  .lang-slider-handle {
    height: 18px !important;
    width: 18px !important;
    left: 4px !important;
    bottom: 4px !important;
  }
}

/* Member Registration Form */
.member-registration-form {
  max-width: 800px;
  margin: 40px 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-main);
  font-size: 0.9375rem;
}

.form-label.required::after {
  content: " *";
  color: #dc3545;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(58, 112, 120, 0.1);
}

.form-control select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-note {
  font-size: 0.875rem;
  color: var(--color-text-sub);
  margin-top: 8px;
  margin-bottom: 0;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9375rem;
}

.form-checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.member-form-message {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.member-form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.member-form-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 767px) {
  .member-registration-form {
    margin: 32px 0;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-control {
    padding: 10px 14px;
    font-size: 0.9375rem;
  }
}

/* Small Mobile (max-width: 480px) */



