/* animation
=================================================*/
.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.fadeInUp.is__show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.fadeInLeft.is__show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.fadeInRight.is__show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* common
=================================================*/
body {
  font-family: mitimasu, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #7BC7D1;
  line-height: 1.3;
  font-size: 10px;
  overflow-x: hidden;
}

@media screen and (max-width: 599px) {
  body {
    font-size: 3.75vw;
  }
}

.-pc {
  display: block;
}

@media screen and (max-width: 599px) {
  .-pc {
    display: none;
  }
}

.-sp {
  display: none;
}

@media screen and (max-width: 599px) {
  .-sp {
    display: block;
  }
}

a {
  color: inherit;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  word-wrap: break-word;
}

a:hover {
  opacity: 0.75;
}

canvas, img {
  vertical-align: top;
}

h2 {
  font-size: 360%;
  border-radius: 500px;
  line-height: 1;
  width: 8em;
  margin: 0 auto;
  padding: 0.35em 0;
}

h2 span {
  font-size: 44%;
  display: block;
  margin: 0 auto;
}

/* main
=================================================*/
#main {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 599px) {
  #main {
    height: 80vh;
  }
}

#main #title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 40vw;
  max-width: 500px;
  min-width: 300px;
  z-index: 2;
}

#main #title p {
  color: #707070;
  font-size: clamp(14px, 1.4vw, 20px);
  margin-bottom: 0.6em;
}

#main #title img {
  width: 100%;
  height: auto;
}

#main canvas {
  position: absolute;
  bottom: 0;
  left: 0;
}

#main canvas#wave01 {
  opacity: 0.5;
}

#main .cloud {
  margin-top: 2rem;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  -webkit-animation-name: kf-cloudMove;
          animation-name: kf-cloudMove;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.5, 0.5, 0.5);
          animation-timing-function: cubic-bezier(0.5, 0.5, 0.5, 0.5);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media screen and (max-width: 599px) {
  #main .cloud {
    -webkit-animation-duration: 20s;
            animation-duration: 20s;
  }
}

#main .cloud img {
  max-width: 230px;
  height: auto;
}

@media screen and (max-width: 599px) {
  #main .cloud img {
    max-width: 150px;
  }
}

#main .cloud img:last-child {
  -webkit-transform: translate(10rem, 5rem);
          transform: translate(10rem, 5rem);
}

@-webkit-keyframes kf-cloudMove {
  0% {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
  100% {
    -webkit-transform: translateX(-50vw);
            transform: translateX(-50vw);
  }
}

@keyframes kf-cloudMove {
  0% {
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
  100% {
    -webkit-transform: translateX(-50vw);
            transform: translateX(-50vw);
  }
}

#main .movie_thum {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1300px;
  bottom: 24%;
}

#main .movie_thum img {
  width: 20%;
  max-width: 260px;
  height: auto;
}

#main .movie_thum img:first-child {
  -webkit-transform: translateY(-30px) translateX(100vw);
          transform: translateY(-30px) translateX(100vw);
  -webkit-animation-name: kf-cloudMove;
          animation-name: kf-cloudMove;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.5, 0.5, 0.5);
          animation-timing-function: cubic-bezier(0.5, 0.5, 0.5, 0.5);
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  margin-top: 30px;
}

#main .movie_thum img:nth-child(2) {
  -webkit-transform: translateY(-30px) translateX(100vw);
          transform: translateY(-30px) translateX(100vw);
  -webkit-animation-name: kf-cloudMove;
          animation-name: kf-cloudMove;
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.5, 0.5, 0.5);
          animation-timing-function: cubic-bezier(0.5, 0.5, 0.5, 0.5);
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  margin-bottom: 30px;
}

#main .movie_thum img:nth-child(3) {
  -webkit-transform: translateY(30px) translateX(100vw);
          transform: translateY(30px) translateX(100vw);
  -webkit-animation-name: kf-cloudMove;
          animation-name: kf-cloudMove;
  -webkit-animation-duration: 23s;
          animation-duration: 23s;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.5, 0.5, 0.5);
          animation-timing-function: cubic-bezier(0.5, 0.5, 0.5, 0.5);
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  margin-top: 40px;
}

