@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 {
  display: block;
}

.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%);
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
  padding: 3rem 0;
  width: 90vw;
  max-width: 1024px;
  overflow-y: auto;
  overflow-x: hidden;
}
.mega-menu.active {
  display: block;
}
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;
  }
}
button {
  padding: 0.5rem 1rem;
  margin: 0.2rem;
  cursor: pointer;
}

body.normal {
  background: #fff;
  color: black;
}
body.dark {
  background: black;
  color: white;
}
body.dark .header-top,
body.dark .search-area .search-btn,
body.dark .mobile-sub-menu,
body.dark .emergency-info,
body.dark .emergency-notice-empty,
body.dark .notice-content .notice-details,
body.dark .notice-content .notice-contact,
body.dark .news-content,
body.dark .news-item,
body.dark .news-tabs .tab-button,
body.dark .news-info,
body.dark .important-notice-info,
body.dark .municipalities-box,
body.dark .service-area-box,
body.dark .jurisdiction-section .municipalities-box,
body.dark .jurisdiction-section .service-area-box {
  background: transparent !important;
}
body.dark .section-header h2,
body.dark .section-header .section-subtitle,
body.dark .municipalities-box,
body.dark .service-area-box,
body.dark .municipalities-list li,
body.dark .news-item,
body.dark .news-title a,
body.dark .news-tabs .tab-button,
body.dark .notice-content,
body.dark .notice-content h3,
body.dark .notice-content .notice-date,
body.dark .notice-content .notice-text,
body.dark .notice-content .notice-detail-item,
body.dark .notice-content .notice-contact,
body.dark .notice-content .notice-additional,
body.dark .notice-content .notice-area,
body.dark .emergency-notice-empty,
body.dark p,
body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark h6 {
  color: white !important;
}
body.dark .municipalities-box,
body.dark .service-area-box,
body.dark .jurisdiction-section .municipalities-box,
body.dark .jurisdiction-section .service-area-box,
body.dark .notice-content .notice-details,
body.dark .news-content {
  border-color: rgba(255, 255, 255, 0.3);
}
body.dark .news-tabs .tab-button {
  border-color: rgba(255, 255, 255, 0.3);
}
body.blue {
  background: #001f4d;
  color: #fff8c6;
}
body.blue .header-top,
body.blue .search-area .search-btn,
body.blue .mobile-sub-menu,
body.blue .emergency-info,
body.blue .emergency-notice-empty,
body.blue .notice-content .notice-details,
body.blue .notice-content .notice-contact,
body.blue .news-content,
body.blue .news-item,
body.blue .news-tabs .tab-button,
body.blue .news-info,
body.blue .important-notice-info,
body.blue .municipalities-box,
body.blue .service-area-box,
body.blue .jurisdiction-section .municipalities-box,
body.blue .jurisdiction-section .service-area-box {
  background: transparent !important;
}
body.blue .section-header h2,
body.blue .section-header .section-subtitle,
body.blue .municipalities-box,
body.blue .service-area-box,
body.blue .municipalities-list li,
body.blue .news-item,
body.blue .news-title a,
body.blue .news-tabs .tab-button,
body.blue .notice-content,
body.blue .notice-content h3,
body.blue .notice-content .notice-date,
body.blue .notice-content .notice-text,
body.blue .notice-content .notice-detail-item,
body.blue .notice-content .notice-contact,
body.blue .notice-content .notice-additional,
body.blue .notice-content .notice-area,
body.blue .emergency-notice-empty,
body.blue p,
body.blue h1,
body.blue h2,
body.blue h3,
body.blue h4,
body.blue h5,
body.blue h6 {
  color: #fff8c6 !important;
}
body.blue .municipalities-box,
body.blue .service-area-box,
body.blue .jurisdiction-section .municipalities-box,
body.blue .jurisdiction-section .service-area-box,
body.blue .notice-content .notice-details,
body.blue .news-content {
  border-color: rgba(255, 248, 198, 0.3);
}
body.blue .news-tabs .tab-button {
  border-color: rgba(255, 248, 198, 0.3);
}

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

html.large-font {
  font-size: 20px !important;
}

html.xlarge-font {
  font-size: 24px !important;
}

