@charset "UTF-8";
/* Scss Document */
/* Scss Document */
@media only screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (max-width: 958px) {
  .tab {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media only screen and (max-width: 640px) {
  .sp {
    display: block !important;
  }
}

.white {
  color: #fff !important;
}

.anchor {
  margin-top: -124px;
  padding-top: 124px;
}

.page__nav {
  margin-bottom: 9rem;
}
@media only screen and (max-width: 640px) {
  .page__nav {
    margin-bottom: calc(50 / 640 * 100vw);
  }
}

.animation {
  opacity: 0;
}

.isFade {
  opacity: 0;
  position: relative;
  bottom: -3em;
}
.isFade.isPlay {
  animation: fadein 1s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
    bottom: -3em;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 2s, transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity 2s, transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}

.button_list {
  margin: 0 !important;
  display: flex;
  justify-content: center;
  gap: 2em;
}
.button_item {
  margin: 0 !important;
  list-style: none !important;
}
.button_item a {
  padding: 0.75em 3em 0.75em 2em;
  background: #fff;
  border: solid 3px #203D8A;
  border-radius: 2em;
  text-align: left;
  font-size: 2rem;
  box-shadow: 0.3rem 0.3rem 0 0 #203D8A;
  position: relative;
  font-weight: 700;
  background: #fff url(../image/arrow_navy.svg) no-repeat right 1em center;
  background-size: 2.4rem auto;
}
@media only screen and (max-width: 640px) {
  .button_item a {
    background-size: calc(20 / 640 * 100vw) auto;
  }
}
@media only screen and (max-width: 640px) {
  .button_item a {
    border-radius: calc(16 / 640 * 100vw);
    font-size: calc(20 / 640 * 100vw);
    box-shadow: calc(3 / 640 * 100vw) calc(3 / 640 * 100vw) 0 0 #203D8A;
  }
}

.mt-05em {
  margin-top: 0.5em;
}

.mt-1em {
  margin-top: 1em;
}

.mt-2em {
  margin-top: 2em;
}

.mt-3em {
  margin-top: 3em;
}

.mb-05em {
  margin-bottom: 0.5em;
}

.mb-1em {
  margin-bottom: 1em;
}

.mb-2em {
  margin-bottom: 2em;
}

.mb-3em {
  margin-bottom: 3em;
}

.list_small {
  margin-left: 0;
}
.list_small li {
  margin-left: 0 !important;
  padding-left: 1em;
  list-style: none !important;
  position: relative;
}
.list_small li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.verticalmiddle {
  vertical-align: middle;
}/*# sourceMappingURL=module.css.map */