<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --fs-body-m: 0.875rem;
  --fs-body: 0.875rem;
  --fs-body-s: 0.75rem;
  --fs-body-xs: 0.625rem;
  --fs-h2: 1.5rem;
  --fs-h3: 1.25rem;
  --fs-h4: 1.125rem;
  --fs-h5: 1rem;
  --fs-h6: 0.875rem;
  --fs-hero: 0.875rem;
  --fs-ttl: 1.75rem;
  --fs-hero-l: 1.75rem;
  --fs-32-r: 1.5rem;
  --fs-28-r: 1.25rem;
  --fs-24-r: 1.125rem;
  --fs-20-r: 1rem;
  --fs-18-r: 0.875rem;
  --fs-sectionTtl: 3.75rem;
  --fs-point: 2.375rem;
  --price-h: 34px;
  --header-h:56px;
  --header-h-n:-56px;
  --hero-h:400px;
  --spc88-r: 24px;
  --spc64-r: 40px;
  --spc40-r: 24px;
  --spc24-r: 16px;
}
@media screen and (min-width: 769px) {
  :root {
    --fs-body-m: 1rem;
    --fs-hero: 1.125rem;
    --fs-hero-l: 2.5rem;
    --fs-32-r: 2rem;
    --fs-28-r: 1.75rem;
    --fs-24-r: 1.5rem;
    --fs-20-r: 1.25rem;
    --fs-18-r: 1.125rem;
    --fs-sectionTtl: 6.25rem;
    --fs-h2: 2rem;
    --fs-h3: 1.75rem;
    --fs-h4: 1.5rem;
    --fs-h5: 1.25rem;
    --fs-h6: 1.125rem;
    --fs-point: 3rem;
    --fs-ttl: 2.5rem;
    --header-h:111px;
    --header-h-n:-111px;
    --hero-h:536px;
    --spc88-r: 88px;
    --spc64-r: 64px;
    --spc40-r: 40px;
    --spc24-r: 24px;
  }
}

/*========= Breadcrumb =========*/
.Breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: auto;
  width: 100%;
  gap: 8px 0px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.625rem;
}
@media screen and (min-width: 769px) {
  .Breadcrumb {
    justify-content: flex-start;
  }
}

.Breadcrumb__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.Breadcrumb__item + .Breadcrumb__item {
  margin-left: 0.5em;
}
.Breadcrumb__item + .Breadcrumb__item::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/icon_slash.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.5em;
}
.Breadcrumb__item a {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .Breadcrumb__item a:hover {
    text-decoration: none;
  }
}

/*========= LinkCard =========*/
.LinkCard {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  border-radius: 8px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .LinkCard {
    flex-direction: column;
  }
}
.LinkCard::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(20, 24, 33, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .LinkCard:hover::before {
    opacity: 1;
  }
}
.LinkCard a {
  text-decoration: none;
}

.LinkCard__desc {
  color: #54575F;
}

.LinkCard__title {
  font-size: var(--fs-h5);
  color: #0087D2;
  font-weight: 500;
}

.LinkCard__text {
  padding: 24px;
}
.LinkCard__text &gt; * + * {
  margin-top: 8px;
}

.LinkCard__image {
  margin-top: auto;
}

.LinkCard__wrapLink::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
}

.SiteFooter {
  background-color: #0b4368;
}

@media screen and (min-width: 769px) {
  .FixedArea + .SiteFooter {
    padding-bottom: 0px;
  }
}

@media screen and (min-width: 769px) {
  .FixedArea.-single + .SiteFooter {
    padding-bottom: 0px;
  }
}

.SiteFooter__main {
  background: #005585;
  padding-top: 24px;
  padding-bottom: 24px;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .SiteFooter__main {
    padding-top: 40px;
    padding-bottom: 64px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.SiteFooter__sub {
  background: #0b4368;
  padding-top: 24px;
  padding-bottom: 40px;
}

.SiteFooter__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 769px) {
  .SiteFooter__wrapper {
    flex-direction: row;
  }
}

.SiteFooter__item {
  flex-basis: 100%;
}
.SiteFooter__item.-buttonStack &gt; * + * {
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .SiteFooter__item.-buttonStack &gt; * + * {
    margin-top: 8px;
  }
}

.SiteFooter__copyright {
  display: block;
  font-size: 0.625rem;
  color: #ffffff;
  font-weight: 300;
  margin-top: 16px;
}

.SiteFooter__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--fs-body-s);
  width: 100%;
  gap: 32px;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .SiteFooter__menu {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
  }
}
.SiteFooter__menu a {
  text-decoration: none;
}

.SiteFooter__unit {
  display: flex;
  flex-direction: column;
  gap: 24px 24px;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .SiteFooter__unit {
    flex-direction: row;
    align-items: flex-end;
  }
}

.SiteFooter__menuUnit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px 24px;
}
@media screen and (min-width: 769px) {
  .SiteFooter__menuUnit {
    flex-direction: row;
  }
}

.SiteFooter__menuList {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-shrink: 0;
}
.SiteFooter__menuList.-wrap {
  flex-wrap: wrap;
  flex-shrink: 1;
}

.SiteFooter__menuItem {
  font-size: 0.625rem;
  font-weight: 400;
}

.SiteFooter__button {
  display: flex;
  justify-content: space-between;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  border: #ffffff solid 1px;
  border-radius: 8px;
  padding: 19px 24px;
  transition: background-color 0.3s;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .SiteFooter__button:hover {
    background-color: #006EAC;
  }
}

.SiteFooter__pageTop {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: #006EAC solid 1px;
}
@media screen and (min-width: 769px) {
  .SiteFooter__pageTop {
    border: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
}/*# sourceMappingURL=footer.css.map */</pre></body></html>