.settings-panel {
  background: #003366;
  color: white;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 5px;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.setting-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.setting-group label {
  font-weight: bold;
  white-space: nowrap;
}
.setting-group select {
  padding: 0.3rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: black;
  min-width: 100px;
}
.setting-group button {
  padding: 0.3rem 0.8rem;
  margin: 0;
  font-size: 1rem;
}

main {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  main {
    padding: 0 1rem;
  }
}
main {
  padding-bottom: 2rem;
}

.hero-section {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  overflow: hidden;
}
.hero-section .hero-slider {
  width: 100%;
  height: 30vh;
  position: relative;
  overflow: hidden;
}
.hero-section .hero-slider .hero-slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-section .hero-slider .hero-character {
  position: absolute;
  bottom: 8px;
  right: 20px;
  z-index: 10;
  width: 72px;
  height: 77px;
  pointer-events: none;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
}
@media (max-width: 767px) {
  .hero-section .hero-slider .hero-character {
    bottom: 6px;
    right: 15px;
  }
}
@media (max-width: 479px) {
  .hero-section .hero-slider .hero-character {
    bottom: 4px;
    right: 10px;
  }
}
.hero-section .hero-slider .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-section .hero-slider .hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-section .hero-slider .hero-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-section .hero-slider .hero-slide .hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.hero-section .hero-slider .hero-slide .hero-slide-link:hover {
  opacity: 0.9;
}
.hero-section .hero-slider .hero-slide .hero-slide-link img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-section .hero-slider .hero-tagline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 100%;
  padding: 0 2rem;
  pointer-events: none;
}
.hero-section .hero-slider .hero-tagline h1 {
  font-family: "Noto Serif JP", "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .hero-section .hero-slider .hero-tagline h1 {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
}
@media (max-width: 479px) {
  .hero-section .hero-slider .hero-tagline h1 {
    font-size: 1.25rem;
  }
}
.hero-section .hero-slider .hero-slider-prev,
.hero-section .hero-slider .hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hero-section .hero-slider .hero-slider-prev:hover,
.hero-section .hero-slider .hero-slider-next:hover {
  background: rgba(255, 255, 255, 0.5);
}
.hero-section .hero-slider .hero-slider-prev:active,
.hero-section .hero-slider .hero-slider-next:active {
  background: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  .hero-section .hero-slider .hero-slider-prev,
  .hero-section .hero-slider .hero-slider-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
.hero-section .hero-slider .hero-slider-prev {
  left: 20px;
}
.hero-section .hero-slider .hero-slider-next {
  right: 20px;
}

.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;
  }
}

