@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-padding-top: var(--header-height, 80px);
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: calc(var(--header-height, 80px) + 50px);
  }
}

body {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: inherit;
}

h1 {
  font-size: 2rem !important;
}

h2 {
  font-size: 1.5rem !important;
}

h3,
h4,
h5,
h6 {
  font-size: inherit;
}

p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}
button:focus {
  outline: none;
}

input:focus,
textarea:focus {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

[hidden],
template {
  display: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #333;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  background: #fff;
  color: black;
  font-size: inherit;
}
@media (min-width: 768px) {
  body {
    padding-top: 120px;
  }
}

header:not(main header) {
  background: linear-gradient(135deg, #4a90e2 0%, #2c5aa0 100%);
  color: white;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: position 0.2s ease;
}
body.normal header:not(main header) {
  background: #fff;
  color: black;
}
body.dark header:not(main header) {
  background: black;
  color: white;
}
body.blue header:not(main header) {
  background: #001f4d;
  color: #fff8c6;
}
@media (min-width: 768px) {
  header:not(main header) {
    z-index: 1030;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
}
header:not(main header).fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
}

.header-top {
  background: #fff;
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
body.dark .header-top {
  background: black;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
body.blue .header-top {
  background: #001f4d;
  border-bottom-color: rgba(255, 248, 198, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1220px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767px) {
  .header-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-width: 0;
  width: min(100%, 350px);
}
@media (max-width: 767px) {
  .header-left {
    min-height: 30px;
  }
}
.header-left h1 {
  width: min(100%, 350px);
  margin: 0;
}
@media (max-width: 767px) {
  .header-left h1 {
    width: auto;
    max-width: 250px;
    position: fixed;
    z-index: 1000;
    top: 10px;
  }
}
.header-left h1 img {
  max-width: 85%;
  width: 100%;
  transform: scale(1.2);
}

.header-logo {
  padding-block: 1px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.language-selector .lang-link {
  color: #003366;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}
.language-selector .lang-link:hover {
  background-color: rgba(0, 51, 102, 0.1);
}

.search-area {
  display: flex;
  align-items: center;
  min-height: 2.8rem;
}
.search-area form {
  display: flex;
  align-items: center;
}
.search-area .search-input {
  padding-block: 0.4rem;
  padding-inline: 5px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  font-size: 0.875rem;
  width: 200px;
  height: 2.8rem;
}
body.dark .search-area .search-input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}
body.dark .search-area .search-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
body.dark .search-area .search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
body.blue .search-area .search-input {
  background: rgba(255, 248, 198, 0.1);
  border-color: rgba(255, 248, 198, 0.3);
  color: #fff8c6;
}
body.blue .search-area .search-input::-moz-placeholder {
  color: rgba(255, 248, 198, 0.6);
}
body.blue .search-area .search-input::placeholder {
  color: rgba(255, 248, 198, 0.6);
}
.search-area .search-btn {
  padding-block: 0.4rem;
  padding-inline: 5px;
  background: #fff;
  border: 1px solid #ccc;
  border-left: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 0.875rem;
  height: 2.8rem;
}
.search-area .search-btn:hover {
  background: #f8f9fa;
}
body.dark .search-area .search-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}
body.dark .search-area .search-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
body.blue .search-area .search-btn {
  background: rgba(255, 248, 198, 0.1);
  border-color: rgba(255, 248, 198, 0.3);
  color: #fff8c6;
}
body.blue .search-area .search-btn:hover {
  background: rgba(255, 248, 198, 0.2);
}

.header-settings {
  background: #f8f9fa;
  color: black;
  padding-block: 2px;
  padding-inline: 5px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #dee2e6;
  font-weight: 400;
  height: 2.8rem;
}
@media (max-width: 767px) {
  .header-settings {
    height: auto;
    gap: 0.5rem;
    padding: 1%;
  }
  .header-settings .setting-group {
    gap: 0.3rem;
  }
  .header-settings .setting-group label {
    font-size: 0.875rem;
  }
  .header-settings .setting-group select,
  .header-settings .setting-group button {
    font-size: 0.875rem;
    padding-block: 2px;
    padding-inline: 5px;
  }
}
body.dark .header-settings {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}
body.blue .header-settings {
  background: rgba(255, 248, 198, 0.1);
  color: #fff8c6;
  border-color: rgba(255, 248, 198, 0.3);
}
.header-settings .setting-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  white-space: nowrap;
}
.header-settings .setting-group label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #495057;
}
body.dark .header-settings .setting-group label {
  color: white;
}
body.blue .header-settings .setting-group label {
  color: #fff8c6;
}
.header-settings .setting-group select {
  padding-block: 2px;
  padding-inline: 5px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background: #fff;
  color: black;
  font-size: 0.875rem;
  font-weight: 400;
  min-width: 80px;
}
body.dark .header-settings .setting-group select {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}
body.blue .header-settings .setting-group select {
  background: rgba(255, 248, 198, 0.1);
  border-color: rgba(255, 248, 198, 0.3);
  color: #fff8c6;
}
.header-settings .setting-group button {
  padding-block: 2px;
  padding-inline: 5px;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  border: 1px solid #0066cc;
  background: #0066cc;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.header-settings .setting-group button:hover {
  background: #004499;
}

.main-nav {
  background: white;
  position: relative;
}
body.dark .main-nav {
  background: transparent;
}
body.blue .main-nav {
  background: transparent;
}

.nav-container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 767px) {
  .nav-container .desktop-nav {
    display: none;
  }
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.3rem;
  position: fixed;
  right: 1rem;
  top: 1rem;
  z-index: 1001;
}
.hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: black;
  transition: all 0.2s ease;
  border-radius: 2px;
}
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
@media (max-width: 767px) {
  .hamburger-btn {
    display: flex;
  }
}

.nav-list {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 0;
  justify-content: center;
}
.nav-list.desktop-nav {
  margin: 0 auto;
}

.nav-item {
  position: relative;
  width: 18.5%;
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-link,
.nav-list a.nav-link,
.nav-item a.nav-link {
  display: block;
  color: black;
  text-decoration: none;
  padding-block: calc(0.5rem + 3px);
  padding-inline: 0.5rem;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.15s ease;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.nav-link[href="#"],
.nav-list a.nav-link[href="#"],
.nav-item a.nav-link[href="#"] {
  cursor: default;
}
.nav-link[href*="/"]:not([href="#"]),
.nav-list a.nav-link[href*="/"]:not([href="#"]),
.nav-item a.nav-link[href*="/"]:not([href="#"]) {
  cursor: pointer;
}
.nav-link:hover,
.nav-list a.nav-link:hover,
.nav-item a.nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 0.5;
}
body.dark .nav-link,
body.dark .nav-list a.nav-link,
body.dark .nav-item a.nav-link {
  color: white;
  border-right-color: rgba(255, 255, 255, 0.1);
}
body.dark .nav-link:hover,
body.dark .nav-list a.nav-link:hover,
body.dark .nav-item a.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
body.blue .nav-link,
body.blue .nav-list a.nav-link,
body.blue .nav-item a.nav-link {
  color: #fff8c6;
  border-right-color: rgba(255, 248, 198, 0.1);
}
body.blue .nav-link:hover,
body.blue .nav-list a.nav-link:hover,
body.blue .nav-item a.nav-link:hover {
  background-color: rgba(255, 248, 198, 0.1);
}
.nav-link .arrow,
.nav-list a.nav-link .arrow,
.nav-item a.nav-link .arrow {
  display: inline-block;
  transition: transform 0.15s ease;
}
.nav-link .arrow::after,
.nav-list a.nav-link .arrow::after,
.nav-item a.nav-link .arrow::after {
  content: "▶";
  display: inline-block;
}

.nav-item:first-child .nav-link,
.nav-list .nav-item:first-child a.nav-link,
.nav-item:first-child a.nav-link {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-item:hover .nav-link .arrow {
  transform: rotate(90deg);
}

.mega-menu {
  position: fixed;
  top: auto;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 1000;
  padding: 3rem 0;
  width: 90vw;
  max-width: 1024px;
  overflow-y: auto;
  overflow-x: hidden;
}
.mega-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
body.normal .mega-menu {
  background: #fff;
}
body.dark .mega-menu {
  background: black;
  border-color: rgba(255, 255, 255, 0.3);
}
body.blue .mega-menu {
  background: #001f4d;
  border-color: rgba(255, 248, 198, 0.3);
}

.mega-menu-content {
  display: flex;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mega-category {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.mega-category h3 {
  color: #003366;
  margin: 0 0 1.5rem 0;
  font-size: 1.25rem;
  border-bottom: 2px solid #003366;
  padding-bottom: 0.5rem;
  white-space: nowrap;
}
.mega-category h3 a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}
.mega-category h3 a:hover {
  color: #4a90e2;
  transform: translateX(4px);
}
body.dark .mega-category h3 {
  color: white;
  border-bottom-color: white;
}
body.dark .mega-category h3 a:hover {
  color: #4a90e2;
}
body.blue .mega-category h3 {
  color: #fff8c6;
  border-bottom-color: #fff8c6;
}
body.blue .mega-category h3 a:hover {
  color: #fff8c6;
  opacity: 0.8;
}

.sub-categories {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sub-category {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}
.sub-category-title {
  font-weight: bold;
  color: #333;
  margin-bottom: 0.8rem;
  font-size: 16px;
  border-left: 3px solid #003366;
  padding-left: 0.5rem;
}
body.dark .sub-category-title {
  color: white;
  border-left-color: white;
}
body.blue .sub-category-title {
  color: #fff8c6;
  border-left-color: #fff8c6;
}
.sub-category-items {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: start;
}
.sub-category-items.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1.5rem;
}
.sub-category-items.single-column {
  grid-template-columns: 1fr;
}
.sub-category-items a {
  color: #666;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  line-height: 1.4;
  transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sub-category-items a:hover {
  color: #003366;
  background-color: #f0f8ff;
  text-decoration: none;
  transform: translateX(2px);
}
body.dark .sub-category-items a {
  color: rgba(255, 255, 255, 0.8);
}
body.dark .sub-category-items a:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
body.blue .sub-category-items a {
  color: rgba(255, 248, 198, 0.8);
}
body.blue .sub-category-items a:hover {
  color: #fff8c6;
  background-color: rgba(255, 248, 198, 0.1);
}
.sub-category-items .access-map-placeholder {
  width: 100%;
  max-width: 280px;
  height: 200px;
  background: #e0e0e0;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
  margin-top: 0.5rem;
  box-sizing: border-box;
}
body.dark .sub-category-items .access-map-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}
body.blue .sub-category-items .access-map-placeholder {
  background: rgba(255, 248, 198, 0.1);
  border-color: rgba(255, 248, 198, 0.3);
  color: rgba(255, 248, 198, 0.6);
}
@media (max-width: 767px) {
  .sub-category-items .access-map-placeholder {
    max-width: 100%;
    height: 150px;
    font-size: 1rem;
  }
}

.sub-category-wide {
  min-width: unset;
  max-width: none;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  overflow-y: auto;
  z-index: 1000;
}
.mobile-nav.active {
  display: block;
}
body.dark .mobile-nav {
  background: black;
  border-top-color: rgba(255, 255, 255, 0.3);
}
body.blue .mobile-nav {
  background: #001f4d;
  border-top-color: rgba(255, 248, 198, 0.3);
}

.mobile-nav-item {
  border-bottom: 1px solid #eee;
}
body.dark .mobile-nav-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
body.blue .mobile-nav-item {
  border-bottom-color: rgba(255, 248, 198, 0.1);
}
.mobile-nav-item h3 {
  margin: 0;
  padding: 1rem 2rem;
  background: #f8f9fa;
  color: #003366;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-item h3:hover {
  background: #e9ecef;
}
body.dark .mobile-nav-item h3 {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
body.dark .mobile-nav-item h3:hover {
  background: rgba(255, 255, 255, 0.2);
}
body.blue .mobile-nav-item h3 {
  background: rgba(255, 248, 198, 0.1);
  color: #fff8c6;
}
body.blue .mobile-nav-item h3:hover {
  background: rgba(255, 248, 198, 0.2);
}
.mobile-nav-item h3 .accordion-toggle {
  font-size: 1.25rem;
  font-weight: bold;
  transition: all 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.mobile-nav-item h3 .page-link {
  display: none;
  font-size: 0.875rem;
  font-weight: normal;
  color: #4a90e2;
  text-decoration: none;
  margin-left: auto;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: rgba(74, 144, 226, 0.1);
  transition: all 0.2s ease;
}
.mobile-nav-item h3 .page-link:hover {
  background: rgba(74, 144, 226, 0.2);
  color: rgb(34.3857142857, 117.3857142857, 214.6142857143);
}
body.dark .mobile-nav-item h3 .page-link {
  color: #4a90e2;
  background: rgba(74, 144, 226, 0.2);
}
body.dark .mobile-nav-item h3 .page-link:hover {
  background: rgba(74, 144, 226, 0.3);
}
body.blue .mobile-nav-item h3 .page-link {
  color: #fff8c6;
  background: rgba(255, 248, 198, 0.2);
}
body.blue .mobile-nav-item h3 .page-link:hover {
  background: rgba(255, 248, 198, 0.3);
}
.mobile-nav-item.active h3 .accordion-toggle {
  transform: rotate(45deg);
}
.mobile-nav-item.active h3 .page-link {
  display: inline-block;
}
.mobile-nav-item .mobile-sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}
body.dark .mobile-nav-item .mobile-sub-menu {
  background: rgba(0, 0, 0, 0.5);
}
body.blue .mobile-nav-item .mobile-sub-menu {
  background: rgba(0, 31, 77, 0.5);
}
.mobile-nav-item.active .mobile-sub-menu {
  max-height: 500px;
}
.mobile-nav-item .mobile-sub-menu li {
  border-bottom: 1px solid #f0f0f0;
}
body.dark .mobile-nav-item .mobile-sub-menu li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
body.blue .mobile-nav-item .mobile-sub-menu li {
  border-bottom-color: rgba(255, 248, 198, 0.1);
}
.mobile-nav-item .mobile-sub-menu li:last-child {
  border-bottom: none;
}
.mobile-nav-item .mobile-sub-menu li > strong,
.mobile-nav-item .mobile-sub-menu li > p {
  display: block;
  padding: 0.75rem 2.5rem;
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #666;
}
body.dark .mobile-nav-item .mobile-sub-menu li > strong,
body.dark .mobile-nav-item .mobile-sub-menu li > p {
  color: rgba(255, 255, 255, 0.8);
}
body.blue .mobile-nav-item .mobile-sub-menu li > strong,
body.blue .mobile-nav-item .mobile-sub-menu li > p {
  color: rgba(255, 248, 198, 0.8);
}
.mobile-nav-item .mobile-sub-menu li a {
  display: block;
  padding: 0.75rem 2.5rem;
  color: #666;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.mobile-nav-item .mobile-sub-menu li a:hover {
  background: #f8f9fa;
  color: #003366;
  padding-left: 3rem;
}
.mobile-nav-item .mobile-sub-menu li:first-child a {
  padding: 0.75rem 2.5rem;
}
body.dark .mobile-nav-item .mobile-sub-menu li:first-child a {
  color: rgba(255, 255, 255, 0.8);
}
body.dark .mobile-nav-item .mobile-sub-menu li:first-child a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
body.blue .mobile-nav-item .mobile-sub-menu li:first-child a {
  color: rgba(255, 248, 198, 0.8);
}
body.blue .mobile-nav-item .mobile-sub-menu li:first-child a:hover {
  background: rgba(255, 248, 198, 0.1);
  color: #fff8c6;
}
.mobile-nav-item .mobile-sub-menu li .access-map-placeholder {
  width: calc(100% - 5rem);
  margin: 0.5rem 2.5rem;
  height: 150px;
  background: #e0e0e0;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
  box-sizing: border-box;
}
body.dark .mobile-nav-item .mobile-sub-menu li .access-map-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}
body.blue .mobile-nav-item .mobile-sub-menu li .access-map-placeholder {
  background: rgba(255, 248, 198, 0.1);
  border-color: rgba(255, 248, 198, 0.3);
  color: rgba(255, 248, 198, 0.6);
}

footer {
  background: #1e4d72;
  color: white;
  padding: 2rem 0;
  position: relative;
}
footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: block !important;
}
footer .footer-left h3 {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: bold;
}
footer .footer-left h3 br {
  display: none;
}
@media (max-width: 767px) {
  footer .footer-left h3 br {
    display: block;
  }
}
footer .footer-left h3 span {
  font-size: 1rem;
  font-weight: normal;
  margin-left: 0.5rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  footer .footer-left h3 span {
    margin-left: 0;
  }
}
footer .footer-left .office-info {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  footer .footer-left .office-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
footer .footer-left .office-info .office h4 {
  margin: 0 0 0.5rem 0;
  font-size: 16px;
  font-weight: bold;
}
footer .footer-left .office-info .office p {
  margin: 0.25rem 0;
  font-size: 1rem;
  line-height: 1.4;
}
footer .footer-left .office-info .office p a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
footer .footer-left .office-info .office p a:hover {
  opacity: 0.3;
  transform: translateY(-2px);
}
footer .footer-left .office-info .footer-character {
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-left .office-info .footer-character img {
  display: block;
  max-width: 100%;
  height: auto;
}
footer .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  height: 200px;
}
@media (max-width: 767px) {
  footer .footer-right {
    text-align: left;
  }
}
footer .footer-bottom {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  footer .footer-bottom {
    text-align: left;
  }
}
footer .footer-bottom .footer-links {
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  footer .footer-bottom .footer-links {
    margin-bottom: 5rem;
  }
}
footer .footer-bottom .footer-links a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
  font-size: 1rem;
  transition: opacity 0.15s ease;
}
footer .footer-bottom .footer-links a:hover {
  opacity: 0.8;
}
footer .footer-bottom .footer-links a:first-child {
  margin-left: 0;
}
footer .footer-bottom .copyright {
  margin: 0;
  font-size: 1rem;
  opacity: 0.8;
}
footer .scroll-to-top {
  position: fixed;
  bottom: 1rem;
  margin-left: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #4a90e2;
  border: 2px solid white;
  color: white;
  cursor: pointer;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.2s ease;
}
@media (max-width: 600px) {
  footer .scroll-to-top {
    bottom: 6rem !important;
  }
}
footer .scroll-to-top:hover {
  background: #357abd;
  transform: translateY(-2px);
}
footer .scroll-to-top span {
  line-height: 1;
}

@media print {
  header {
    display: none !important;
  }
}
.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .site-main {
    padding: 1rem;
  }
}

.content-area {
  width: 100%;
}

.post,
.page {
  margin-bottom: 2rem;
}

.entry-header {
  margin-bottom: 1.5rem;
}

.entry-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .entry-title {
    font-size: 1.5rem;
  }
}

.entry-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}
.entry-meta time {
  display: inline-block;
  width: 140px;
  min-width: 140px;
  flex-shrink: 0;
}

