/* Scss Document */
iframe {
  border: 0;
}

.center {
  text-align: center;
}
.center img {
  margin: 0 auto;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.notes {
  margin-top: 1em;
  font-size: 1.3rem;
}

.text-red {
  color: #d61c24;
}

a.nolink {
  pointer-events: none;
  opacity: 0.3;
}

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

@media only screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
}
.anchor {
  position: absolute;
  top: -122px;
  left: 0;
}
@media only screen and (max-width: 640px) {
  .anchor {
    top: -19vw;
  }
}

.page-nav {
  margin-bottom: 4em;
}
.page-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 0 30px;
  width: 1200px;
}
@media only screen and (max-width: 640px) {
  .page-nav ul {
    padding: 0;
    width: 100%;
  }
}
.page-nav ul li {
  border-left: solid 1px #251d1a;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (max-width: 640px) {
  .page-nav ul li {
    font-size: 1.4rem;
  }
}
.page-nav ul li:first-child {
  border-left: none;
}
.page-nav ul li a,
.page-nav ul li span {
  padding: 0 1.5em;
  display: block;
  text-decoration: none;
  color: #251d1a;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .page-nav ul li a,
.page-nav ul li span {
    padding: 0 0.75em;
  }
}

.btn-more a {
  border-radius: 2em;
  display: inline-block;
  width: 19rem;
  font-size: 2.4rem;
  font-weight: bold;
  color: rgb(31, 59, 149);
  background: #fff;
  text-decoration: none;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .btn-more a {
    width: 16rem;
    font-size: 2rem;
  }
}
.btn-more.blue a {
  color: #fff;
  background: rgb(31, 59, 149);
}

.bg-blue10 {
  background: rgba(31, 59, 149, 0.1);
}

.animation-wrapper {
  overflow: hidden;
}

.animation {
  opacity: 0;
}

.isPlay {
  -webkit-animation-name: play;
          animation-name: play;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
          animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
}

.isPlay:before {
  -webkit-animation-name: maskOut;
          animation-name: maskOut;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
          animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(109.6deg, rgb(156, 252, 248) 11.2%, rgb(110, 123, 251) 91.1%);
}

@-webkit-keyframes play {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes play {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes maskOut {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes maskOut {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.mt-0 {
  margin-top: 0;
}

.mt-1em {
  margin-top: 1em;
}
@media only screen and (max-width: 640px) {
  .mt-1em {
    margin-top: 0.5em;
  }
}

.mt-2em {
  margin-top: 2em;
}
@media only screen and (max-width: 640px) {
  .mt-2em {
    margin-top: 1em;
  }
}

.mt-3em {
  margin-top: 3em;
}
@media only screen and (max-width: 640px) {
  .mt-3em {
    margin-top: 1.5em;
  }
}

.mt-4em {
  margin-top: 4em;
}
@media only screen and (max-width: 640px) {
  .mt-4em {
    margin-top: 2em;
  }
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1em {
  margin-bottom: 1em;
}
@media only screen and (max-width: 640px) {
  .mb-1em {
    margin-bottom: 0.5em;
  }
}

.mb-2em {
  margin-bottom: 2em;
}
@media only screen and (max-width: 640px) {
  .mb-2em {
    margin-bottom: 1em;
  }
}

.mb-3em {
  margin-bottom: 3em;
}
@media only screen and (max-width: 640px) {
  .mb-3em {
    margin-bottom: 1.5em;
  }
}

.mb-4em {
  margin-bottom: 4em;
}
@media only screen and (max-width: 640px) {
  .mb-4em {
    margin-bottom: 2em;
  }
}

.mt-l {
  margin-top: 3em;
}
@media only screen and (max-width: 640px) {
  .mt-l {
    margin-bottom: 1.5em;
  }
}