.first-view {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .first-view {
    margin-bottom: 2rem;
  }
}
.first-view:last-of-type {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .first-view:last-of-type {
    margin-bottom: 4rem;
  }
}
.first-view .emergency-container,
.first-view .important-notice-container,
.first-view .news-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .first-view .emergency-container,
  .first-view .important-notice-container,
  .first-view .news-container {
    padding: 0 1rem;
  }
}
.first-view .emergency-info {
  background: #fff;
  border: 2px solid #f75b6b;
  overflow: hidden;
}
.first-view .emergency-info:has(.emergency-notice-empty) .emergency-icon {
  display: none !important;
}
.first-view .emergency-info.has-emergency .emergency-icon {
  display: flex !important;
}
.first-view .emergency-header {
  background: #f75b6b;
  color: white;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (max-width: 767px) {
  .first-view .emergency-header {
    text-align: center;
  }
}
.first-view .emergency-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}
@media (max-width: 767px) {
  .first-view .emergency-header h3 {
    font-size: 1.125rem;
  }
}
.first-view .emergency-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.first-view .emergency-notice-empty {
  text-align: center;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  color: #666;
}
.first-view .emergency-notice-empty .empty-message {
  margin: 0;
  font-size: 1rem;
  color: #666;
}
.first-view .emergency-notice-active {
  width: 100%;
  animation: slide-in 0.3s ease-out;
}
@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.first-view .notice-badge {
  display: inline-block;
  background: #f75b6b;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.first-view .notice-content {
  padding-inline: 1rem;
  padding-block: 0.5rem;
}
.first-view .notice-content h3 {
  margin: 0 0 0.75rem 0;
  color: #721c24;
  font-weight: bold;
}
.first-view .notice-content .notice-date {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  color: #666;
}
.first-view .notice-content .notice-details {
  margin: 0 0 1.5rem 0;
  padding: 1rem;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #f8d7da;
}
.first-view .notice-content .notice-details .notice-detail-item {
  margin: 0.5rem 0;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .first-view .notice-content .notice-details .notice-detail-item {
    font-size: 0.875rem;
  }
}
.first-view .notice-content .notice-details .notice-detail-item strong {
  color: #721c24;
}
.first-view .notice-content .notice-text {
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .first-view .notice-content .notice-text {
    font-size: 16px;
  }
}
.first-view .notice-content .notice-contact {
  margin: 1rem 0;
  padding: 1rem;
  background: #fff;
  border-left: 3px solid #f75b6b;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .first-view .notice-content .notice-contact {
    font-size: 0.875rem;
    padding: 0.8rem;
  }
}
.first-view .notice-content .notice-contact strong {
  color: #721c24;
}
.first-view .notice-content .notice-additional {
  margin: 1rem 0;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
  padding: 0.75rem;
  background: #fefefe;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .first-view .notice-content .notice-additional {
    font-size: 1rem;
  }
}
.first-view .notice-content .notice-area {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid #f8d7da;
  font-size: 16px;
  color: #f75b6b;
  font-weight: bold;
}
.first-view .important-notice-info {
  background: #fff;
  border: 2px solid #ff9800;
  overflow: hidden;
}
.first-view .important-notice-info .important-notice-header {
  background: #ff9800;
  color: white;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (max-width: 767px) {
  .first-view .important-notice-info .important-notice-header {
    text-align: center;
  }
}
.first-view .important-notice-info .important-notice-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}
@media (max-width: 767px) {
  .first-view .important-notice-info .important-notice-header h3 {
    font-size: 1.125rem;
  }
}
.first-view .important-notice-info .important-notice-content {
  padding-inline: 1rem;
  padding-block: 0.5rem;
  border-radius: 0;
  margin-bottom: 0;
}
.first-view .important-notice-info .important-notice-content .news-content {
  padding: 0;
  margin-bottom: 0;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #ddd;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .first-view .important-notice-info .important-notice-content .news-content .news-list .news-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-date {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  min-width: 155px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-date {
    min-width: auto;
    flex-shrink: 0;
  }
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-cat {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  flex-shrink: 0;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-cat .cat-item {
  padding: 1px;
  width: 45px;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  background: transparent;
  border: 1px solid #999;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-left: auto;
  flex-shrink: 0;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-tags .tag {
  padding: 1px;
  width: 45px;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 500;
  color: white;
  text-align: center;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-tags .tag.important {
  background: #ff6b6b;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-tags .tag.urgent {
  background: #d32f2f;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-tags .tag.featured {
  background: #ffa726;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-tags .tag.users {
  background: #4caf50;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-tags .tag.business {
  background: #42a5f5;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-tags .tag.events {
  background: #66bb6a;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-title {
    font-size: 0.875rem;
  }
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-title a {
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.first-view .important-notice-info .important-notice-content .news-content .news-list .news-item .news-title a:hover {
  color: #ff9800;
  text-decoration: underline;
}
.first-view .news-info {
  background: #fff;
  border: 2px solid #4a90e2;
  overflow: hidden;
}
.first-view .news-info .news-header {
  background: #4a90e2;
  color: white;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (max-width: 767px) {
  .first-view .news-info .news-header {
    text-align: center;
  }
}
.first-view .news-info .news-header h2,
.first-view .news-info .news-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}
@media (max-width: 767px) {
  .first-view .news-info .news-header h2,
  .first-view .news-info .news-header h3 {
    font-size: 1.125rem;
  }
}
.first-view .news-info .news-content {
  padding-inline: 1rem;
  padding-block: 0.5rem;
  border-radius: 0;
  margin-bottom: 0;
}
.first-view .news-info .news-content .news-list .news-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #ddd;
}
.first-view .news-info .news-content .news-list .news-item:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .first-view .news-info .news-content .news-list .news-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.first-view .news-info .news-content .news-list .news-item .news-date {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  min-width: 155px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .first-view .news-info .news-content .news-list .news-item .news-date {
    min-width: auto;
    flex-shrink: 0;
  }
}
.first-view .news-info .news-content .news-list .news-item .news-cat {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  flex-shrink: 0;
}
.first-view .news-info .news-content .news-list .news-item .news-cat .cat-item {
  padding: 1px;
  width: 45px;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  background: transparent;
  border: 1px solid #999;
}
.first-view .news-info .news-content .news-list .news-item .news-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-left: auto;
  flex-shrink: 0;
}
.first-view .news-info .news-content .news-list .news-item .news-tags .tag {
  padding: 1px;
  width: 45px;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 500;
  color: white;
  text-align: center;
}
.first-view .news-info .news-content .news-list .news-item .news-tags .tag.important {
  background: #ff6b6b;
}
.first-view .news-info .news-content .news-list .news-item .news-tags .tag.featured {
  background: #ffa726;
}
.first-view .news-info .news-content .news-list .news-item .news-tags .tag.users {
  background: #4caf50;
}
.first-view .news-info .news-content .news-list .news-item .news-tags .tag.business {
  background: #42a5f5;
}
.first-view .news-info .news-content .news-list .news-item .news-tags .tag.events {
  background: #66bb6a;
}
.first-view .news-info .news-content .news-list .news-item .news-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .first-view .news-info .news-content .news-list .news-item .news-title {
    font-size: 0.875rem;
  }
}
.first-view .news-info .news-content .news-list .news-item .news-title a {
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.first-view .news-info .news-content .news-list .news-item .news-title a:hover {
  color: #4a90e2;
  text-decoration: underline;
}
.first-view .news-info .news-content .news-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}
.first-view .news-info .news-content .news-footer .view-all-btn {
  max-width: 150px;
  background: #4a90e2;
  color: white;
  border: none;
  padding-block: 0.3rem;
  padding-inline: 0.5rem;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}
.first-view .news-info .news-content .news-footer .view-all-btn:hover {
  background: rgb(34.3857142857, 117.3857142857, 214.6142857143);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.first-view .news-info .news-content .news-footer .view-all-btn svg {
  width: 16px;
  height: 16px;
}
.first-view .page-archive .news-content {
  background: transparent;
  padding-inline: 0;
  padding-block: 0;
  border-radius: 0;
  margin-bottom: 0;
}
.first-view .contact-panels {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .first-view .contact-panels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.first-view .contact-panel {
  background: #fff;
  border: 3px solid;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform box-shadow 0.3s ease;
}
.first-view .contact-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.first-view .contact-panel.blue {
  border-color: #4a90e2;
}
.first-view .contact-panel.blue .panel-icon {
  background: #4a90e2;
}
.first-view .contact-panel.blue .contact-info {
  background: rgba(74, 144, 226, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}
.first-view .contact-panel.green {
  border-color: #50c878;
}
.first-view .contact-panel.green .panel-icon {
  background: #50c878;
}
.first-view .contact-panel.green .contact-info {
  background: rgba(80, 200, 120, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}
.first-view .contact-panel.red {
  border-color: #ff6b6b;
}
.first-view .contact-panel.red .panel-icon {
  background: #ff6b6b;
}
.first-view .contact-panel.red .contact-info {
  background: rgba(255, 107, 107, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}
.first-view .contact-panel .panel-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.first-view .contact-panel h3 {
  margin: 1.5rem 0 1rem 0;
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}
.first-view .contact-panel .contact-info p {
  margin: 0.5rem 0;
  font-size: 0.875rem;
}
.first-view .contact-panel .contact-info p.phone-number {
  font-size: 1.25rem;
  font-weight: bold;
  color: #2c3e50;
}
.first-view .contact-panel .contact-info p.fax, .first-view .contact-panel .contact-info p.online-text, .first-view .contact-panel .contact-info p.emergency-note {
  color: #666;
  font-size: 1rem;
}

.news-section {
  margin-bottom: 4rem;
}
.news-section.important-notice-section {
  padding-block: 1rem;
}
.news-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.news-section .section-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 0.5rem 0;
  position: relative;
}
.news-section .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2, #50c878);
  border-radius: 2px;
}
.news-section .section-header .section-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.news-section .news-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-size: 0.65rem;
}
.news-section .news-tabs .tab-button {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  padding: 3px 0.25rem;
  margin-inline: 0;
  font-size: 0.65rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  position: relative;
  width: 100px;
  text-align: center;
  justify-content: center;
}
.news-section .news-tabs .tab-button:hover {
  border-color: #4a90e2;
  color: #4a90e2;
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.news-section .news-tabs .tab-button.active {
  background: #4a90e2;
  border-color: #4a90e2;
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.news-section .news-content {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  margin-bottom: 0;
}
.news-section .news-content .news-list .news-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed #ddd;
}
.news-section .news-content .news-list .news-item:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .news-section .news-content .news-list .news-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news-section .news-content .news-list .news-item .news-date {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  min-width: 155px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news-section .news-content .news-list .news-item .news-date {
    min-width: auto;
    flex-shrink: 0;
  }
}
.news-section .news-content .news-list .news-item .news-cat {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  flex-shrink: 0;
}
.news-section .news-content .news-list .news-item .news-cat .cat-item {
  padding: 1px;
  width: 45px;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 500;
  color: #333;
  text-align: center;
  background: transparent;
  border: 1px solid #999;
}
.news-section .news-content .news-list .news-item .news-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-left: auto;
  flex-shrink: 0;
}
.news-section .news-content .news-list .news-item .news-tags .tag {
  padding: 1px;
  width: 45px;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 500;
  color: white;
  text-align: center;
}
.news-section .news-content .news-list .news-item .news-tags .tag.important {
  background: #ff6b6b;
}
.news-section .news-content .news-list .news-item .news-tags .tag.urgent {
  background: #d32f2f;
}
.news-section .news-content .news-list .news-item .news-tags .tag.featured {
  background: #ffa726;
}
.news-section .news-content .news-list .news-item .news-tags .tag.users {
  background: #4caf50;
}
.news-section .news-content .news-list .news-item .news-tags .tag.business {
  background: #42a5f5;
}
.news-section .news-content .news-list .news-item .news-tags .tag.events {
  background: #66bb6a;
}
.news-section .news-content .news-list .news-item .news-title {
  flex: 1;
}
@media (max-width: 767px) {
  .news-section .news-content .news-list .news-item .news-title {
    width: 100%;
    flex-basis: 100%;
  }
}
.news-section .news-content .news-list .news-item .news-title a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.6;
  transition: color 0.2s ease;
}
.news-section .news-content .news-list .news-item .news-title a:hover {
  color: #4a90e2;
  text-decoration: underline;
}
.news-section .news-content .news-footer {
  text-align: center;
  margin-top: 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid #e0e0e0;
}
.news-section .news-content .news-footer .view-all-btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #0066cc;
  color: white;
}
.news-section .news-content .news-footer .view-all-btn:hover {
  background-color: #004499;
}
.news-section .news-content .news-footer .view-all-btn {
  border-radius: 25px;
  padding-block: 0.3rem;
  padding-inline: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.news-section .news-content .news-footer .view-all-btn:hover {
  background: #357abd;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.news-section .news-content .news-footer .view-all-btn svg {
  transition: transform 0.2s ease;
}
.news-section .news-content .news-footer .view-all-btn:hover svg {
  transform: translateX(4px);
}

.service-guide {
  margin-bottom: 4rem;
}
.service-guide .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.service-guide .section-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 0.5rem 0;
  position: relative;
}
.service-guide .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2, #50c878);
  border-radius: 2px;
}
.service-guide .section-header .section-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.service-guide .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.service-guide .service-grid .service-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
  flex-basis: calc(25% - 1.125rem);
  min-width: 200px;
  max-width: 250px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.service-guide .service-grid .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-color: #4a90e2;
}
@media (max-width: 1023px) {
  .service-guide .service-grid .service-card {
    flex-basis: calc(33.333% - 1rem);
  }
}
@media (max-width: 767px) {
  .service-guide .service-grid .service-card {
    flex-basis: calc(50% - 0.75rem);
    min-width: 150px;
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 479px) {
  .service-guide .service-grid .service-card {
    flex-basis: 100%;
    max-width: 300px;
  }
}
.service-guide .service-grid .service-card .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  background: linear-gradient(135deg, #4a90e2, #50c878);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
}
.service-guide .service-grid .service-card .service-icon svg {
  transition: transform 0.2s ease;
}
@media (max-width: 767px) {
  .service-guide .service-grid .service-card .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
}
.service-guide .service-grid .service-card:hover .service-icon {
  background: linear-gradient(135deg, #357abd, #45b06a);
}
.service-guide .service-grid .service-card:hover .service-icon svg {
  transform: scale(1.1);
}
.service-guide .service-grid .service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .service-guide .service-grid .service-card h3 {
    font-size: 1rem;
  }
}

.ad-banner {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
  position: relative;
  transform: translateY(0);
  transition: all 0.2s ease;
  max-height: 300px;
  overflow: hidden;
}
.ad-banner.initial {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.ad-banner.initial .ad-container {
  border: none;
}
.ad-banner.collapsed {
  position: static;
  margin: 0;
  box-shadow: none;
  z-index: auto;
}
.ad-banner.collapsed .ad-close {
  display: none;
}
.ad-banner.collapsed .ad-container {
  border: 1px solid lightgray;
}
.ad-banner.hidden {
  max-height: 0;
  margin: 0;
  padding: 0;
  box-shadow: none;
  transform: translateY(-100%);
}
.ad-banner .ad-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  border: 1px solid lightgray;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.ad-banner .ad-container h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .ad-banner .ad-container {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
  }
  .ad-banner .ad-container h3 {
    margin-bottom: 0.5rem;
  }
}
.ad-banner .ad-container .ad-grid {
  display: flex;
  gap: 1rem;
  margin: 0;
  justify-content: center;
}
@media (max-width: 767px) {
  .ad-banner .ad-container .ad-grid {
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
  }
}
.ad-banner .ad-container .ad-grid .ad-item {
  flex: 1;
  max-width: 200px;
}
.ad-banner .ad-container .ad-grid .ad-item .ad-placeholder {
  text-align: center;
  color: #666;
  font-size: 1rem;
  border-radius: 4px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-banner .ad-container .ad-info {
  text-align: right;
}
.ad-banner .ad-container .ad-info a {
  color: #666;
  text-decoration: none;
  font-size: 1rem;
}
.ad-banner .ad-container .ad-info a:hover {
  text-decoration: underline;
}
.ad-banner .ad-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #f75b6b;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
}
.ad-banner .ad-close:hover {
  background: #cc0000;
}

.first-view-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1220px;
  margin: 0 auto 4rem auto;
}
@media (max-width: 767px) {
  .first-view-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
  }
}