.entry-content {
  line-height: 1.8;
}
.entry-content p {
  margin-bottom: 1rem;
}
.entry-content h2 {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 2rem 0 1rem 0;
}
.entry-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1.5rem 0 0.75rem 0;
}
.entry-content ul,
.entry-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}
.entry-content li {
  margin-bottom: 0.5rem;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}
.entry-content blockquote {
  border-left: 4px solid #4a90e2;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #666;
}
.entry-content a {
  color: #4a90e2;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}
.entry-content a:hover {
  color: #003366;
  border-bottom-color: #003366;
}
.entry-content a:visited {
  color: #6c5ce7;
}
.entry-content a:visited:hover {
  color: #003366;
  border-bottom-color: #003366;
}

.entry-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #666;
  background-color: transparent;
}

.widget {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.widget .widget-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #4a90e2;
}

.wp-block-group {
  margin-bottom: 2rem;
}

.wp-block-columns {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .wp-block-columns {
    flex-direction: column;
    gap: 1rem;
  }
}

.wp-block-column {
  flex: 1;
}

.wp-block-heading {
  margin: 1.5rem 0 1rem 0;
  font-weight: bold;
}

h1.wp-block-heading {
  font-size: 2rem;
}

h2.wp-block-heading {
  font-size: 1.5rem;
}

