html, body, h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
}

ul, li, dl, dt, dd {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
}

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

div, textarea, input {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-display: swap;
  background-color: #F5F8F7;
  color: #000;
}

.inner {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .inner {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
}

#back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: none;
  padding: 10px 12.5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

header .site-title {
  color: #3AA27B;
  font-size: 20px;
  font-weight: bold;
}

.drawer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px !important;
}
@media screen and (max-width: 1200px) {
  .drawer-container {
    max-width: 100% !important;
  }
}

.drawer-navbar {
  border-bottom: 1px solid #eee !important;
  background-color: rgba(245, 248, 247, 0.85) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.drawer-navbar .drawer-navbar-header {
  display: flex !important;
  align-items: center !important;
}
.drawer-navbar .drawer-navbar-header .drawer-brand {
  display: flex;
  align-items: center;
}

.drawer-container, .drawer-nav, .drawer-navbar-header, .drawer-brand, .drawer-menu, .drawer-menu-item {
  background-color: transparent !important;
}

.drawer-menu-item {
  font-weight: bold;
}
.drawer-menu-item:hover {
  text-decoration: none !important;
  background-color: #3AA27B !important;
  color: #fff !important;
}

@media screen and (min-width: 64em) {
  .drawer-nav {
    height: auto !important;
  }
}
@media screen and (max-width: 63.9375em) {
  .drawer-brand {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .drawer-nav {
    height: 100vh !important;
    background-color: rgba(245, 248, 247, 0.97) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
  }
  .drawer-navbar-header {
    border-bottom: 1px solid #eee !important;
  }
  .drawer-menu-item {
    border-bottom: 1px solid #eee;
  }
}
.search-box:hover {
  background-color: inherit !important;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 5px;
}
.search-form input {
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 6px;
}
.search-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
}

.navbar {
  background-color: #3AA27B;
  color: #fff;
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.navbar::before {
  content: "";
  top: 50%;
  left: -150%;
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shineEffect 3s linear;
}
@media screen and (max-width: 1200px) {
  .navbar {
    font-size: 0.7rem;
    padding: 5px 0;
    margin-bottom: -30px;
  }
}
.navbar .inner {
  display: flex;
  align-items: center;
  color: #fff;
}
.navbar .inner span {
  background-color: #dfba19;
  padding: 2.5px 10px;
  border-radius: 6px;
  color: #21272F;
  margin-right: 10px;
  font-size: 0.8rem;
}
@media screen and (max-width: 1200px) {
  .navbar .inner span {
    font-size: 0.7rem;
    padding: 2.5px 5px;
    border-radius: 4px;
  }
}

@keyframes shineEffect {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}
.breadcrumbs {
  width: 1200px;
  margin: 10px auto;
  font-size: 0.8rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.breadcrumbs a {
  color: #000;
}
.breadcrumbs a:hover {
  color: #3AA27B;
}
.breadcrumbs .current-item {
  color: #aaa;
}
@media screen and (max-width: 1200px) {
  .breadcrumbs {
    width: 100%;
    font-size: 0.7rem;
    margin-top: 2.25rem;
    overflow-x: auto;
  }
}

footer {
  padding: 40px 0 10px 0;
  background-color: #21272F;
  color: #F5F8F7;
}
footer .footer-nav {
  margin-bottom: 20px;
  font-size: 0.8rem;
}
footer .footer-nav .footer-nav-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}
footer .footer-nav .footer-nav-list li {
  border-right: 1px solid #eee;
  padding-right: 10px;
}
footer .footer-nav .footer-nav-list li:last-child {
  border-right: none;
}
footer .footer-nav .footer-nav-list a {
  color: #fff;
}
footer .footer-nav .footer-nav-list a:hover {
  color: #3AA27B;
}
@media screen and (max-width: 1200px) {
  footer .footer-nav .footer-nav-list {
    font-size: 0.7rem;
  }
}
footer .disclaimer {
  font-size: 0.8rem;
}
footer .disclaimer .disclaimer-title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
footer .copyright {
  margin-top: 40px;
  text-align: center;
  font-size: 0.7rem;
}