.jurisdiction-aside {
  width: 25%;
  min-width: 0;
  padding: 0;
  flex-shrink: 0;
  position: sticky;
  top: 2rem;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .jurisdiction-aside {
    width: 100%;
    position: static;
    top: auto;
    order: 999;
    margin-top: 2rem;
  }
}
.jurisdiction-aside .section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .jurisdiction-aside .section-header {
    margin-bottom: 3rem;
  }
}
.jurisdiction-aside .section-header h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin: 0;
  position: relative;
  padding-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .jurisdiction-aside .section-header h2 {
    font-size: 2rem;
    padding-bottom: 1rem;
  }
}
.jurisdiction-aside .section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #4a90e2;
}
@media (max-width: 767px) {
  .jurisdiction-aside .section-header h2::after {
    width: 80px;
  }
}
.jurisdiction-aside .jurisdiction-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .jurisdiction-aside .jurisdiction-container {
    gap: 2rem;
  }
}
.jurisdiction-aside .municipalities-box {
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .jurisdiction-aside .municipalities-box {
    padding: 2rem;
  }
}
.jurisdiction-aside .municipalities-box h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .jurisdiction-aside .municipalities-box h3 {
    font-size: 1.125rem;
  }
}
.jurisdiction-aside .municipalities-box .municipalities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.jurisdiction-aside .municipalities-box .municipalities-list li {
  padding: 0.3rem;
  font-size: 1rem;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.15s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.jurisdiction-aside .municipalities-box .municipalities-list li::before {
  content: "";
  position: relative;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.15s ease;
}
.jurisdiction-aside .municipalities-box .municipalities-list li a {
  color: inherit;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 120px;
  transition: opacity 0.15s ease;
}
.jurisdiction-aside .municipalities-box .municipalities-list li a span {
  flex: 0 0 auto;
}
.jurisdiction-aside .municipalities-box .municipalities-list li a:hover {
  opacity: 0.7;
}
.jurisdiction-aside .municipalities-box .municipalities-list li:hover::before {
  opacity: 0.7;
}
.jurisdiction-aside .municipalities-box .municipalities-list li:nth-child(1)::before {
  background-image: url("../images/top-tougane.jpg");
}
.jurisdiction-aside .municipalities-box .municipalities-list li:nth-child(2)::before {
  background-image: url("../images/top-sanbu.jpg");
}
.jurisdiction-aside .municipalities-box .municipalities-list li:nth-child(3)::before {
  background-image: url("../images/top-ooami.jpg");
}
.jurisdiction-aside .municipalities-box .municipalities-list li:nth-child(4)::before {
  background-image: url("../images/top-99.jpg");
}
.jurisdiction-aside .municipalities-box .municipalities-list li:nth-child(5)::before {
  background-image: url("../images/top-yoko.jpg");
}
.jurisdiction-aside .municipalities-box .municipalities-list li:last-child {
  border-bottom: none;
}
.jurisdiction-aside .municipalities-box .municipalities-list li:hover {
  background-color: #f8f9fa;
}
@media (max-width: 767px) {
  .jurisdiction-aside .municipalities-box .municipalities-list li {
    font-size: 16px;
    padding: 0.6rem 0.8rem;
  }
  .jurisdiction-aside .municipalities-box .municipalities-list li::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.jurisdiction-aside .service-area-box {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: none;
  overflow: hidden;
}
.jurisdiction-aside .service-area-box h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin: 0;
  padding: 1.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .jurisdiction-aside .service-area-box h3 {
    font-size: 1.125rem;
  }
}
.jurisdiction-aside .service-area-box h3 .character-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #4a90e2;
  display: inline-block;
}
@media (max-width: 767px) {
  .jurisdiction-aside .service-area-box h3 .character-name {
    font-size: 1.25rem;
  }
}
.jurisdiction-aside .service-area-box .map-area {
  width: 100%;
  flex: 1;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.jurisdiction-aside .service-area-box .map-area img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}