#main .movie_thum img:last-child {
  -webkit-transform: translateY(30px) translateX(100vw);
          transform: translateY(30px) translateX(100vw);
  -webkit-animation-name: kf-cloudMove;
          animation-name: kf-cloudMove;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.5, 0.5, 0.5);
          animation-timing-function: cubic-bezier(0.5, 0.5, 0.5, 0.5);
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  margin-bottom: 30px;
}

/* preview
=================================================*/
#preview {
  background: #7BC7D1;
  color: #ffffff;
  text-align: center;
  padding-top: 10em;
}

#preview .box01 {
  width: 1160px;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}

#preview .box01 .img01 {
  position: absolute;
  top: -9em;
  left: 3%;
  width: 21.5%;
  height: auto;
}

@media screen and (max-width: 599px) {
  #preview .box01 .img01 {
    top: -7em;
    width: 28vw;
  }
}

#preview .box01 .img02 {
  position: absolute;
  bottom: -5em;
  right: 0;
  width: 21.5%;
  height: auto;
}

@media screen and (max-width: 599px) {
  #preview .box01 .img02 {
    bottom: -7em;
    width: 28vw;
  }
}

#preview .box01 p {
  font-size: 180%;
  line-height: 1.8;
}

@media screen and (max-width: 599px) {
  #preview .box01 p {
    font-size: 3.4vw;
  }
}

#preview section {
  margin: 5em 0 0;
}

@media screen and (max-width: 599px) {
  #preview section {
    margin: 10em 0 0;
  }
}

#preview section h2 {
  color: #7BC7D1;
  background: #ffffff;
  margin-bottom: 0.5em;
  font-size: clamp(18px, 6vw, 40px);
}

@media screen and (max-width: 599px) {
  #preview section h2 {
    margin-bottom: 1em;
  }
}

#preview section iframe {
  width: 90%;
  height: 50vw;
  max-width: 800px;
  max-height: 450px;
}

#mainMovie {
  background: #7BC7D1;
  color: #ffffff;
  padding: 13em 0 7em;
}

@media screen and (max-width: 599px) {
  #mainMovie {
    padding: 7em 0;
  }
}

#mainMovie h2 {
  color: #7BC7D1;
  background: #ffffff;
  margin-bottom: 2.8em;
  text-align: center;
  font-size: clamp(18px, 6vw, 40px);
}

@media screen and (max-width: 599px) {
  #mainMovie h2 {
    margin-bottom: 1em;
  }
}

#mainMovie .each {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 599px) {
  #mainMovie .each {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#mainMovie .each:not(:last-child) {
  margin-bottom: 15em;
}

@media screen and (max-width: 599px) {
  #mainMovie .each:not(:last-child) {
    margin-bottom: 7em;
  }
}

#mainMovie .each iframe {
  width: 50%;
  height: 25vw;
  max-width: 580px;
  max-height: 335px;
}

@media screen and (max-width: 599px) {
  #mainMovie .each iframe {
    width: 100%;
    height: 52vw;
    max-height: 300px;
  }
}

#mainMovie .each section {
  width: 46.7%;
}

@media screen and (max-width: 599px) {
  #mainMovie .each section {
    width: 100%;
    margin-top: 3rem;
  }
}

#mainMovie .each section h3 {
  font-size: 360%;
  margin-bottom: 0.35em;
}

@media screen and (max-width: 599px) {
  #mainMovie .each section h3 {
    font-size: 8vw;
  }
}

#mainMovie .each section p {
  font-size: 160%;
}

@media screen and (max-width: 599px) {
  #mainMovie .each section p {
    font-size: 3.4vw;
    line-height: 1.6em;
  }
}

#mainMovie .each section .box01 {
  font-size: 170%;
  margin-top: 1.35em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 599px) {
  #mainMovie .each section .box01 dl dt {
    font-size: 4.5vw;
    margin-bottom: 1rem;
  }
}

#mainMovie .each section .box01 dl dd ul {
  list-style-type: none;
}

