.nav-list[data-astro-cid-adya3edy] {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  height: 100%;
}

.nav-item[data-astro-cid-adya3edy] {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link[data-astro-cid-adya3edy] {
  text-decoration: none;
  color: #171213;
  transition: color 0.3s ease, opacity 0.3s ease;
  position: relative;
  font-weight: bold;
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0;
}

.nav-link[data-astro-cid-adya3edy]>span[data-astro-cid-adya3edy] {
  transform: translateY(5px);
}

.nav-link-service[data-astro-cid-adya3edy] {
  margin-right: 0.75rem;
}

.header:not(.scrolled) .nav-link[data-astro-cid-adya3edy] {
  color: #ffffff;
}

.nav-link[data-astro-cid-adya3edy]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  background: #001650;
  transition: width 0.3s ease;
}

.nav-link[data-astro-cid-adya3edy]:nth-child(2) {
  margin-right: 0.75rem;
}

.header:not(.scrolled) .nav-link[data-astro-cid-adya3edy]::after {
  background: #ffffff;
}

.nav-link[data-astro-cid-adya3edy]:hover {
  opacity: 0.7;
}

.header:not(.scrolled) .nav-link[data-astro-cid-adya3edy][aria-current=page]::after {
  width: 0;
}

.header.scrolled .nav-link[data-astro-cid-adya3edy][aria-current=page]::after {
  width: 100%;
}

.nav-item[data-astro-cid-adya3edy].has-mega-menu .nav-link[data-astro-cid-adya3edy]::before {
  content: "";
  position: absolute;
  right: -0.75rem;
  top: 52.5%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #002179;
  border-bottom: 2px solid #002179;
  transform: translateY(-30%) rotate(45deg);
  transition: transform 0.3s ease;
}

.header:not(.scrolled) .nav-item[data-astro-cid-adya3edy].has-mega-menu .nav-link[data-astro-cid-adya3edy]::before {
  border-color: #ffffff;
}

.nav-item[data-astro-cid-adya3edy].has-mega-menu:hover .nav-link[data-astro-cid-adya3edy]::before {
  transform: translateY(0) rotate(45deg);
}

.mega-menu[data-astro-cid-adya3edy] {
  display: none;
  position: fixed;
  top: 5.625rem;
  left: 0;
  background: #fff;
  padding: 4.625rem 0 6.25rem;
  width: 100%;
  height: calc(100vh - 5.625rem);
  z-index: 1000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1.5625rem solid #001650;
}

.mega-menu[data-astro-cid-adya3edy].is-open {
  display: block;
  animation: slideDown 0.4s ease forwards;
}

.mega-menu[data-astro-cid-adya3edy].is-closing {
  animation: slideUp 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

.mega-menu__close[data-astro-cid-adya3edy] {
  position: absolute;
  top: 3.125rem;
  right: 3.125rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  transition: opacity 0.3s ease;
}

.mega-menu__close[data-astro-cid-adya3edy]:hover {
  opacity: 0.7;
}

.mega-menu__close-icon[data-astro-cid-adya3edy] {
  position: relative;
  width: 36px;
  height: 36px;
}

.mega-menu__close-icon[data-astro-cid-adya3edy] span[data-astro-cid-adya3edy] {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #171213;
  transition: transform 0.3s ease;
}

.mega-menu__close-icon[data-astro-cid-adya3edy] span[data-astro-cid-adya3edy]:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mega-menu__close-icon[data-astro-cid-adya3edy] span[data-astro-cid-adya3edy]:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.mega-menu__title[data-astro-cid-adya3edy] {
  font-size: 4.75rem;
  font-weight: bold;
  line-height: calc(113 / 76);
  margin-bottom: 2.5rem;
  font-family: "Oswald", sans-serif;
}

.mega-menu__subtitle[data-astro-cid-adya3edy] {
  display: block;
  font-size: 1.0625rem;
  margin-top: -1.25rem;
  font-family: "Noto Sans JP", sans-serif;
}

.mega-menu__more[data-astro-cid-adya3edy] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  width: 100%;
  gap: 1rem;
  color: #171213;
  font-size: 1.0625rem;
  text-decoration: none;
  padding: 1.0625rem 0;
  position: relative;
  background: linear-gradient(to right, #001650 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.3s ease;
}

.mega-menu__more[data-astro-cid-adya3edy]::before,
.mega-menu__more[data-astro-cid-adya3edy]::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #001650 50%, #ececec 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.3s ease;
}

.mega-menu__more[data-astro-cid-adya3edy]::before {
  top: 0;
}

.mega-menu__more[data-astro-cid-adya3edy]::after {
  bottom: 0;
}

.mega-menu__more[data-astro-cid-adya3edy]:hover {
  background-position: left bottom;
  color: #ffffff !important;
}

.mega-menu__more[data-astro-cid-adya3edy]:hover::before,
.mega-menu__more[data-astro-cid-adya3edy]:hover::after {
  background-position: left bottom;
}

.mega-menu__more[data-astro-cid-adya3edy]:hover .mega-menu__more-icon[data-astro-cid-adya3edy] {
  filter: brightness(0) invert(1);
}