.jurisdiction-aside .service-area-box .map-area .image-hover-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.jurisdiction-aside .service-area-box .map-area .image-hover-container .image-normal,
.jurisdiction-aside .service-area-box .map-area .image-hover-container .image-hover {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
  transition: opacity 0.3s ease;
}
.jurisdiction-aside .service-area-box .map-area .image-hover-container .image-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.jurisdiction-aside .service-area-box .map-area .image-hover-container:hover .image-normal {
  opacity: 0;
}
.jurisdiction-aside .service-area-box .map-area .image-hover-container:hover .image-hover {
  opacity: 1;
}
.jurisdiction-aside .service-area-box .map-area .map-area-link {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.jurisdiction-aside .service-area-box .map-area .map-area-link:hover {
  opacity: 0.5;
}
.jurisdiction-aside .service-area-box .map-area .map-area-link:active {
  opacity: 0.6;
}
.jurisdiction-aside .service-area-box .map-area .map-area-link img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}
.jurisdiction-aside .service-area-box .map-area .map-area-link .image-hover-container:hover .image-normal {
  opacity: 0;
}
.jurisdiction-aside .service-area-box .map-area .map-area-link .image-hover-container:hover .image-hover {
  opacity: 1;
}
.jurisdiction-aside .service-area-box .map-area .map-area-link:hover .image-hover-container .image-normal {
  opacity: 0;
}
.jurisdiction-aside .service-area-box .map-area .map-area-link:hover .image-hover-container .image-hover {
  opacity: 1;
}
.jurisdiction-aside .service-area-box .map-area .map-placeholder {
  background: #e0e0e0;
  color: #999;
  padding: 3rem 2rem;
  border-radius: 0;
  text-align: center;
  font-size: 1.25rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .jurisdiction-aside .service-area-box .map-area .map-placeholder {
    font-size: 16px;
    padding: 2rem 1rem;
  }
}
.jurisdiction-aside .service-area-box .map-area img[alt=さんすいちゃん] {
  max-width: 70%;
  height: auto;
}
.jurisdiction-aside .service-area-box h4 {
  font-size: 1.125rem;
  text-align: center;
  margin: 1.5rem 0 1rem 0;
  color: #333;
  font-weight: bold;
}
@media (max-width: 767px) {
  .jurisdiction-aside .service-area-box h4 {
    font-size: 16px;
  }
}
.jurisdiction-aside .service-area-box p {
  padding-inline: 5%;
}

.right-column {
  width: 70%;
  min-width: 0;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .right-column {
    width: 100%;
  }
}

.scroll-to-top {
  display: none !important;
}/*# sourceMappingURL=front-page.css.map */