@media screen and (max-width: 599px) {
  #mainMovie .each section .box01 dl dd li {
    font-size: 3.4vw;
    margin-bottom: .5rem;
  }
}

#mainMovie .each section .box01 img {
  width: 148px;
  margin-left: 2em;
}

#making {
  text-align: center;
  margin: 5rem auto;
}

@media screen and (max-width: 599px) {
  #making {
    margin: 2rem auto;
  }
}

#making h2 {
  color: #ffffff;
  background: #7BC7D1;
  margin-bottom: 0.5em;
  font-size: clamp(18px, 6vw, 40px);
}

@media screen and (max-width: 599px) {
  #making h2 {
    margin-bottom: 1em;
  }
}

#making iframe {
  width: 100%;
  height: 25vw;
  max-width: 580px;
  max-height: 335px;
}

@media screen and (max-width: 599px) {
  #making iframe {
    width: 90%;
    height: 200px;
  }
}

#profile {
  text-align: center;
  margin: 5rem auto;
}

@media screen and (max-width: 599px) {
  #profile {
    margin: 2rem auto;
  }
}

#profile h2 {
  color: #ffffff;
  background: #7BC7D1;
  margin-bottom: 0.5em;
  font-size: clamp(18px, 6vw, 40px);
}

@media screen and (max-width: 599px) {
  #profile h2 {
    margin-bottom: 1em;
  }
}

#profile p.caution {
  font-size: 160%;
  line-height: 1.6em;
  margin: 10px auto 0 auto;
}

@media screen and (max-width: 599px) {
  #profile p.caution {
    font-size: 16px;
    width: 90%;
  }
}

#profile a {
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

#profile ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 600px;
  margin: 35px auto 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#profile ul li {
  width: 33%;
  font-size: 240%;
  list-style: none;
}

#profile ul li:nth-child(2) {
  position: relative;
}

#profile ul li:nth-child(2)::before, #profile ul li:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 10%;
  width: 1px;
  height: 80%;
  background-color: #7bc7d16b;
}

#profile ul li:nth-child(2)::before {
  left: 0;
}

#profile ul li:nth-child(2)::after {
  right: 0;
}

@media screen and (max-width: 599px) {
  #profile ul li {
    font-size: 18px;
  }
}

#profile ul li:not(:last-child) {
  margin-bottom: 15px;
}

#profile ul li h3 {
  font-size: 120%;
  margin-bottom: 20px;
}

#profile ul li p {
  font-size: 100%;
  margin-top: 0;
  margin-bottom: 15px;
}

#profile ul li a {
  display: block;
  font-size: 100%;
  margin-bottom: 15px;
}

.iziModals {
  max-height: 90%;
}

@media screen and (max-width: 599px) {
  .iziModals .iziModal-content {
    padding: 30px !important;
  }
}

.iziModals .flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.iziModals .flexBox img {
  width: 50%;
  max-width: 360px;
  height: auto;
}

@media screen and (max-width: 599px) {
  .iziModals .flexBox img {
    width: 100%;
  }
}

.iziModals .flexBox .profile-txt {
  width: 50%;
  padding-left: 30px;
}

@media screen and (max-width: 599px) {
  .iziModals .flexBox .profile-txt {
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
  }
}

.iziModals .flexBox .profile-txt h3 {
  font-size: 300%;
  margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .iziModals .flexBox .profile-txt h3 {
    font-size: 7vw;
  }
}

.iziModals .flexBox .profile-txt h3 span {
  display: block;
  font-size: 55%;
}

.iziModals .flexBox .profile-txt h4 {
  font-size: 220%;
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .iziModals .flexBox .profile-txt h4 {
    font-size: 5vw;
    margin-bottom: 5px;
  }
}

.iziModals .flexBox .profile-txt p {
  font-size: 200%;
  letter-spacing: .04em;
  line-height: 1.6em;
}

@media screen and (max-width: 599px) {
  .iziModals .flexBox .profile-txt p {
    font-size: 16px;
  }
}

.iziModals dl {
  margin-top: 30px;
}

.iziModals dt {
  font-size: 200%;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .iziModals dt {
    font-size: 5vw;
  }
}