.mega-menu__more-icon[data-astro-cid-adya3edy] {
  transition: filter 0.3s ease;
  position: absolute;
  right: 5%;
}

.mega-menu__services[data-astro-cid-adya3edy] {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  gap: 1.5rem;
  width: 100%;
  margin-top: 1.5625rem;
  justify-content: center;
}

.mega-menu__service[data-astro-cid-adya3edy] {
  position: relative;
  text-decoration: none;
  color: #171213;
  display: block;
}

.mega-menu__service-image[data-astro-cid-adya3edy] {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 300 / 176;
}

.mega-menu__service-image[data-astro-cid-adya3edy]>img[data-astro-cid-adya3edy] {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mega-menu__service-overlay[data-astro-cid-adya3edy] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 22, 80, 0.7);
  transition: opacity 0.3s ease;
}

.mega-menu__service-content[data-astro-cid-adya3edy] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 100%;
  z-index: 1;
  transition: all 0.3s ease;
}

.mega-menu__service-icon-wrap[data-astro-cid-adya3edy] {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-menu__service-icon[data-astro-cid-adya3edy] {
  filter: brightness(0) invert(1);
  width: 50px;
  height: 50px;
}

.mega-menu__service-text[data-astro-cid-adya3edy] {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  display: block;
}

.mega-menu__service-en[data-astro-cid-adya3edy] {
  display: block;
  color: #eee;
  font-size: 2.875rem;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  transition: color 0.3s ease;
  border-bottom: 1.7px solid #eee;
}

.mega-menu__service[data-astro-cid-adya3edy]:hover .mega-menu__service-en[data-astro-cid-adya3edy] {
  color: transparent;
}

.mega-menu__service-more[data-astro-cid-adya3edy] {
  position: absolute;
  bottom: 1rem;
  left: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.mega-menu__service-more-text[data-astro-cid-adya3edy] {
  font-size: 1.875rem;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  color: #171213;
}

.mega-menu__service-more-sub[data-astro-cid-adya3edy] {
  font-size: 0.8125rem;
  color: #171213;
  font-weight: bold;
}

.mega-menu__service[data-astro-cid-adya3edy]:hover .mega-menu__service-overlay[data-astro-cid-adya3edy] {
  opacity: 0;
}

.mega-menu__service[data-astro-cid-adya3edy]:hover .mega-menu__service-content[data-astro-cid-adya3edy] {
  opacity: 0;
  transform: translate(-50%, 20px);
}

.mega-menu__service[data-astro-cid-adya3edy]:hover .mega-menu__service-more[data-astro-cid-adya3edy] {
  opacity: 1;
  transform: translateX(0);
}

.mega-menu__close-text[data-astro-cid-adya3edy] {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #171213;
}

.mega-menu__inner[data-astro-cid-adya3edy] {
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: clamp(2rem, -2.5rem + 8vw, 7.75rem);
  width: 100%;
  max-width: 1440px;
}

@media (max-width: 1240px) {
  .mega-menu__inner[data-astro-cid-adya3edy] {
    gap: 2rem;
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .nav-list[data-astro-cid-adya3edy] {
    display: none;
  }
}

.sp-nav-wrapper[data-astro-cid-j2jpdvjm] {
  position: relative;
  height: 100%;
}

.sp-nav-list[data-astro-cid-j2jpdvjm] {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-bottom: 3.125rem;
}

.sp-nav-item[data-astro-cid-j2jpdvjm] {
  border-bottom: 2px solid rgba(255, 255, 255, 1);
}

.sp-nav-item[data-astro-cid-j2jpdvjm]:last-child {
  border-bottom: none;
}

.sp-nav-link[data-astro-cid-j2jpdvjm] {
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #ffffff;
  padding: 0.3125rem 0 0;
  position: relative;
  gap: 0.375rem;
}

.sp-nav-link__en[data-astro-cid-j2jpdvjm] {
  font-size: 2.75rem;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  line-height: calc(75 / 44);
}

.sp-nav-link__ja[data-astro-cid-j2jpdvjm] {
  font-size: 1rem;
  line-height: calc(20 / 16);
  padding-bottom: 1rem;
}

.toggle-icon[data-astro-cid-j2jpdvjm] {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
}

.toggle-icon[data-astro-cid-j2jpdvjm]::before,
.toggle-icon[data-astro-cid-j2jpdvjm]::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.toggle-icon[data-astro-cid-j2jpdvjm]::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.toggle-icon[data-astro-cid-j2jpdvjm]::after {
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translate(-50%, -50%);
}

.sp-nav-item[data-astro-cid-j2jpdvjm].is-open .toggle-icon[data-astro-cid-j2jpdvjm] {
  display: flex;
  align-items: center;
}

.sp-nav-item[data-astro-cid-j2jpdvjm].is-open .toggle-icon[data-astro-cid-j2jpdvjm]::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.submenu[data-astro-cid-j2jpdvjm] {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.2s ease-out, opacity 0.15s ease-out, transform 0.15s ease-out;
  will-change: max-height, opacity, transform;
}

.sp-nav-item[data-astro-cid-j2jpdvjm].is-open .submenu[data-astro-cid-j2jpdvjm] {
  opacity: 1;
  transform: translateY(0);
  padding: 0.93755rem 0 0;
}

.submenu-item[data-astro-cid-j2jpdvjm] {
  padding: 0 0 1.375rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.sp-nav-item[data-astro-cid-j2jpdvjm].is-open .submenu-item[data-astro-cid-j2jpdvjm] {
  opacity: 1;
  transform: translateY(0);
}

.sp-nav-item[data-astro-cid-j2jpdvjm].is-open .submenu-item[data-astro-cid-j2jpdvjm] {
  transition-delay: calc(0.05s * var(--item-index, 0));
}

.submenu-link[data-astro-cid-j2jpdvjm] {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: opacity 0.3s ease;
}

.submenu-link[data-astro-cid-j2jpdvjm]:hover {
  opacity: 1;
}

.sp-contact[data-astro-cid-j2jpdvjm] {
  padding: 1rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sp-contact__form[data-astro-cid-j2jpdvjm] {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  gap: 12px;
  text-decoration: none;
  color: #001650;
  padding: 1.5rem 0;
  position: relative;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.sp-contact__form[data-astro-cid-j2jpdvjm]:hover {
  opacity: 0.7;
}

.sp-contact__form-icon[data-astro-cid-j2jpdvjm] {
  display: flex;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
}

.sp-contact__form-icon[data-astro-cid-j2jpdvjm] svg[data-astro-cid-j2jpdvjm] path[data-astro-cid-j2jpdvjm] {
  fill: #001650;
}

.sp-contact__tel[data-astro-cid-j2jpdvjm] {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.sp-contact__tel[data-astro-cid-j2jpdvjm]:hover {
  opacity: 0.7;
}

.sp-contact__tel-label[data-astro-cid-j2jpdvjm] {
  font-size: 0.9375rem;
  font-weight: bold;
  color: #ffffff;
}

.sp-contact__tel-icon[data-astro-cid-j2jpdvjm] {
  display: inline-flex;
  align-items: center;
  width: 4rem;
  position: relative;
}

.sp-contact__tel-registered[data-astro-cid-j2jpdvjm] {
  position: absolute;
  right: 0;
  bottom: -12%;
  font-size: 1.1875rem;
  line-height: 1;
  color: #ffffff;
}

.sp-contact__tel-number-wrapper[data-astro-cid-j2jpdvjm] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: -0.5rem 0 0.125rem;
}

.sp-contact__tel-number[data-astro-cid-j2jpdvjm] {
  font-size: 2.375rem;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.sp-contact__tel-note-wrapper[data-astro-cid-j2jpdvjm] {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sp-contact__tel-note-label[data-astro-cid-j2jpdvjm] {
  border: 1px solid #ffffff;
  padding: 0.325rem 2.3rem;
  font-size: 0.9375rem;
  font-weight: bold;
  white-space: nowrap;
  color: #ffffff;
}

.sp-contact__tel-note[data-astro-cid-j2jpdvjm] {
  font-size: 0.9rem;
  font-weight: bold;
  color: #ffffff;
  line-height: calc(21 / 15);
  flex: 1;
}

.sp-break[data-astro-cid-j2jpdvjm] {
  display: block;
}

@media (min-width: 769px) {
  .sp-nav-list[data-astro-cid-j2jpdvjm] {
    display: none;
  }
}

@media (max-width: 768px) {
  .sp-nav-wrapper[data-astro-cid-j2jpdvjm] {
    height: 100svh;
  }
}

.sp-service-top[data-astro-cid-j2jpdvjm] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(242 / 307 * 100%);
  padding: 0.875rem 0;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  gap: 0.5rem;
  background: transparent;
  text-align: center;
}

.sp-service-top[data-astro-cid-j2jpdvjm]::before,
.sp-service-top[data-astro-cid-j2jpdvjm]::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

.sp-service-top[data-astro-cid-j2jpdvjm]::before {
  top: 0;
}

.sp-service-top[data-astro-cid-j2jpdvjm]::after {
  bottom: 0;
}

.sp-service-top__icon[data-astro-cid-j2jpdvjm] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}

.sp-service-top[data-astro-cid-j2jpdvjm]:hover {
  opacity: 0.7;
}

.header[data-astro-cid-qmpwvs2w] {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header[data-astro-cid-qmpwvs2w].fade-in-element {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 1s ease forwards 1s;
}

.header[data-astro-cid-qmpwvs2w].scrolled {
  backdrop-filter: blur(8px);
  background-color: #ffffff;
}

.header[data-astro-cid-qmpwvs2w]:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
}

.header-inner[data-astro-cid-qmpwvs2w] {
  margin: 0 auto;
  padding: 0 3.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.625rem;
}

.logo[data-astro-cid-qmpwvs2w] {
  height: 2.5rem;
  width: 28.5rem;
}

.logo[data-astro-cid-qmpwvs2w] a[data-astro-cid-qmpwvs2w] {
  display: block;
  transition: opacity 0.3s ease;
  position: relative;
  height: 100%;
  width: 100%;
}

.logo[data-astro-cid-qmpwvs2w] a[data-astro-cid-qmpwvs2w]:hover {
  opacity: 0.7;
}

.logo[data-astro-cid-qmpwvs2w] img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

.logo-black[data-astro-cid-qmpwvs2w] {
  opacity: 1;
}

.logo-white[data-astro-cid-qmpwvs2w] {
  opacity: 0;
}

.header[data-astro-cid-qmpwvs2w]:not(.scrolled) .logo-black[data-astro-cid-qmpwvs2w] {
  opacity: 0;
}

.header[data-astro-cid-qmpwvs2w]:not(.scrolled) .logo-white[data-astro-cid-qmpwvs2w] {
  opacity: 1;
}

.scroll-color-text[data-astro-cid-qmpwvs2w] path[data-astro-cid-qmpwvs2w] {
  fill: #171213 !important;
  transition: fill 0.3s ease !important;
}

.header[data-astro-cid-qmpwvs2w]:not(.scrolled) .scroll-color-text[data-astro-cid-qmpwvs2w] path[data-astro-cid-qmpwvs2w] {
  fill: #ffffff !important;
}

.sp-menu-trigger[data-astro-cid-qmpwvs2w] {
  display: none;
  width: 62px;
  height: 50px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  transition: background 0.3s ease;
}

.header[data-astro-cid-qmpwvs2w].scrolled .sp-menu-trigger[data-astro-cid-qmpwvs2w] {
  background: #001650;
}

.sp-menu-trigger[data-astro-cid-qmpwvs2w]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 2.5px);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sp-menu-trigger[data-astro-cid-qmpwvs2w].is-active::after {
  content: "CLOSE";
  font-family: "Oswald", sans-serif;
  font-size: 0.5625rem;
  color: #ffffff;
  opacity: 1;
  top: 90%;
  transform: translate(-50%, -50%);
}

.sp-menu-trigger[data-astro-cid-qmpwvs2w] span[data-astro-cid-qmpwvs2w] {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 31px;
  height: 2px;
  background-color: #171213;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.sp-menu-trigger[data-astro-cid-qmpwvs2w] span[data-astro-cid-qmpwvs2w]:nth-child(3) {
  width: 22px;
  left: calc(50% + 4.5px);
}

.header[data-astro-cid-qmpwvs2w].scrolled .sp-menu-trigger[data-astro-cid-qmpwvs2w] span[data-astro-cid-qmpwvs2w] {
  background-color: #ffffff;
}

.header[data-astro-cid-qmpwvs2w]:not(.scrolled) .sp-menu-trigger[data-astro-cid-qmpwvs2w] span[data-astro-cid-qmpwvs2w] {
  background-color: #ffffff;
}

.sp-menu-trigger[data-astro-cid-qmpwvs2w] span[data-astro-cid-qmpwvs2w]:nth-child(1) {
  top: 15px;
}

.sp-menu-trigger[data-astro-cid-qmpwvs2w] span[data-astro-cid-qmpwvs2w]:nth-child(2) {
  top: 24px;
}

.sp-menu-trigger[data-astro-cid-qmpwvs2w] span[data-astro-cid-qmpwvs2w]:nth-child(3) {
  top: 33px;
}

.sp-menu-trigger[data-astro-cid-qmpwvs2w].is-active span[data-astro-cid-qmpwvs2w] {
  background-color: #ffffff;
  width: 31px !important;
  left: 50% !important;
}

.sp-menu-trigger[data-astro-cid-qmpwvs2w].is-active span[data-astro-cid-qmpwvs2w]:nth-child(1) {
  transform: translate(-50%, 9px) rotate(45deg);
}

.sp-menu-trigger[data-astro-cid-qmpwvs2w].is-active span[data-astro-cid-qmpwvs2w]:nth-child(2) {
  opacity: 0;
}

.sp-menu-trigger[data-astro-cid-qmpwvs2w].is-active span[data-astro-cid-qmpwvs2w]:nth-child(3) {
  transform: translate(-50%, -9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .header-inner[data-astro-cid-qmpwvs2w] {
    padding: 0.625rem 0 0.625rem 0.625rem;
    height: 3.125rem;
  }

  .logo[data-astro-cid-qmpwvs2w] {
    width: 100%;
    height: 100%;
    margin-right: 3rem;
  }

  .logo[data-astro-cid-qmpwvs2w] svg[data-astro-cid-qmpwvs2w] {
    width: 90%;
    height: auto;
    vertical-align: bottom;
  }

  .logo[data-astro-cid-qmpwvs2w] img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .sp-menu-trigger[data-astro-cid-qmpwvs2w] {
    display: block;
  }

  .global-nav[data-astro-cid-qmpwvs2w] {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #001650;
    padding: 2.875rem 2rem 2rem;
    overflow-y: auto;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background-image: var(--spNavBg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
  }

  .global-nav[data-astro-cid-qmpwvs2w].is-open {
    transform: translateX(-100%);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 1;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact[data-astro-cid-zhsja2uw] {
  background-color: #f6f6f6;
  padding: 6.9375rem 0;
}

.contact__inner[data-astro-cid-zhsja2uw] {
  max-width: 1200px;
  margin: 0 auto;
}

.contact__top[data-astro-cid-zhsja2uw] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.7rem;
  margin-bottom: 2.8rem;
  border-bottom: 2px solid #e7e7e7;
  padding: 0 6.625rem;
}

.contact__heading[data-astro-cid-zhsja2uw] {
  flex: 0 0 40%;
}

.contact__title[data-astro-cid-zhsja2uw] {
  font-size: 5.625rem;
  font-weight: bold;
  margin-bottom: 2.375rem;
  font-family: "Oswald", sans-serif;
}

.contact__subtitle[data-astro-cid-zhsja2uw] {
  display: block;
  font-size: 1.5rem;
  margin-top: -1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}

.contact__text[data-astro-cid-zhsja2uw] {
  flex: 0 0 60%;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.contact__bottom[data-astro-cid-zhsja2uw] {
  display: flex;
  gap: 9rem;
  padding: 0 7.875rem 3rem;
  border-bottom: 2px solid #e7e7e7;
}

.contact__form[data-astro-cid-zhsja2uw] {
  width: 25.5625rem;
  height: 6.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4375rem;
  font-weight: bold;
  gap: 0.90625rem;
  text-decoration: none;
  color: #333;
  padding: 1rem 2rem;
  position: relative;
  border: 1px solid #171213;

  &::before,
  &::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #001650 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.3s ease;
  }

  &::before {
    top: 0;
  }

  &::after {
    bottom: 0;
  }

  transition: all 0.3s ease;
  background: linear-gradient(to right, #001650 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right bottom;
}

.contact__form[data-astro-cid-zhsja2uw]:hover {
  background-position: left bottom;
  color: #ffffff;

  &::before,
  &::after {
    background-position: left bottom;
  }
}

.contact__form-icon[data-astro-cid-zhsja2uw] {
  display: flex;
  align-items: center;
}

.contact__form-icon[data-astro-cid-zhsja2uw] svg[data-astro-cid-zhsja2uw] path[data-astro-cid-zhsja2uw] {
  transition: fill 0.3s ease;
}

.contact__form[data-astro-cid-zhsja2uw]:hover .contact__form-icon[data-astro-cid-zhsja2uw] svg[data-astro-cid-zhsja2uw] path[data-astro-cid-zhsja2uw] {
  fill: #ffffff;
}

.contact__tel[data-astro-cid-zhsja2uw] {
  flex: 1;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact__tel[data-astro-cid-zhsja2uw]:hover {
  opacity: 0.7;
}

.contact__tel-label[data-astro-cid-zhsja2uw] {
  font-size: 1.1875rem;
  font-weight: bold;
  margin-bottom: -0.5rem;
  color: #333;
}

.contact__tel-icon[data-astro-cid-zhsja2uw] {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
}

.contact__tel-number-wrapper[data-astro-cid-zhsja2uw] {
  display: flex;
  align-items: center;
  margin-top: -1rem;
}

.contact__tel-number[data-astro-cid-zhsja2uw] {
  font-size: 3.125rem;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  color: #002179;
  text-decoration: none;
  display: inline-block;
}

.contact__tel-note-wrapper[data-astro-cid-zhsja2uw] {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: -0.8rem;
}

.contact__tel-note-label[data-astro-cid-zhsja2uw] {
  border: 1px solid #171213;
  padding: 0.05rem 0.525rem;
  font-size: 0.8125rem;
  font-weight: bold;
  white-space: nowrap;
  color: #171213;
}

.contact__tel-note[data-astro-cid-zhsja2uw] {
  font-size: 0.875rem;
  font-weight: bold;
  color: #171213;
  line-height: 1.6;
}

.sp-break[data-astro-cid-zhsja2uw] {
  display: none;
}

@media (max-width: 768px) {
  .contact[data-astro-cid-zhsja2uw] {
    padding: 2.625rem 0 1.5rem;
  }

  .contact__top[data-astro-cid-zhsja2uw] {
    flex-direction: column;
    padding: 0 0 1.4375rem;
    margin: 0 0.9375rem 1.75rem;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid #e7e7e7;
  }

  .contact__title[data-astro-cid-zhsja2uw] {
    font-size: 3.125rem;
    margin-bottom: 0;
  }

  .contact__subtitle[data-astro-cid-zhsja2uw] {
    font-size: 0.9375rem;
    margin-top: -0.75rem;
  }

  .contact__text[data-astro-cid-zhsja2uw] {
    font-size: 0.9375rem;
    line-height: calc(26 / 15);
  }

  .contact__heading[data-astro-cid-zhsja2uw] {
    margin-bottom: 1.4375rem;
  }

  .contact__bottom[data-astro-cid-zhsja2uw] {
    flex-direction: column;
    margin: 0 0.9375rem 1.75rem;
    padding: 0 1.125rem 1.75rem;
    gap: 0.9375rem;
    border-bottom: 1px solid #e7e7e7;
  }

  .contact__form[data-astro-cid-zhsja2uw] {
    font-size: 1rem;
    padding: 1.5rem 1rem;
    background-position: left bottom;
    color: #ffffff;
    width: 100%;
    height: auto;

    &::before,
    &::after {
      background-position: left bottom;
    }

    .contact__form-icon svg path {
      fill: #ffffff;
    }
  }

  .contact__tel-label[data-astro-cid-zhsja2uw] {
    font-size: 0.9375rem;
  }

  .contact__tel[data-astro-cid-zhsja2uw] {
    display: flex;
    flex-direction: column;
  }

  .contact__tel-icon[data-astro-cid-zhsja2uw] {
    margin-right: 0;
    width: 4rem;
  }

  .contact__tel-number-wrapper[data-astro-cid-zhsja2uw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: -0.25rem 0 0.125rem;
  }

  .contact__tel-number[data-astro-cid-zhsja2uw] {
    font-size: 2.375rem;
    letter-spacing: 0.05em;
  }

  .contact__tel-note-wrapper[data-astro-cid-zhsja2uw] {
    margin-top: 0;
    gap: 1.5rem;
    align-items: end;
  }

  .contact__tel-note-label[data-astro-cid-zhsja2uw] {
    padding: 0.5rem 2.375rem;
    font-size: 0.875rem;
    font-weight: bold;
  }

  .contact__tel-note[data-astro-cid-zhsja2uw] {
    font-size: 0.875rem;
    font-weight: bold;
    flex: 1;
  }

  .sp-break[data-astro-cid-zhsja2uw] {
    display: block;
  }
}

.footer[data-astro-cid-l3trhy4j] {
  position: relative;
  background: #fff;
  padding: 6.8125rem 6rem 2.5rem;
}

.footer-inner[data-astro-cid-l3trhy4j] {
  min-width: 1200px;
  margin: 0 auto;
}

.footer-main[data-astro-cid-l3trhy4j] {
  display: flex;
  margin-bottom: 7.6875rem;
  justify-content: center;
}

.footer-left[data-astro-cid-l3trhy4j] {
  flex-basis: 30%;
  min-width: 300px;
}

.footer-logo[data-astro-cid-l3trhy4j] {
  margin-bottom: 1.4375rem;
  max-width: 19.4375rem;
  height: 6.75rem;
}

.footer-logo[data-astro-cid-l3trhy4j] img[data-astro-cid-l3trhy4j] {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-address[data-astro-cid-l3trhy4j] {
  font-style: normal;
  font-size: 0.9375rem;
  margin-bottom: 4.3125rem;
  line-height: 1.6;
}

.daigas-text[data-astro-cid-l3trhy4j] {
  font-size: 0.875rem;
}

.daigas-logo[data-astro-cid-l3trhy4j] {
  max-width: 9.375rem;
  height: 3.78125rem;
}

.daigas-logo[data-astro-cid-l3trhy4j] img[data-astro-cid-l3trhy4j] {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-right[data-astro-cid-l3trhy4j] {
  flex-basis: 50%;
}

.footer-nav-group[data-astro-cid-l3trhy4j] {
  display: flex;
  gap: 2.3125rem;
  margin-top: 2.125rem;
  min-width: 605px;
  margin-left: 11rem;
}

.footer-nav-left[data-astro-cid-l3trhy4j] {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-nav[data-astro-cid-l3trhy4j] {
  margin-bottom: 1rem;
}

.footer-nav[data-astro-cid-l3trhy4j] h3[data-astro-cid-l3trhy4j] a[data-astro-cid-l3trhy4j],
.footer-nav[data-astro-cid-l3trhy4j] a[data-astro-cid-l3trhy4j],
.footer-nav-contact[data-astro-cid-l3trhy4j] a[data-astro-cid-l3trhy4j],
.footer-links[data-astro-cid-l3trhy4j] a[data-astro-cid-l3trhy4j] {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-logo-link[data-astro-cid-l3trhy4j]:hover,
.footer-nav[data-astro-cid-l3trhy4j] h3[data-astro-cid-l3trhy4j] a[data-astro-cid-l3trhy4j]:hover,
.footer-nav[data-astro-cid-l3trhy4j] a[data-astro-cid-l3trhy4j]:hover,
.footer-nav-contact[data-astro-cid-l3trhy4j] a[data-astro-cid-l3trhy4j]:hover,
.footer-links[data-astro-cid-l3trhy4j] a[data-astro-cid-l3trhy4j]:hover {
  opacity: 0.7;
}

.footer-nav[data-astro-cid-l3trhy4j] h3[data-astro-cid-l3trhy4j] {
  font-size: 1.0625rem;
  margin-bottom: 1.0625rem;
}

.footer-nav[data-astro-cid-l3trhy4j] ul[data-astro-cid-l3trhy4j] {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav[data-astro-cid-l3trhy4j] li[data-astro-cid-l3trhy4j] {
  margin-bottom: 0.5rem;
}

.footer-nav[data-astro-cid-l3trhy4j] a[data-astro-cid-l3trhy4j] {
  font-size: 0.9375rem;
}

.footer-nav-contact[data-astro-cid-l3trhy4j] h3[data-astro-cid-l3trhy4j] {
  margin-bottom: 2.625rem;
  font-size: 1rem;
}

.footer-nav-contact[data-astro-cid-l3trhy4j] a[data-astro-cid-l3trhy4j] {
  font-size: 0.9rem;
}

.footer-bottom[data-astro-cid-l3trhy4j] {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links[data-astro-cid-l3trhy4j] {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2rem;
}

.footer-links-bullet[data-astro-cid-l3trhy4j] {
  color: #bcbcbc;
  margin-right: 0.5em;
}

.footer-links[data-astro-cid-l3trhy4j] a[data-astro-cid-l3trhy4j] {
  color: #171213;
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-links-text[data-astro-cid-l3trhy4j] {
  text-decoration: underline;
  transition: text-decoration 0.3s ease;
}

.footer-links[data-astro-cid-l3trhy4j] a[data-astro-cid-l3trhy4j]:hover .footer-links-text[data-astro-cid-l3trhy4j] {
  text-decoration: none;
}

.external-link[data-astro-cid-l3trhy4j] {
  position: relative;
  padding-right: 1.5em;
  display: inline-block;
}

.external-link[data-astro-cid-l3trhy4j]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23001650'%3E%3Cpath d='M5 3c-1.093 0-2 .907-2 2v14c0 1.093.907 2 2 2h14c1.093 0 2-.907 2-2v-7h-2v7H5V5h7V3H5zm9 0v2h3.586l-9.293 9.293 1.414 1.414L19 6.414V10h2V3h-7z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.page-top[data-astro-cid-l3trhy4j] {
  position: absolute;
  right: 175px;
  bottom: 5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  padding: 0;
}

.page-top[data-astro-cid-l3trhy4j]:hover {
  opacity: 0.8;
}

.page-top-arrow[data-astro-cid-l3trhy4j] {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
}

.page-top-arrow[data-astro-cid-l3trhy4j]::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  width: 6px;
  height: 85%;
  background-color: #005dab;
  transform: translateX(-50%);
}

.page-top-arrow[data-astro-cid-l3trhy4j]::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 6px solid #005dab;
  border-right: 6px solid #005dab;
  transform: translate(-50%, 0) rotate(-45deg);
}

@media (hover: hover) {
  .page-top[data-astro-cid-l3trhy4j]:hover {
    opacity: 0.8;
  }
}

.copyright[data-astro-cid-l3trhy4j] {
  background: #001650;
  padding: 1.75rem 0 1.75rem;
  text-align: center;
}

.copyright[data-astro-cid-l3trhy4j] p[data-astro-cid-l3trhy4j] {
  color: #fff;
  font-size: 0.9375rem;
  margin: 0;
}

.sp-nav[data-astro-cid-l3trhy4j] {
  display: none;
}

.sp-only[data-astro-cid-l3trhy4j] {
  display: none;
}

@media (max-width: 768px) {

  .pc-nav[data-astro-cid-l3trhy4j],
  .footer-nav-contact[data-astro-cid-l3trhy4j] {
    display: none;
  }

  .sp-nav[data-astro-cid-l3trhy4j] {
    display: block;
    width: 100%;
  }

  .sp-only[data-astro-cid-l3trhy4j] {
    display: block;
  }

  .pc-only[data-astro-cid-l3trhy4j] {
    display: none;
  }

  .footer[data-astro-cid-l3trhy4j] {
    padding: 3.125rem 0.9375rem 6.3125rem;
  }

  .footer-inner[data-astro-cid-l3trhy4j] {
    min-width: 100%;
  }

  .footer-main[data-astro-cid-l3trhy4j] {
    flex-direction: column;
    margin-bottom: 2.25rem;
  }

  .footer-logo-link[data-astro-cid-l3trhy4j] {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-left[data-astro-cid-l3trhy4j] {
    flex-basis: 100%;
    margin-bottom: 2.3125rem;
    text-align: center;
  }

  .footer-logo[data-astro-cid-l3trhy4j] {
    max-width: 234px;
    margin: 0 auto 1rem;
    height: auto;
    display: flex;
    justify-content: center;
  }

  .footer-logo[data-astro-cid-l3trhy4j] img[data-astro-cid-l3trhy4j] {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .footer-address[data-astro-cid-l3trhy4j] {
    font-size: 0.75rem;
    margin-bottom: 2.3125rem;
  }

  .daigas-text[data-astro-cid-l3trhy4j] {
    font-size: 0.6875rem;
  }

  .footer-right[data-astro-cid-l3trhy4j] {
    flex-basis: 100%;
  }

  .footer-nav-group[data-astro-cid-l3trhy4j] {
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    margin-left: 0;
    min-width: 100%;
  }

  .footer-nav-left[data-astro-cid-l3trhy4j] {
    gap: 0;
  }

  .footer-nav[data-astro-cid-l3trhy4j] {
    margin-bottom: 0;
  }

  .footer-nav[data-astro-cid-l3trhy4j]:not(:first-child) h3[data-astro-cid-l3trhy4j] {
    border-top: none;
  }

  .footer-nav[data-astro-cid-l3trhy4j] h3[data-astro-cid-l3trhy4j] {
    margin: 0;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
  }

  .footer-nav-toggle[data-astro-cid-l3trhy4j][aria-expanded=true] {
    border-bottom: none;
  }

  .footer-nav[data-astro-cid-l3trhy4j] h3[data-astro-cid-l3trhy4j]:has(.footer-nav-toggle[aria-expanded="true"]) {
    border-bottom: none;
  }

  .footer-nav[data-astro-cid-l3trhy4j] ul[data-astro-cid-l3trhy4j] {
    display: block;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.2s ease-out, opacity 0.15s ease-out, transform 0.15s ease-out;
    will-change: max-height, opacity, transform;
  }

  .footer-nav[data-astro-cid-l3trhy4j] ul[data-astro-cid-l3trhy4j].is-open {
    opacity: 1;
    transform: translateY(0);
    margin-left: 0.9375rem;
  }

  .footer-nav[data-astro-cid-l3trhy4j] li[data-astro-cid-l3trhy4j] {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    font-size: 0.875rem;
    margin-bottom: 1.0625rem;
  }

  .footer-nav[data-astro-cid-l3trhy4j] ul[data-astro-cid-l3trhy4j].is-open li[data-astro-cid-l3trhy4j] {
    opacity: 1;
    transform: translateY(0);
  }

  .footer-nav[data-astro-cid-l3trhy4j] ul[data-astro-cid-l3trhy4j].is-open li[data-astro-cid-l3trhy4j] {
    transition-delay: calc(0.05s * var(--item-index, 0));
  }

  .footer-nav-toggle[data-astro-cid-l3trhy4j] {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 1.125rem 0;
    font-size: 0.875rem;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    min-height: 3.5rem;
  }

  .footer-nav-toggle[data-astro-cid-l3trhy4j].no-accordion {
    cursor: default;
    text-align: left;
  }

  .toggle-icon[data-astro-cid-l3trhy4j] {
    position: relative;
    width: 1rem;
    height: 1rem;
  }

  .toggle-icon[data-astro-cid-l3trhy4j]::before,
  .toggle-icon[data-astro-cid-l3trhy4j]::after {
    content: "";
    position: absolute;
    background-color: #001650;
    transition: transform 0.3s ease;
    transform-origin: center;
  }

  .toggle-icon[data-astro-cid-l3trhy4j]::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
  }

  .toggle-icon[data-astro-cid-l3trhy4j]::after {
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translate(-50%, -50%);
  }

  .footer-nav-toggle[data-astro-cid-l3trhy4j][aria-expanded=true] .toggle-icon[data-astro-cid-l3trhy4j]::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .footer-links[data-astro-cid-l3trhy4j] {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .daigas-logo[data-astro-cid-l3trhy4j] img[data-astro-cid-l3trhy4j] {
    width: 120px;
    height: auto;
  }

  .page-top[data-astro-cid-l3trhy4j] {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
  }

  .page-top-arrow[data-astro-cid-l3trhy4j] {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 auto 1.0625rem;
  }

  .page-top-arrow[data-astro-cid-l3trhy4j]::before {
    height: 85%;
    width: 4px;
  }

  .page-top-arrow[data-astro-cid-l3trhy4j]::after {
    width: 14px;
    height: 14px;
    border-width: 4px;
  }

  .daigas-logo[data-astro-cid-l3trhy4j] {
    max-width: 150px;
    margin: 0 auto;
  }

  .footer-links-text[data-astro-cid-l3trhy4j] {
    font-size: 0.8125rem;
  }

  .footer-links-bullet[data-astro-cid-l3trhy4j] {
    font-size: 0.6875rem;
    margin-right: 0.25rem;
  }

  .copyright[data-astro-cid-l3trhy4j] {
    padding: 1.375rem 0;
  }

  .copyright[data-astro-cid-l3trhy4j] p[data-astro-cid-l3trhy4j] {
    font-size: 0.8125rem;
  }

  .footer-nav-more[data-astro-cid-l3trhy4j] {
    display: block;
  }

  .footer-nav-more-link[data-astro-cid-l3trhy4j] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(242 / 307 * 100%);
    padding: 0.875rem 0;
    color: #171213 !important;
    text-decoration: none;
    position: relative;
    gap: 0.5rem;
    background: transparent;
    text-align: center;
  }

  .footer-nav-more-link[data-astro-cid-l3trhy4j]::before,
  .footer-nav-more-link[data-astro-cid-l3trhy4j]::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #171213;
  }

  .footer-nav-more-link[data-astro-cid-l3trhy4j]::before {
    top: 0;
  }

  .footer-nav-more-link[data-astro-cid-l3trhy4j]::after {
    bottom: 0;
  }

  .footer-nav-more-icon[data-astro-cid-l3trhy4j] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    color: #171213;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer-nav-more-icon[data-astro-cid-l3trhy4j] svg[data-astro-cid-l3trhy4j] {
    width: 12px;
    height: 12px;
  }

  .footer-nav-more-link[data-astro-cid-l3trhy4j]:hover {
    opacity: 0.7;
  }

  .footer-nav-more-link[data-astro-cid-l3trhy4j] {
    max-width: calc(242 / 307 * 100%);
  }
}

.footer-nav-toggle[data-astro-cid-l3trhy4j].no-accordion a[data-astro-cid-l3trhy4j] {
  text-decoration: none;
  color: #333;
  display: block;
  width: 100%;
}

.footer-nav-toggle[data-astro-cid-l3trhy4j].no-accordion:hover a[data-astro-cid-l3trhy4j] {
  opacity: 0.7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;

  @media (max-width: 768px) {
    scroll-padding-top: 50px;
  }
}

html,
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {

  html,
  body {
    min-height: 100svh;
  }
}

main {
  width: 100%;
  animation: dissolve 0.6s ease-out;
}

@keyframes dissolve {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

:lang(en) {
  font-family: 'Oswald', sans-serif;
}