@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*--
  font-family
--*/
/*--
  font-weight
  Noto Sans
--*/
/*--
  colors
--*/
/*--
  break points
--*/
/*--
  width
--*/
/**
 * font-size
 *
 * @param $fontSize
 */
/**
 * letter-spacing
 *
 * @param $letterSpacingValue
 * @param $isMinus
 */
/**
 * line-height
 *
 * @param $fs
 * @param $lh
 */
/*--
  media queries
--*/
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  max-width: 100vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #231815;
  line-height: 1.6;
  overflow-x: hidden;
}

p:not([class]) {
  margin: 1em 0;
}
p:not([class]):first-child {
  margin: 0 0 1em;
}
p:not([class]):last-child {
  margin: 1em 0 0;
}

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

ol:not([class]) {
  position: relative;
}
ol:not([class]) > li {
  padding: 0 0 0 2em;
  margin: 1.5em 0;
}
ol:not([class]) > li:first-child {
  margin: 0 0 1.5em;
}
ol:not([class]) > li:last-child {
  margin: 1.5em 0 0;
}
ol:not([class]) > li::before {
  position: absolute;
  left: 0;
  content: "(" counter(list-item) ")";
}

ul:not([class]) {
  position: relative;
}
ul:not([class]) > li {
  padding: 0 0 0 1em;
}
ul:not([class]) > li::before {
  position: absolute;
  left: 0;
  content: "・";
}

dl:not([class]):has(> div) {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

table {
  width: 100%;
}
table th,
table td {
  font-size: 1.125rem;
  border: 1px solid #fff;
}
table th {
  font-weight: 700;
  color: #fff;
  padding: 24px;
  text-align: center;
  background-color: #024EA2;
}
table td {
  padding: 8px 16px;
}
table tr:nth-of-type(odd) td {
  background-color: #C9DAF0;
}
table tr:nth-of-type(even) td {
  background-color: #D9ECFA;
}

a {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
a:hover {
  opacity: 0.5;
}
a:not([class]) {
  color: #024EA2;
  text-decoration: underline;
}
a:not([class])[href=""] {
  color: initial;
  pointer-events: none;
  text-decoration: none;
}

.c-visually-hidden {
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.link-button {
  display: block;
  width: fit-content;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #024EA2;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  border-bottom: 1px solid #231815;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 16px;
  }
}
.header__yokohama {
  margin: 0 36px 0 0;
}
@media screen and (max-width: 768px) {
  .header__yokohama {
    margin: 0;
  }
}
.header__yokohama img {
  width: auto;
  height: 58px;
}
@media screen and (max-width: 768px) {
  .header__yokohama img {
    height: 33px;
  }
}
.header__title img {
  width: auto;
  height: 66px;
}
@media screen and (max-width: 768px) {
  .header__title img {
    height: 45px;
  }
}
.header__button {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__button {
    display: block;
    width: 30px;
  }
}
.header__button[aria-expanded=true] .open {
  display: none;
}
.header__button[aria-expanded=true] .close {
  display: block;
}
.header__button[aria-expanded=false] .open {
  display: block;
}
.header__button[aria-expanded=false] .close {
  display: none;
}
.header__menu {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .header__menu {
    position: fixed;
    top: 78px;
    left: 101%;
    z-index: 99999;
    gap: 32px;
    width: 100%;
    padding: 20px;
    transition: left 0.3s linear;
    box-shadow: 0 4px 4px 4px rgba(0, 0, 0, 0.3);
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .header__menu.active {
    display: flex;
    left: 0;
  }
}
.header__menu__top, .header__menu__bottom {
  display: flex;
  gap: 32px;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .header__menu__top, .header__menu__bottom {
    gap: 32px;
    flex-direction: column;
  }
}
.header__menu__top .link, .header__menu__bottom .link {
  display: flex;
  gap: 8px;
  font-weight: 700;
  font-size: min(1.5vw, 1.125rem);
}
@media screen and (max-width: 768px) {
  .header__menu__top .link, .header__menu__bottom .link {
    font-size: 1.125rem;
  }
}
.header__menu__top .link[aria-current=true], .header__menu__bottom .link[aria-current=true] {
  color: #024EA2;
}
@media screen and (max-width: 768px) {
  .header__menu__top .link::before, .header__menu__bottom .link::before {
    content: "■";
    color: #009FE8;
  }
}
.header__menu__top {
  padding: 0 0 5px;
  border-bottom: 1px solid #009FE8;
}
@media screen and (max-width: 768px) {
  .header__menu__top {
    padding: 0;
    border-bottom: unset;
  }
}
.header__menu__bottom {
  padding: 8px 0 0;
}
@media screen and (max-width: 768px) {
  .header__menu__bottom {
    padding: 0;
  }
}

.page-top-link {
  position: fixed;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 84px;
  aspect-ratio: 1;
  background-color: #D9ECFA;
}
@media screen and (max-width: 768px) {
  .page-top-link {
    width: 60px;
  }
}
.page-top-link svg {
  width: 36px;
}
@media screen and (max-width: 768px) {
  .page-top-link svg {
    width: 18px;
  }
}

.footer {
  background-color: #003270;
}
.footer__title {
  display: block;
  max-width: 510px;
  padding: 64px 20px 0;
  margin: 0 auto 48px;
}
@media screen and (max-width: 768px) {
  .footer__title {
    padding: 30px 20px 0;
    margin: 0 auto 24px;
  }
}
.footer__nav {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: center;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    gap: 32px;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 20px;
    margin: 0 0 32px;
  }
}
.footer__nav__top, .footer__nav__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .footer__nav__top, .footer__nav__bottom {
    flex: 1;
    flex-direction: column;
  }
}
.footer__nav .link {
  display: flex;
  gap: 8px;
  font-size: 1.125rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__nav .link {
    font-size: 0.9375rem;
  }
}
.footer__nav .link::before {
  content: "・";
  color: #009FE8;
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: center;
  margin: 0 0 40px;
}
.footer__links__item {
  color: #fff;
  text-decoration: underline;
}
.footer__x {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .footer__x {
    margin: 0 0 34px;
  }
}
.footer__x__logo {
  width: 27px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .footer__x__logo {
    width: 30px;
  }
}
.footer__bottom {
  padding: 8px 20px;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    padding: 8px 20px;
  }
}
.footer__bottom__yokohama {
  display: inline-block;
}
.footer__bottom__yokohama img {
  width: auto;
  max-height: 68px;
}
@media screen and (max-width: 768px) {
  .footer__bottom__yokohama img {
    max-height: 45px;
  }
}

/*# sourceMappingURL=style.css.map */