.iziModals dd {
  font-size: 180%;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 10px;
}

@media screen and (max-width: 599px) {
  .iziModals dd {
    font-size: 16px;
  }
}

.iziModals li {
  list-style: none;
}

.iziModals ul.img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

@media screen and (max-width: 599px) {
  .iziModals ul.img-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.iziModals ul.img-wrapper li:not(:first-child) {
  margin-left: 10px;
}

@media screen and (max-width: 599px) {
  .iziModals ul.img-wrapper li:not(:first-child) {
    margin-left: 0;
    margin-top: 10px;
  }
}

.iziModals ul.img-wrapper img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

#specialThanks {
  text-align: center;
  padding: 5em 0 15em;
}

@media screen and (max-width: 599px) {
  #specialThanks {
    padding: 5em 0 7em;
  }
}

#specialThanks h2 {
  color: #ffffff;
  background: #7BC7D1;
  margin-bottom: 0.5em;
  font-size: clamp(18px, 6vw, 40px);
}

@media screen and (max-width: 599px) {
  #specialThanks h2 {
    margin-bottom: 1em;
  }
}

#specialThanks .box01 {
  font-size: 170%;
}

@media screen and (max-width: 599px) {
  #specialThanks .box01 {
    font-size: 100%;
  }
}

#specialThanks .box01 h3 {
  font-weight: normal;
}

#specialThanks .box01 dl {
  margin-top: 1.75em;
}

#specialThanks .box01 dl dd {
  margin-top: 0.75em;
}

#specialThanks .box01 dl dd ul {
  list-style-type: none;
}

#specialThanks .box02 {
  color: #ffffff;
  background: #7BC7D1;
  border-radius: 2.35em;
  width: 840px;
  max-width: 94%;
  margin: 6em auto 0;
  position: relative;
}

#specialThanks .box02 h3 {
  position: absolute;
  top: -1.5em;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  border-radius: 500px;
  line-height: 1;
  width: 14em;
  padding: 1.35em 0;
  color: #ffffff;
  background: #7BC7D1;
  font-weight: normal;
  font-size: 170%;
  -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 9px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 599px) {
  #specialThanks .box02 h3 {
    width: 70%;
    font-size: 5vw;
  }
}

#specialThanks .box02 .box02In {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 7.5em 6%;
  text-align: left;
}

@media screen and (max-width: 599px) {
  #specialThanks .box02 .box02In {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 5.5em 6% 2em 6%;
  }
}

#specialThanks .box02 .box02In .box03 {
  width: 48%;
  font-size: 170%;
}

@media screen and (max-width: 599px) {
  #specialThanks .box02 .box02In .box03 {
    width: 100%;
    font-size: 100%;
  }
}

#specialThanks .box02 .box02In .box03 p {
  margin-bottom: 1.25em;
  line-height: 1.6em;
}

@media screen and (max-width: 599px) {
  #specialThanks .box02 .box02In .box03 p {
    margin-bottom: 2em;
  }
}

#specialThanks .box02 .box02In .box04 {
  width: 48%;
  font-size: 160%;
}

@media screen and (max-width: 599px) {
  #specialThanks .box02 .box02In .box04 {
    width: 100%;
    font-size: 100%;
  }
}

#specialThanks .box02 .box02In .box04 dt {
  margin-bottom: 1.5em;
}

#specialThanks .box02 .box02In .box04 dd ul {
  margin: 0 0 0 1.2em;
}

#specialThanks a.return_top_btn {
  display: inline-block;
  margin-top: 50px;
  font-size: 24px;
  text-decoration: none;
  background-color: #7BC7D1;
  color: #fff;
  padding: 5px 10px;
}

@media screen and (max-width: 599px) {
  #specialThanks a.return_top_btn {
    font-size: 14px;
  }
}

footer {
  color: #ffffff;
  background: #7BC7D1;
  text-align: center;
  font-weight: bold;
  font-size: 200%;
  padding: 5em 0;
}

footer img {
  max-width: 200px;
  height: auto;
}

footer p {
  margin-top: 20px;
}

@media screen and (max-width: 599px) {
  footer p {
    font-size: 4vw;
  }
}