h3.wp-block-heading {
  font-size: 1.25rem;
}

h4.wp-block-heading {
  font-size: 1.125rem;
}

h5.wp-block-heading {
  font-size: 1rem;
}

h6.wp-block-heading {
  font-size: 0.875rem;
}

.wp-block-paragraph {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.wp-block-list {
  margin: 1rem 0;
  padding-left: 2rem;
  list-style: disc;
  list-style-position: outside;
}

ol.wp-block-list {
  list-style: decimal;
  list-style-position: outside;
}

ul.wp-block-list {
  list-style: disc;
  list-style-position: outside;
}

.wp-block-list li {
  margin-left: 1rem;
  padding-left: 0.5rem;
}

.wp-block-image {
  margin: 1.5rem 0;
}
.wp-block-image img {
  max-width: 100%;
  height: auto;
}
.wp-block-image figcaption {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: 0.5rem;
}

.wp-block-quote {
  border-left: 4px solid #4a90e2;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #666;
}

.wp-block-button {
  margin: 1rem 0;
}
.wp-block-button .wp-block-button__link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #4a90e2;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.wp-block-button .wp-block-button__link:hover {
  background: #357abd;
}

.wp-block-table {
  margin: 1.5rem 0;
  overflow-x: auto;
}
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.wp-block-table th,
.wp-block-table td {
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
}
.wp-block-table th {
  font-weight: bold;
}

.wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.wp-block-cover {
  margin: 2rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.wp-block-cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.wp-block-cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comment-list .comment {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}
.comment-list .comment-author {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.comment-list .comment-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}
.comment-list .comment-content {
  line-height: 1.6;
}

.comment-respond {
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.search-form {
  display: flex;
  gap: 0.5rem;
}
.search-form .search-field {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.search-form .search-submit {
  padding: 0.5rem 1rem;
  background: #4a90e2;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.search-form .search-submit:hover {
  background: #357abd;
}

.pagination,
.navigation.posts-navigation,
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.pagination .page-numbers,
.pagination .nav-links a,
.pagination .page-numbers.current,
.navigation.posts-navigation .page-numbers,
.navigation.posts-navigation .nav-links a,
.navigation.posts-navigation .page-numbers.current,
.nav-links .page-numbers,
.nav-links .nav-links a,
.nav-links .page-numbers.current {
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 40px;
  text-align: center;
}
.pagination .page-numbers:hover,
.pagination .nav-links a:hover,
.pagination .page-numbers.current:hover,
.navigation.posts-navigation .page-numbers:hover,
.navigation.posts-navigation .nav-links a:hover,
.navigation.posts-navigation .page-numbers.current:hover,
.nav-links .page-numbers:hover,
.nav-links .nav-links a:hover,
.nav-links .page-numbers.current:hover {
  background: #4a90e2;
  color: white;
  border-color: #4a90e2;
}
.pagination .page-numbers.current,
.pagination .nav-links a.current,
.pagination .page-numbers.current.current,
.navigation.posts-navigation .page-numbers.current,
.navigation.posts-navigation .nav-links a.current,
.navigation.posts-navigation .page-numbers.current.current,
.nav-links .page-numbers.current,
.nav-links .nav-links a.current,
.nav-links .page-numbers.current.current {
  background: #4a90e2;
  color: white;
  border-color: #4a90e2;
  font-weight: bold;
}
.pagination .page-numbers.dots,
.pagination .nav-links a.dots,
.pagination .page-numbers.current.dots,
.navigation.posts-navigation .page-numbers.dots,
.navigation.posts-navigation .nav-links a.dots,
.navigation.posts-navigation .page-numbers.current.dots,
.nav-links .page-numbers.dots,
.nav-links .nav-links a.dots,
.nav-links .page-numbers.current.dots {
  border: none;
  cursor: default;
}
.pagination .page-numbers.dots:hover,
.pagination .nav-links a.dots:hover,
.pagination .page-numbers.current.dots:hover,
.navigation.posts-navigation .page-numbers.dots:hover,
.navigation.posts-navigation .nav-links a.dots:hover,
.navigation.posts-navigation .page-numbers.current.dots:hover,
.nav-links .page-numbers.dots:hover,
.nav-links .nav-links a.dots:hover,
.nav-links .page-numbers.current.dots:hover {
  background: transparent;
  color: #333;
}
.pagination .nav-previous a,
.pagination .nav-next a,
.navigation.posts-navigation .nav-previous a,
.navigation.posts-navigation .nav-next a,
.nav-links .nav-previous a,
.nav-links .nav-next a {
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  display: inline-block;
}
.pagination .nav-previous a:hover,
.pagination .nav-next a:hover,
.navigation.posts-navigation .nav-previous a:hover,
.navigation.posts-navigation .nav-next a:hover,
.nav-links .nav-previous a:hover,
.nav-links .nav-next a:hover {
  background: #4a90e2;
  color: white;
  border-color: #4a90e2;
}

@media (max-width: 768px) {
  .pagination,
  .navigation.posts-navigation,
  .nav-links {
    gap: 0.25rem;
    margin: 1.5rem 0;
  }
  .pagination .page-numbers,
  .pagination .nav-links a,
  .navigation.posts-navigation .page-numbers,
  .navigation.posts-navigation .nav-links a,
  .nav-links .page-numbers,
  .nav-links .nav-links a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    min-width: 36px;
  }
}
@media (max-width: 768px) {
  .site-main {
    padding: 1rem;
  }
  .wp-block-columns {
    flex-direction: column;
  }
  .wp-block-gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
.breadcrumb {
  margin-bottom: 1.5rem;
  padding: 0.75rem 0;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
}
.breadcrumb .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb .breadcrumb-item {
  display: inline-flex;
  align-items: center;
}
.breadcrumb .breadcrumb-item a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #003366;
  text-decoration: underline;
}
.breadcrumb .breadcrumb-separator {
  margin: 0 0.5rem;
  color: #666;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 768px) {
  .breadcrumb .breadcrumb-separator {
    margin: 0 0.25rem;
  }
}
.breadcrumb .breadcrumb-current {
  color: #333;
  font-weight: 500;
}

body.normal {
  background: #fff;
  color: #333;
}
body.dark {
  background: black;
  color: white;
}
body.dark .entry-content,
body.dark .page-content,
body.dark .page-article .page-content,
body.dark .post-item,
body.dark .page-article,
body.dark .single-article,
body.dark .single-article .entry-content,
body.dark .page-content-wrapper,
body.dark .single-content-wrapper,
body.dark .archive-content-wrapper {
  color: white !important;
}
body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark h6 {
  color: white;
}
body.dark .page-title,
body.dark .entry-title {
  color: white;
}
body.dark .entry-meta,
body.dark .entry-date,
body.dark .entry-categories,
body.dark .breadcrumb,
body.dark .breadcrumb-item a,
body.dark .breadcrumb-current {
  color: rgba(255, 255, 255, 0.8);
}
body.dark .entry-content a,
body.dark .page-content a,
body.dark .category-link,
body.dark .tag-link,
body.dark .wp-block-paragraph a,
body.dark .wp-block-heading a,
body.dark .wp-block-list a {
  color: #90caf9;
}
body.dark .entry-content a:hover,
body.dark .page-content a:hover,
body.dark .category-link:hover,
body.dark .tag-link:hover,
body.dark .wp-block-paragraph a:hover,
body.dark .wp-block-heading a:hover,
body.dark .wp-block-list a:hover {
  color: #64b5f6;
  border-bottom-color: #64b5f6;
}
body.dark .entry-content a:visited,
body.dark .page-content a:visited,
body.dark .category-link:visited,
body.dark .tag-link:visited,
body.dark .wp-block-paragraph a:visited,
body.dark .wp-block-heading a:visited,
body.dark .wp-block-list a:visited {
  color: #ba68c8;
}
body.dark .entry-content a:visited:hover,
body.dark .page-content a:visited:hover,
body.dark .category-link:visited:hover,
body.dark .tag-link:visited:hover,
body.dark .wp-block-paragraph a:visited:hover,
body.dark .wp-block-heading a:visited:hover,
body.dark .wp-block-list a:visited:hover {
  color: #64b5f6;
  border-bottom-color: #64b5f6;
}
body.dark .category-link,
body.dark .tag-link {
  background: rgba(255, 255, 255, 0.1);
}
body.dark .category-link:hover,
body.dark .tag-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
body.dark .page-article .page-header,
body.dark .single-article .entry-header,
body.dark .archive-header,
body.dark .entry-footer {
  border-color: rgba(255, 255, 255, 0.3);
}
body.dark .post-item {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
body.dark .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
}
body.dark .page-content .wp-block-paragraph,
body.dark .entry-content .wp-block-paragraph,
body.dark .page-content .wp-block-heading,
body.dark .entry-content .wp-block-heading,
body.dark .page-content .wp-block-list,
body.dark .entry-content .wp-block-list,
body.dark .page-content .wp-block-list li,
body.dark .entry-content .wp-block-list li,
body.dark .page-content .wp-block-quote,
body.dark .entry-content .wp-block-quote,
body.dark .page-content .wp-block-image figcaption,
body.dark .entry-content .wp-block-image figcaption,
body.dark .page-content .wp-block-table,
body.dark .entry-content .wp-block-table,
body.dark .page-content .wp-block-table th,
body.dark .entry-content .wp-block-table th,
body.dark .page-content .wp-block-table td,
body.dark .entry-content .wp-block-table td,
body.dark .page-content p,
body.dark .entry-content p,
body.dark .page-content li,
body.dark .entry-content li {
  color: white !important;
}
body.dark .wp-block-quote {
  border-left-color: rgba(255, 255, 255, 0.5);
}
body.dark .wp-block-table th {
  background: rgba(255, 255, 255, 0.1);
}
body.dark .wp-block-table th,
body.dark .wp-block-table td {
  border-color: rgba(255, 255, 255, 0.3);
}
body.dark .wp-block-button .wp-block-button__link {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
body.dark .wp-block-button .wp-block-button__link:hover {
  background: rgba(255, 255, 255, 0.3);
}
body.blue {
  background: #001f4d;
  color: #fff8c6;
}
body.blue .entry-content,
body.blue .page-content,
body.blue .page-article .page-content,
body.blue .post-item,
body.blue .page-article,
body.blue .single-article,
body.blue .single-article .entry-content,
body.blue .page-content-wrapper,
body.blue .single-content-wrapper,
body.blue .archive-content-wrapper {
  color: #fff8c6 !important;
}
body.blue h1,
body.blue h2,
body.blue h3,
body.blue h4,
body.blue h5,
body.blue h6,
body.blue .page-content h1,
body.blue .page-content h2,
body.blue .page-content h3,
body.blue .page-content h4,
body.blue .page-content h5,
body.blue .page-content h6,
body.blue .entry-content h1,
body.blue .entry-content h2,
body.blue .entry-content h3,
body.blue .entry-content h4,
body.blue .entry-content h5,
body.blue .entry-content h6 {
  color: #fff8c6 !important;
}
body.blue .page-title,
body.blue .entry-title {
  color: #fff8c6;
}
body.blue .entry-meta,
body.blue .entry-date,
body.blue .entry-categories,
body.blue .breadcrumb,
body.blue .breadcrumb-item a,
body.blue .breadcrumb-current {
  color: rgba(255, 248, 198, 0.9);
}
body.blue .entry-content a,
body.blue .page-content a,
body.blue .category-link,
body.blue .tag-link,
body.blue .wp-block-paragraph a,
body.blue .wp-block-heading a,
body.blue .wp-block-list a {
  color: #ffd54f;
}
body.blue .entry-content a:hover,
body.blue .page-content a:hover,
body.blue .category-link:hover,
body.blue .tag-link:hover,
body.blue .wp-block-paragraph a:hover,
body.blue .wp-block-heading a:hover,
body.blue .wp-block-list a:hover {
  color: #ffc107;
  border-bottom-color: #ffc107;
}
body.blue .entry-content a:visited,
body.blue .page-content a:visited,
body.blue .category-link:visited,
body.blue .tag-link:visited,
body.blue .wp-block-paragraph a:visited,
body.blue .wp-block-heading a:visited,
body.blue .wp-block-list a:visited {
  color: #ffab40;
}
body.blue .entry-content a:visited:hover,
body.blue .page-content a:visited:hover,
body.blue .category-link:visited:hover,
body.blue .tag-link:visited:hover,
body.blue .wp-block-paragraph a:visited:hover,
body.blue .wp-block-heading a:visited:hover,
body.blue .wp-block-list a:visited:hover {
  color: #ffc107;
  border-bottom-color: #ffc107;
}
body.blue .category-link,
body.blue .tag-link {
  background: rgba(255, 248, 198, 0.1);
}
body.blue .category-link:hover,
body.blue .tag-link:hover {
  background: rgba(255, 248, 198, 0.2);
  color: #fff8c6;
}
body.blue .page-article .page-header,
body.blue .single-article .entry-header,
body.blue .archive-header,
body.blue .entry-footer {
  border-color: rgba(255, 248, 198, 0.3);
}
body.blue .post-item {
  border-color: rgba(255, 248, 198, 0.3);
  background: rgba(255, 248, 198, 0.05);
}
body.blue .breadcrumb-separator {
  color: rgba(255, 248, 198, 0.6);
}
body.blue .wp-block-quote {
  border-left-color: rgba(255, 248, 198, 0.5);
}
body.blue .wp-block-table th {
  background: rgba(255, 248, 198, 0.1);
}
body.blue .wp-block-table th,
body.blue .wp-block-table td {
  border-color: rgba(255, 248, 198, 0.3);
}
body.blue .wp-block-button .wp-block-button__link {
  background: rgba(255, 248, 198, 0.2);
  color: #fff8c6;
}
body.blue .wp-block-button .wp-block-button__link:hover {
  background: rgba(255, 248, 198, 0.3);
}

html.normal-font {
  font-size: 16px !important;
}

html.large-font {
  font-size: 20px !important;
}
@media (min-width: 769px) {
  html.large-font {
    font-size: 22px !important;
  }
}

html.xlarge-font {
  font-size: 24px !important;
}
@media (min-width: 769px) {
  html.xlarge-font {
    font-size: 28px !important;
  }
}

.page-content-wrapper,
.single-content-wrapper,
.archive-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 20px;
}
@media (max-width: 768px) {
  .page-content-wrapper,
  .single-content-wrapper,
  .archive-content-wrapper {
    padding: 1rem 15px;
  }
}

.page-article .page-header,
.archive-content-wrapper .page-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.page-article .page-title,
.archive-content-wrapper .page-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}
@media (max-width: 768px) {
  .page-article .page-title,
  .archive-content-wrapper .page-title {
    font-size: 1.5rem;
  }
}
.page-article .page-content,
.page-article .news-content,
.archive-content-wrapper .page-content,
.archive-content-wrapper .news-content {
  line-height: 1.8;
}
.page-article .page-content a,
.page-article .news-content a,
.archive-content-wrapper .page-content a,
.archive-content-wrapper .news-content a {
  color: #4a90e2;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}
.page-article .page-content a:hover,
.page-article .news-content a:hover,
.archive-content-wrapper .page-content a:hover,
.archive-content-wrapper .news-content a:hover {
  color: #003366;
  border-bottom-color: #003366;
}
.page-article .page-content a:visited,
.page-article .news-content a:visited,
.archive-content-wrapper .page-content a:visited,
.archive-content-wrapper .news-content a:visited {
  color: #6c5ce7;
}
.page-article .page-content a:visited:hover,
.page-article .news-content a:visited:hover,
.archive-content-wrapper .page-content a:visited:hover,
.archive-content-wrapper .news-content a:visited:hover {
  color: #003366;
  border-bottom-color: #003366;
}

.single-article .entry-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
}
.single-article .entry-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 1rem 0;
}
@media (max-width: 768px) {
  .single-article .entry-title {
    font-size: 1.5rem;
  }
}
.single-article .entry-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
  flex-wrap: wrap;
}
.single-article .entry-meta .entry-date {
  color: #666;
}
.single-article .entry-meta .entry-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.single-article .entry-meta .entry-categories .category-link {
  padding: 0.25rem 0.75rem;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.single-article .entry-meta .entry-categories .category-link:hover {
  background: #4a90e2;
  color: white;
}
.single-article .post-thumbnail {
  margin: 2rem 0;
}
.single-article .post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.single-article .entry-content {
  line-height: 1.8;
  margin-top: 2rem;
}
.single-article .entry-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
  background-color: transparent;
}
.single-article .entry-footer .tag-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.single-article .entry-footer .tag-list .tag-label {
  font-weight: bold;
  color: #666;
}
.single-article .entry-footer .tag-list .tag-link {
  padding: 0.25rem 0.75rem;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.single-article .entry-footer .tag-list .tag-link:hover {
  background: #4a90e2;
  color: white;
}

.archive-header {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
}
.archive-header .archive-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 1rem 0;
}
@media (max-width: 768px) {
  .archive-header .archive-title {
    font-size: 1.5rem;
  }
}
.archive-header .archive-description {
  color: #666;
  line-height: 1.6;
  margin-top: 1rem;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-item {
  padding: 2rem;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}
.post-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.post-item .entry-header {
  margin-bottom: 1rem;
}
.post-item .entry-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}
.post-item .entry-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.post-item .entry-title a:hover {
  color: #4a90e2;
}
.post-item .entry-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
  flex-wrap: wrap;
}
.post-item .post-thumbnail {
  margin: 1rem 0;
}
.post-item .post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.post-item .post-thumbnail a {
  display: block;
}
.post-item .entry-summary {
  line-height: 1.6;
  color: #666;
  margin: 1rem 0;
}
.post-item .entry-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
  background-color: transparent;
}
.post-item .entry-footer .read-more {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #4a90e2;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.post-item .entry-footer .read-more:hover {
  background: #357abd;
}

.no-posts {
  text-align: center;
  padding: 3rem;
  color: #666;
}

.post-navigation {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .post-navigation {
    flex-direction: column;
  }
}
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}
@media (max-width: 768px) {
  .post-navigation .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: block;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background: #e9ecef;
}
.post-navigation .nav-previous .nav-subtitle,
.post-navigation .nav-next .nav-subtitle {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.post-navigation .nav-previous .nav-title,
.post-navigation .nav-next .nav-title {
  display: block;
  font-weight: bold;
  color: #333;
}/*# sourceMappingURL=styles.css.map */