.show {
  -webkit-transition: all 0.4s cubic-bezier(0.36, 0.37, 0.33, 0.99);
  transition: all 0.4s cubic-bezier(0.36, 0.37, 0.33, 0.99);
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  will-change: transform, opacity;
}

.fadeInUpTrig {
  opacity: 0;
}
.fadeInUpTrig.inActive {
  -webkit-animation: fadeInUp 1.1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeInUp 1.1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(90px);
            transform: translateY(90px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(90px);
            transform: translateY(90px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp2 {
  0% {
    opacity: 0.9;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0.9;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*============================================
Reset
============================================*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
.contents article, .contents aside, .contents details, .contents figcaption, .contents figure,
.contents footer, .contents header, .contents hgroup, .contents menu, .contents nav, .contents section {
  display: block;
}
.contents nav ul {
  list-style: none;
}
.contents blockquote, .contents q {
  quotes: none;
}
.contents blockquote:before, .contents blockquote:after,
.contents q:before, .contents q:after {
  content: "";
  content: none;
}
.contents a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
.contents img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.contents {
  /* change colours to suit your needs */
}
.contents ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
.contents {
  /* change colours to suit your needs */
}
.contents mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
.contents del {
  text-decoration: line-through;
}
.contents abbr[title], .contents dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
.contents table {
  border-collapse: collapse;
  border-spacing: 0;
}
.contents {
  /* change border colour to suit your needs */
}
.contents hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
.contents input, .contents select {
  vertical-align: middle;
}

/*============================================
base
============================================*/
html.stop {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

#Container {
  width: 100%;
}

#Container .contents {
  text-align: center;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #032d54;
  overflow: hidden;
}

.contents a {
  text-decoration: none;
}

.contents .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 750px) {
  .contents .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contents .flex__Hide__SP {
    display: none;
  }
}
.contents .jcsb {
  -ms-flex-pack: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.contents .jcc {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}
.contents .kern {
  margin: 0 !important;
  letter-spacing: 0.05em !important;
}
.contents figure {
  margin: 0;
}
.contents h2 {
  margin-bottom: 0;
}
.contents .inner {
  width: 980px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .contents .inner {
    width: 100%;
    padding: 0 0vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.contents .forPC {
  display: block !important;
}
@media screen and (max-width: 750px) {
  .contents .forPC {
    display: none !important;
  }
}
.contents .forSP {
  display: none !important;
}
@media screen and (max-width: 750px) {
  .contents .forSP {
    display: block !important;
  }
}