@charset "UTF-8";
/*  setting
//----------------------------------------------------------*/
/*  splash
//----------------------------------------------------------*/
.js-splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  display: none;
}

.js-splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*  base
//----------------------------------------------------------*/
.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.tab-only {
  display: none;
}
@media screen and (max-width: 1080px) {
  .tab-only {
    display: block;
  }
}

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

body {
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  font-family: yu-gothic-pr6n, "YuGothic", "Yu Gothic", "游ゴシック", "游ゴシック体", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.7333333333vw;
  }
}

.techcon {
  transition: 0.5s ease-in-out;
  opacity: 0;
}
.techcon__inner {
  position: relative;
  overflow: hidden;
}

/*  snsボタン
//----------------------------------------------------------*/
.sns-btn {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .sns-btn {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 9.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .sns-btn__list {
    display: flex;
    justify-content: center;
  }
}
.sns-btn__item {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(3, 36, 57, 0.2);
}
.sns-btn__item:last-child {
  margin: 0;
}
@media (hover: hover) and (pointer: fine) {
  .sns-btn__item {
    transition: 0.3s ease-in-out;
  }
  .sns-btn__item:hover {
    background: #e4f1ff;
    box-shadow: none;
  }
}
@media (hover: none) {
  .sns-btn__item:active {
    background: #e4f1ff;
    box-shadow: none;
  }
}
@media screen and (max-width: 767px) {
  .sns-btn__item {
    margin: 0 5.3333333333vw 0 0;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    border-radius: 2vw;
  }
}
.sns-btn__link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .sns-btn__link {
    transition: 0.3s ease-in-out;
  }
  .sns-btn__link:hover .sns-btn__img {
    transform: scale(1.1);
  }
}
@media (hover: none) {
  .sns-btn__link:active .sns-btn__img {
    transform: scale(1.1);
  }
}
.sns-btn__img {
  width: 25px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .sns-btn__img {
    width: 4.8vw;
  }
}

/*  header
//----------------------------------------------------------*/
.header {
  position: absolute;
  left: 50%;
  display: flex;
  width: 100%;
  height: 110px;
  margin: 0 auto;
  padding: 0 50px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .header {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 4vw;
    height: 12vw;
  }
}
.header.is-scroll {
  position: fixed;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(3, 36, 57, 0.2);
  z-index: 100;
  animation: DownAnime 0.5s forwards;
}
@media screen and (max-width: 767px) {
  .header.is-scroll {
    height: 12vw;
  }
}
.header.is-scroll .header-logo {
  transform: scale(0.9);
}
.header.is-opend {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  background: linear-gradient(to bottom, #05334f, #0e5886);
  opacity: 0.98;
  font-size: 16px;
  box-sizing: border-box;
  z-index: 100;
  align-items: baseline;
}
.header__menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__menu {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 12vw;
    height: 12vw;
    border: 0;
    background: linear-gradient(to right, #1089d4, #34b1ff);
  }
}
.header__menu span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  height: 0.4vw;
  width: 6.6666666667vw;
  background: #fff;
  transition: 0.3s ease-in-out;
}
.header__menu span:nth-of-type(1) {
  top: 4vw;
}
.is-opend .header__menu span:nth-of-type(1) {
  top: 6vw;
  left: 2.9333333333vw;
  transform: rotate(45deg);
}
.header__menu span:nth-of-type(2) {
  top: 6vw;
}
.is-opend .header__menu span:nth-of-type(2) {
  display: none;
}
.header__menu span:nth-of-type(3) {
  top: 8vw;
}
.is-opend .header__menu span:nth-of-type(3) {
  top: 6vw;
  left: 2.9333333333vw;
  transform: rotate(135deg);
}
.is-opend .header__menu span {
  background: #1089d4;
  transition: 0.3s ease-in-out;
}
.is-opend .header__menu {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .header-nav {
    opacity: 0;
    display: none;
  }
  .is-opend .header-nav {
    display: block;
    width: 100%;
    margin-top: 8vw;
    opacity: 1;
    transition: 0.5s ease-in-out;
  }
}
.header-nav__list {
  display: flex;
  align-items: center;
}
.is-opend .header-nav__list {
  display: block;
}
@media screen and (max-width: 767px) {
  .header-nav__list {
    display: none;
  }
}
.header-nav__item:last-child {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .header-nav__item:last-child {
    padding-left: 0;
  }
}
@media screen and (max-width: 1080px) {
  .header-nav__item {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .header-nav__item {
    border-top: 1px solid #fff;
  }
}
.header-nav__link {
  display: block;
  padding: 20px;
  font-weight: bold;
}
@media (hover: hover) and (pointer: fine) {
  .header-nav__link {
    transition: 0.3s ease-in-out;
  }
  .header-nav__link:hover {
    color: #1089d4;
  }
}
@media (hover: none) {
  .header-nav__link:active {
    color: #1089d4;
  }
}
@media screen and (max-width: 767px) {
  .header-nav__link {
    color: #fff;
    padding-left: 0;
    font-size: 3.7333333333vw;
  }
}
.header-nav__btn, .header-nav__btn--end {
  display: flex;
  width: 140px;
  height: 45px;
  border-radius: 23px;
  font-size: 14px;
  line-height: 45px;
  background: linear-gradient(to right, #34b1ff 0%, #1089d4 35%, #1089d4 0%, #34b1ff 100%);
  background-position: 0 50%;
  background-size: 330% auto;
  color: #fff;
  font-weight: bold;
  align-items: center;
  justify-content: center;
}
.header-nav__btn--end {
  background: #979c9f;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .header-nav__btn, .header-nav__btn--end {
    width: 50.6666666667vw;
    height: 9.3333333333vw;
    font-size: 3.2vw;
    line-height: 9.3333333333vw;
  }
  .is-opend .header-nav__btn, .is-opend .header-nav__btn--end {
    width: 72vw;
    height: 13.3333333333vw;
    margin: 10.6666666667vw auto 0;
    border-radius: 6.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-nav__btn, .header-nav__btn--end {
    transition: 0.3s ease-in-out;
  }
  .header-nav__btn:hover, .header-nav__btn--end:hover {
    background-position: 100% 50%;
  }
}
@media (hover: none) {
  .header-nav__btn:active, .header-nav__btn--end:active {
    background-position: 100% 50%;
  }
}

.header-logo {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-logo {
    position: absolute;
    left: 4vw;
  }
  .is-opend .header-logo {
    display: none;
  }
}
.header-logo__rakus {
  width: 39px;
}
@media screen and (max-width: 1080px) {
  .header-logo__rakus {
    width: 30px;
  }
}
@media screen and (max-width: 767px) {
  .header-logo__rakus {
    width: 7.3333333333vw;
  }
}
.header-logo__tech {
  width: 250px;
  padding-left: 15px;
}
@media screen and (max-width: 1080px) {
  .header-logo__tech {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .header-logo__tech {
    width: 42.6666666667vw;
  }
}

/*  fv
//----------------------------------------------------------*/
.fv {
  position: relative;
  display: flex;
  min-height: 1080px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #dbedff 10% 20%, #f7fbff);
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .fv {
    height: 176vw;
    min-height: auto;
    min-height: 100vh;
  }
}
.fv__inner {
  position: absolute;
  display: flex;
  top: 17vh;
  width: 525px;
  height: 525px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 20px rgba(146, 146, 146, 0.2);
  border-radius: 50%;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: center;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .fv__inner {
    width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .fv__inner {
    height: 73.3333333333vw;
    width: 73.3333333333vw;
    padding-top: 5.3333333333vw;
  }
}
.fv__inner::before, .fv__inner::after {
  content: "";
  position: absolute;
  width: 525px;
  height: 525px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(146, 146, 146, 0.2);
  border-radius: 50%;
  z-index: 0;
}
.fv__inner::before {
  width: 525px;
  height: 525px;
  animation: expansion-anim 8s infinite;
}
@media screen and (max-width: 1080px) {
  .fv__inner::before {
    width: 420px;
    height: 420px;
  }
}
@media screen and (max-width: 767px) {
  .fv__inner::before {
    height: 73.3333333333vw;
    width: 73.3333333333vw;
    top: -0.2666666667vw;
  }
}
.fv__inner::after {
  width: 585px;
  height: 585px;
  animation: expansion-anim-b 8s infinite;
}
@media screen and (max-width: 1080px) {
  .fv__inner::after {
    width: 480px;
    height: 480px;
  }
}
@media screen and (max-width: 767px) {
  .fv__inner::after {
    height: 80.6666666667vw;
    width: 80.6666666667vw;
    top: -4vw;
  }
}
.fv__block {
  z-index: 1;
  padding: 20px 0 0 10px;
}
@media screen and (max-width: 767px) {
  .fv__block {
    padding: 4vw 0 0;
  }
}
.fv__logo {
  width: 372px;
}
@media screen and (max-width: 1080px) {
  .fv__logo {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .fv__logo {
    width: 50.1333333333vw;
    height: auto;
  }
}
.fv__btn-block {
  display: flex;
  justify-content: center;
}
.fv__btn, .fv__btn--end {
  display: block;
  width: 330px;
  height: 60px;
  text-align: center;
  background: linear-gradient(to right, #34b1ff 0%, #1089d4 35%, #1089d4 0%, #34b1ff 100%);
  background-position: 0 50%;
  background-size: 330% auto;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 60px;
  align-items: center;
  justify-content: center;
}
.fv__btn--end {
  background: #979c9f;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .fv__btn, .fv__btn--end {
    transition: 0.3s ease-in-out;
  }
  .fv__btn:hover, .fv__btn--end:hover {
    background-position: 100% 50%;
  }
}
@media (hover: none) {
  .fv__btn:active, .fv__btn--end:active {
    background-position: 100% 50%;
  }
}
@media screen and (max-width: 1080px) {
  .fv__btn, .fv__btn--end {
    width: 280px;
    height: 50px;
    line-height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .fv__btn, .fv__btn--end {
    width: 50.6666666667vw;
    height: 9.3333333333vw;
    font-size: 3.2vw;
    line-height: 9.3333333333vw;
  }
}
.fv__img-block {
  position: fixed;
  bottom: 0;
}
.fv__img {
  position: absolute;
  top: -65vh;
  left: 50%;
  width: 1400px;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (max-width: 1080px) {
  .fv__img {
    width: 850px;
    top: -35vh;
  }
}
@media screen and (max-width: 767px) {
  .fv__img {
    top: -40vh;
    width: 100vw;
  }
}
.fv__img::before, .fv__img::after {
  content: "";
  position: absolute;
  top: 40px;
  width: 100%;
  height: 100%;
  background: url("../image/figure_fv_side.png") no-repeat left top/100%;
}
@media screen and (max-width: 767px) {
  .fv__img::before, .fv__img::after {
    content: none;
  }
}
.fv__img::before {
  left: -1400px;
}
@media screen and (max-width: 1080px) {
  .fv__img::before {
    left: -850px;
  }
}
.fv__img::after {
  right: -1400px;
}
@media screen and (max-width: 1080px) {
  .fv__img::after {
    right: -850px;
  }
}
@media screen and (max-width: 1080px) {
  .fv__back {
    width: 850px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .fv__back {
    width: 100vw;
    height: 187.8666666667vw;
  }
}
.fv__wave {
  position: absolute;
  bottom: 6vw;
  width: 100%;
  max-height: 200px;
}
@media screen and (max-width: 767px) {
  .fv__wave {
    bottom: 16vw;
  }
}

.fv-data {
  display: flex;
  padding: 15px 0 20px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  .fv-data {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .fv-data {
    padding: 0;
  }
}
.fv-data__date {
  font-size: 35px;
}
@media screen and (max-width: 1080px) {
  .fv-data__date {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .fv-data__date {
    font-size: 6.1333333333vw;
  }
}
.fv-data__wed {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0 8px;
  background: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv-data__wed {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    font-size: 2.9333333333vw;
    line-height: 5.3333333333vw;
  }
}
.fv-data__time {
  font-size: 26px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .fv-data__time {
    font-size: 5.0666666667vw;
    letter-spacing: 0.2666666667vw;
  }
}
.fv-data__online {
  position: relative;
  margin-left: 8px;
  padding: 1px 10px 1px 32px;
  font-size: 14px;
  font-weight: bold;
  border: 2px solid #000;
}
@media screen and (max-width: 1080px) {
  .fv-data__online {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .fv-data__online {
    position: absolute;
    top: 16vw;
    right: 12vw;
    height: 5.7333333333vw;
    padding: 0 1.3333333333vw 0 5.3333333333vw;
    font-size: 3.2vw;
  }
}
.fv-data__online::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 18px;
  height: 18px;
  background: url("../image/ico_online.svg") no-repeat center bottom/100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .fv-data__online::before {
    left: 1.3333333333vw;
    width: 4vw;
    height: 4vw;
  }
}

.fv-service__item, .fv-service__item--04, .fv-service__item--03, .fv-service__item--02, .fv-service__item--01 {
  position: absolute;
}
.fv-service__item::after, .fv-service__item--04::after, .fv-service__item--03::after, .fv-service__item--02::after, .fv-service__item--01::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  transform: translate3d(-50%, -50%, 0);
  height: 200%;
  background: url(../image/figure_spot.png) no-repeat left center/100%;
}
.fv-service__item--01 {
  top: -158px;
  right: 105px;
}
@media screen and (max-width: 1080px) {
  .fv-service__item--01 {
    top: -163px;
    right: 42px;
  }
}
@media screen and (max-width: 767px) {
  .fv-service__item--01 {
    top: -9.3333333333vw;
    right: 2.6666666667vw;
  }
}
.fv-service__item--01 img {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .fv-service__item--01 img {
    width: 16vw;
  }
}
.fv-service__item--02 {
  top: -158px;
  left: 105px;
}
@media screen and (max-width: 1080px) {
  .fv-service__item--02 {
    top: -163px;
    left: 42px;
  }
}
@media screen and (max-width: 767px) {
  .fv-service__item--02 {
    top: -9.3333333333vw;
    left: 2.6666666667vw;
  }
}
.fv-service__item--02 img {
  width: 120px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .fv-service__item--02 img {
    width: 16vw;
  }
}
.fv-service__item--03 {
  top: 114px;
  right: 225px;
}
@media screen and (max-width: 1080px) {
  .fv-service__item--03 {
    top: -6px;
    right: 113px;
  }
}
@media screen and (max-width: 767px) {
  .fv-service__item--03 {
    top: 18.6666666667vw;
    right: 13.3333333333vw;
  }
}
.fv-service__item--03 img {
  width: 136px;
  height: 22px;
}
@media screen and (max-width: 767px) {
  .fv-service__item--03 img {
    width: 18.6666666667vw;
  }
}
.fv-service__item--04 {
  top: 114px;
  left: 225px;
}
@media screen and (max-width: 1080px) {
  .fv-service__item--04 {
    top: -6px;
    left: 113px;
  }
}
@media screen and (max-width: 767px) {
  .fv-service__item--04 {
    top: 18.6666666667vw;
    left: 14.6666666667vw;
  }
}
.fv-service__item--04 img {
  width: 136px;
  height: 26px;
}
@media screen and (max-width: 767px) {
  .fv-service__item--04 img {
    width: 18.6666666667vw;
  }
}
.fv-service__circle {
  background: #fff;
  border-radius: 50%;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 5px -10px 10px #e5f2ff, 0 0 20px #e1f0ff, 0 0 20px #b8c9f9, 0 0 20px #fff;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@media screen and (max-width: 767px) {
  .fv-service__circle {
    box-shadow: inset 5px -10px 10px #e5f2ff, 0 0 10px #e1f0ff, 0 0 10px #b8c9f9, 0 0 10px #fff;
  }
}
.fv-service__item--01 .fv-service__circle {
  width: 155px;
  height: 155px;
}
@media screen and (max-width: 767px) {
  .fv-service__item--01 .fv-service__circle {
    width: 22.6666666667vw;
    height: 22.6666666667vw;
  }
}
.fv-service__item--02 .fv-service__circle {
  width: 155px;
  height: 155px;
}
@media screen and (max-width: 767px) {
  .fv-service__item--02 .fv-service__circle {
    width: 22.6666666667vw;
    height: 22.6666666667vw;
  }
}
.fv-service__item--03 .fv-service__circle {
  width: 160px;
  height: 160px;
}
@media screen and (max-width: 767px) {
  .fv-service__item--03 .fv-service__circle {
    width: 22.6666666667vw;
    height: 22.6666666667vw;
  }
}
.fv-service__item--04 .fv-service__circle {
  width: 160px;
  height: 160px;
}
@media screen and (max-width: 767px) {
  .fv-service__item--04 .fv-service__circle {
    width: 22.6666666667vw;
    height: 22.6666666667vw;
  }
}
.fv-service__item--05 .fv-service__circle {
  width: 160px;
  height: 160px;
}
@media screen and (max-width: 767px) {
  .fv-service__item--05 .fv-service__circle {
    width: 22.6666666667vw;
    height: 22.6666666667vw;
  }
}
@media screen and (max-width: 1080px) {
  .fv-service__back {
    width: 850px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .fv-service__back {
    width: 100%;
    height: auto;
  }
}

.fv-decoration {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
}
@media screen and (max-width: 1080px) {
  .fv-decoration {
    top: -200px;
  }
}
@media screen and (max-width: 767px) {
  .fv-decoration {
    top: -14vh;
  }
}
.fv-decoration__item, .fv-decoration__item--21, .fv-decoration__item--20, .fv-decoration__item--19, .fv-decoration__item--18, .fv-decoration__item--17, .fv-decoration__item--16, .fv-decoration__item--15, .fv-decoration__item--14, .fv-decoration__item--13, .fv-decoration__item--12, .fv-decoration__item--11, .fv-decoration__item--10, .fv-decoration__item--09, .fv-decoration__item--08, .fv-decoration__item--07, .fv-decoration__item--06, .fv-decoration__item--05, .fv-decoration__item--04, .fv-decoration__item--03, .fv-decoration__item--02, .fv-decoration__item--01 {
  position: absolute;
  width: 8px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item, .fv-decoration__item--21, .fv-decoration__item--20, .fv-decoration__item--19, .fv-decoration__item--18, .fv-decoration__item--17, .fv-decoration__item--16, .fv-decoration__item--15, .fv-decoration__item--14, .fv-decoration__item--13, .fv-decoration__item--12, .fv-decoration__item--11, .fv-decoration__item--10, .fv-decoration__item--09, .fv-decoration__item--08, .fv-decoration__item--07, .fv-decoration__item--06, .fv-decoration__item--05, .fv-decoration__item--04, .fv-decoration__item--03, .fv-decoration__item--02, .fv-decoration__item--01 {
    width: 6px;
    height: 90px;
  }
}
.fv-decoration__item--01 {
  top: -20vh;
  right: -50%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--01 {
    display: none;
  }
}
.fv-decoration__item--02 {
  top: -25vh;
  right: -40%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--02 {
    display: none;
  }
}
.fv-decoration__item--03 {
  top: -20vh;
  right: -30%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--03 {
    display: none;
  }
}
.fv-decoration__item--04 {
  top: -15vh;
  right: -20%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--04 {
    display: none;
  }
}
.fv-decoration__item--05 {
  top: -20vh;
  right: -10%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--05 {
    display: none;
  }
}
.fv-decoration__item--06 {
  top: -20vh;
  right: 0;
}
.fv-decoration__item--07 {
  top: -15vh;
  right: 10%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--07 {
    display: none;
  }
}
.fv-decoration__item--08 {
  top: -15vh;
  right: 20%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--08 {
    top: -30vh;
  }
}
.fv-decoration__item--09 {
  top: -20vh;
  right: 30%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--09 {
    display: none;
  }
}
.fv-decoration__item--10 {
  top: -25vh;
  right: 40%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--10 {
    top: 18vh;
  }
}
.fv-decoration__item--11 {
  top: -20vh;
  right: 50%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--11 {
    display: none;
  }
}
.fv-decoration__item--12 {
  top: -20vh;
  left: 40%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--12 {
    top: -34vh;
  }
}
.fv-decoration__item--13 {
  top: -15vh;
  left: 30%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--13 {
    display: none;
  }
}
.fv-decoration__item--14 {
  top: -20vh;
  left: 20%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--14 {
    top: -31vh;
  }
}
.fv-decoration__item--15 {
  top: -10vh;
  left: 10%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--15 {
    display: none;
  }
}
.fv-decoration__item--16 {
  top: -15vh;
  left: 0;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--16 {
    top: -23vh;
  }
}
.fv-decoration__item--17 {
  top: -20vh;
  left: -10%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--17 {
    display: none;
  }
}
.fv-decoration__item--18 {
  top: -15vh;
  left: -20%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--18 {
    display: none;
  }
}
.fv-decoration__item--19 {
  top: -25vh;
  left: -30%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--19 {
    display: none;
  }
}
.fv-decoration__item--20 {
  top: -20vh;
  left: -40%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--20 {
    display: none;
  }
}
.fv-decoration__item--21 {
  top: -25vh;
  left: -50%;
}
@media screen and (max-width: 767px) {
  .fv-decoration__item--21 {
    display: none;
  }
}

/*  about
//----------------------------------------------------------*/
.about {
  position: relative;
  margin-top: -90px;
  background: #f2f8ff;
  min-height: 1408px;
}
@media screen and (max-width: 767px) {
  .about {
    min-height: auto;
    margin-top: -20vw;
  }
}
.about__inner {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding: 70px 0 0;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .about__inner {
    width: 100%;
    padding: 70px 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .about__inner {
    width: 100%;
    padding: 13.3333333333vw 4vw 0;
  }
}
.about__lead {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  color: #1089d4;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .about__lead {
    margin-bottom: 6.6666666667vw;
    font-size: 4vw;
    letter-spacing: 0.2666666667vw;
  }
}
.about__lead::before, .about__lead::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: url("../image/figure_quote.svg") no-repeat left top/100%;
}
@media screen and (max-width: 767px) {
  .about__lead::before, .about__lead::after {
    width: 7.4666666667vw;
    height: 5.7333333333vw;
    background-size: contain;
  }
}
.about__lead::before {
  top: -20px;
  left: -30px;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .about__lead::before {
    top: -4vw;
    left: -4vw;
  }
}
.about__lead::after {
  right: -30px;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .about__lead::after {
    bottom: -4vw;
    right: -4vw;
  }
}
.about__txt {
  width: 700px;
  padding-bottom: 20px;
  font-size: 18px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .about__txt {
    width: 100%;
    font-size: 3.7333333333vw;
  }
}

/*  message
//----------------------------------------------------------*/
.message {
  position: relative;
  z-index: 0;
}
.message__inner {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding: 90px 0 370px;
}
@media screen and (max-width: 1080px) {
  .message__inner {
    width: 100%;
    padding: 90px 30px 370px;
  }
}
@media screen and (max-width: 767px) {
  .message__inner {
    width: 100%;
    padding: 13.3333333333vw 4vw 93.3333333333vw;
  }
}
.message__inner::before {
  content: "";
  position: absolute;
  bottom: -250px;
  left: -1360px;
  width: 1962px;
  height: 1899px;
  background: url("../image/figure_polygon.png") no-repeat left bottom/100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .message__inner::before {
    width: 401.3333333333vw;
    height: 459.4666666667vw;
    bottom: -133.3333333333vw;
    left: -160vw;
  }
}
.message__heading {
  display: inline-grid;
  padding-bottom: 30px;
  text-align: left;
}
.message__heading span {
  position: relative;
  display: inline-block;
  padding: 0 0 7px 28px;
  font-size: 16px;
  font-weight: bold;
}
.message__heading span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  border: 6px solid #007bc7;
  border-radius: 10px;
  opacity: 0.3;
}
.message__heading img {
  width: max-content;
}
@media screen and (max-width: 767px) {
  .message__heading img {
    width: 55.4666666667vw;
    height: 11.4666666667vw;
  }
}
.message__block {
  width: 1000px;
  margin: 0 auto;
  padding: 40px 40px 20px 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1080px) {
  .message__block {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .message__block {
    width: 100%;
    padding: 8vw 4vw;
  }
}
.message__txt {
  padding-bottom: 20px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .message__txt {
    padding-bottom: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.message__img {
  position: absolute;
  bottom: 0;
  right: -350px;
  width: 733px;
  z-index: -1;
}
@media screen and (max-width: 1080px) {
  .message__img {
    right: -90px;
    width: 630px;
  }
}
@media screen and (max-width: 767px) {
  .message__img {
    right: -8vw;
    bottom: -106.6666666667vw;
    width: 97.7333333333vw;
  }
}
.message__wave {
  position: absolute;
  bottom: 6vw;
  width: 100%;
  max-height: 240px;
}
@media screen and (max-width: 767px) {
  .message__wave {
    bottom: 12vw;
  }
}

.message-person {
  display: flex;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}
.message-person__block {
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .message-person__block {
    padding-right: 2.6666666667vw;
  }
}
.message-person__post {
  display: block;
}
@media screen and (max-width: 767px) {
  .message-person__post {
    font-size: 3.2vw;
  }
}
.message-person__name {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .message-person__name {
    font-size: 4.2666666667vw;
  }
}
.message-person__img {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .message-person__img {
    width: 16vw;
    height: 16vw;
  }
}

/*  timetable
//----------------------------------------------------------*/
.timetable {
  position: relative;
  background: #fff;
  margin-top: -90px;
}
@media screen and (max-width: 767px) {
  .timetable {
    margin-top: -13.3333333333vw;
  }
}
.timetable__inner {
  width: 1000px;
  margin: 0 auto;
  padding: 90px 0 500px;
  text-align: right;
}
@media screen and (max-width: 1080px) {
  .timetable__inner {
    width: 100%;
    padding: 90px 30px 350px 10px;
  }
}
@media screen and (max-width: 767px) {
  .timetable__inner {
    width: 100%;
    padding: 13.3333333333vw 0 60vw 4vw;
  }
}
.timetable__heading {
  display: inline-grid;
  padding-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .timetable__heading {
    padding: 0 4vw 4vw 0;
  }
}
.timetable__heading span {
  position: relative;
  display: inline-block;
  padding: 0 0 7px 28px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .timetable__heading span {
    padding: 0 0 2.6666666667vw 5.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.timetable__heading span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  border: 6px solid #007bc7;
  border-radius: 10px;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .timetable__heading span::before {
    top: 0.5333333333vw;
    width: 4vw;
    height: 4vw;
    border: 1.3333333333vw solid #007bc7;
    border-radius: 2vw;
  }
}
.timetable__heading img {
  width: max-content;
}
@media screen and (max-width: 767px) {
  .timetable__heading img {
    width: 64vw;
    height: 9.6vw;
  }
}
.timetable__list {
  padding-left: 100px;
}
@media screen and (max-width: 767px) {
  .timetable__list {
    padding-left: 6.6666666667vw;
  }
}
.timetable__item {
  position: relative;
  background: #f2f8ff;
  margin-bottom: 2px;
  text-align: left;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .timetable__item {
    transition: 0.3s ease-in-out;
  }
  .timetable__item:hover {
    background: #e4f1ff;
  }
  .timetable__item:hover::before {
    transform: scale(1.1);
  }
}
@media (hover: none) {
  .timetable__item:active {
    background: #e4f1ff;
  }
  .timetable__item:active::before {
    transform: scale(1.1);
  }
}
.timetable__item:nth-last-child(2) {
  border-radius: 0 0 20px 0;
}
.timetable__item:last-child {
  padding: 0;
  cursor: auto;
}
.timetable__greeting, .timetable__greeting--last {
  position: relative;
  background: #f2f8ff;
  margin-bottom: 2px;
  border-radius: 0 20px 0 0;
}
.timetable__greeting--last {
  border-radius: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .timetable__greeting, .timetable__greeting--last {
    border-radius: 0;
  }
}
.timetable__block {
  position: relative;
  padding: 50px 40px;
  text-align: left;
}
.timetable__greeting .timetable__block::before, .timetable__greeting--last .timetable__block::before {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .timetable__block {
    transition: 0.3s ease-in-out;
  }
  .timetable__block:hover::before {
    transform: scale(1.1);
  }
}
@media (hover: none) {
  .timetable__block:active::before {
    transform: scale(1.1);
  }
}
.timetable__block:before {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 25px;
  height: 25px;
  background: url("../image/ico_zoom.svg") no-repeat left top/100%;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .timetable__block:before {
    right: 4vw;
    bottom: 4vw;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .timetable__block {
    padding: 6.6666666667vw 4vw;
  }
}
.timetable__block--end {
  padding: 50px 40px 120px;
}
@media screen and (max-width: 767px) {
  .timetable__block--end {
    padding: 6.6666666667vw 4vw 24vw;
  }
}
.timetable__ttl {
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .timetable__ttl {
    font-size: 3.7333333333vw;
    flex-direction: column;
    align-items: baseline;
  }
}
.timetable__ttl-img {
  display: block;
  margin: 0 15px 15px 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .timetable__ttl-img {
    border-right: 0;
  }
}
.timetable__service, .timetable__service--haihai, .timetable__service--blastengine, .timetable__service--rdenshihozon, .timetable__service--rmeisai, .timetable__service--rseisan {
  padding-right: 20px;
  line-height: 1;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .timetable__service, .timetable__service--haihai, .timetable__service--blastengine, .timetable__service--rdenshihozon, .timetable__service--rmeisai, .timetable__service--rseisan {
    padding-right: 4vw;
  }
}
.timetable__service--rseisan {
  width: 80px;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .timetable__service--rseisan {
    width: 16vw;
    height: 5.3333333333vw;
  }
}
.timetable__service--rmeisai {
  width: 80px;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .timetable__service--rmeisai {
    width: 16vw;
    height: 5.3333333333vw;
  }
}
.timetable__service--rdenshihozon {
  width: 110px;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .timetable__service--rdenshihozon {
    width: 22.2666666667vw;
    height: 5.3333333333vw;
  }
}
.timetable__service--blastengine {
  width: 136px;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .timetable__service--blastengine {
    width: 25.3333333333vw;
    height: 5.3333333333vw;
  }
}
.timetable__service--haihai {
  width: 120px;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .timetable__service--haihai {
    width: 24vw;
    height: 5.3333333333vw;
  }
}
.timetable__txt {
  padding: 20px 0 30px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .timetable__txt {
    padding: 2.6666666667vw 0 4vw;
    font-size: 3.7333333333vw;
  }
}
.timetable__time {
  position: absolute;
  top: -30px;
  left: -97px;
  color: #1089d4;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .timetable__time {
    left: -13.3333333333vw;
    top: -2.6666666667vw;
    font-size: 4.2666666667vw;
    transform: rotate(90deg);
    z-index: 1;
  }
}
.timetable__time::after {
  content: "";
  position: relative;
  display: inline-block;
  right: -10px;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 2px solid #1089d4;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .timetable__time::after {
    top: -5.3333333333vw;
    right: 6.1333333333vw;
    width: 3.2vw;
    height: 3.2vw;
    border: 0.5333333333vw solid #1089d4;
  }
}
.timetable__time:last-child::after {
  content: "";
  position: relative;
  display: inline-block;
  right: -10px;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 2px solid #1089d4;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .timetable__time:last-child::after {
    top: -5.3333333333vw;
    right: 6.1333333333vw;
    width: 3.2vw;
    height: 3.2vw;
    border: 0.5333333333vw solid #1089d4;
  }
}
.timetable__img {
  position: absolute;
  bottom: -40px;
  left: 33%;
  width: 1400px;
}
@media screen and (max-width: 1080px) {
  .timetable__img {
    left: auto;
    width: 100vw;
  }
}
@media screen and (max-width: 767px) {
  .timetable__img {
    width: 100vw;
    bottom: -12vw;
    left: 0;
  }
}
.timetable__img::before, .timetable__img::after {
  content: "";
  position: absolute;
  bottom: 40px;
  width: 100%;
  height: 100%;
  background: url("../image/figure_timetable.png") no-repeat left bottom/100%;
}
.timetable__img::before {
  right: -1400px;
}
.timetable__img::after {
  left: -1400px;
}
@media screen and (max-width: 1080px) {
  .timetable__img img {
    height: auto;
  }
}
.timetable__wave {
  position: absolute;
  bottom: -1px;
  width: 100%;
  max-height: 200px;
}

.timetable-person {
  display: flex;
}
@media screen and (max-width: 1080px) {
  .timetable-person {
    display: block;
  }
}
.timetable-person__item {
  display: flex;
  align-items: center;
  margin: 0 30px 0 0;
}
@media screen and (max-width: 1080px) {
  .timetable-person__item {
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 1080px) {
  .timetable-person__item:last-child {
    margin: 0;
  }
}
.timetable-person__img {
  width: 80px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .timetable-person__img {
    width: 12vw;
    height: 12vw;
  }
}
.timetable-person__post {
  display: block;
  padding-bottom: 8px;
  font-size: 13px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .timetable-person__post {
    padding-bottom: 0.8vw;
    font-size: 2.9333333333vw;
  }
}
.timetable-person__name {
  display: block;
}
@media screen and (max-width: 767px) {
  .timetable-person__name {
    font-size: 3.4666666667vw;
  }
}

.timetable-btn {
  position: absolute;
  display: flex;
  left: 30px;
  bottom: 50px;
}
@media screen and (max-width: 767px) {
  .timetable-btn {
    left: 4vw;
    bottom: 8vw;
  }
}
.timetable-btn__link, .timetable-btn__link--border {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 160px;
  font-weight: bold;
  background: #1089d4;
  border: 2px solid #1089d4;
  text-align: center;
  color: #fff;
  border-radius: 20px;
}
.timetable-btn__link:first-child, .timetable-btn__link--border:first-child {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .timetable-btn__link:first-child, .timetable-btn__link--border:first-child {
    margin-right: 2.6666666667vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .timetable-btn__link, .timetable-btn__link--border {
    transition: 0.3s ease-in-out;
  }
  .timetable-btn__link:hover, .timetable-btn__link--border:hover {
    border: 2px solid #1089d4;
    color: #1089d4;
    background: #fff;
  }
  .timetable-btn__link:hover .timetable-btn__txt, .timetable-btn__link--border:hover .timetable-btn__txt {
    background: url("../image/ico_slide_b.svg") no-repeat left center/20px 14px;
  }
}
@media (hover: none) {
  .timetable-btn__link:active, .timetable-btn__link--border:active {
    border: 2px solid #1089d4;
    color: #1089d4;
    background: #fff;
  }
  .timetable-btn__link:active .timetable-btn__txt, .timetable-btn__link--border:active .timetable-btn__txt {
    background: url("../image/ico_slide_b.svg") no-repeat left center/20px 14px;
  }
}
@media screen and (max-width: 767px) {
  .timetable-btn__link, .timetable-btn__link--border {
    height: 9.3333333333vw;
    width: 28.5333333333vw;
    line-height: 9.3333333333vw;
    font-size: 3.2vw;
    border-radius: 5.3333333333vw;
  }
}
.timetable-btn__link .timetable-btn__txt, .timetable-btn__link--border .timetable-btn__txt {
  background: url("../image/ico_slide_w.svg") no-repeat left center/18px 14px;
}
@media screen and (max-width: 767px) {
  .timetable-btn__link .timetable-btn__txt, .timetable-btn__link--border .timetable-btn__txt {
    background-size: 3.7333333333vw 2.9333333333vw;
  }
}
.timetable-btn__link--border {
  background: #fff;
  border: 2px solid #1089d4;
  color: #1089d4;
}
@media (hover: hover) and (pointer: fine) {
  .timetable-btn__link--border {
    transition: 0.3s ease-in-out;
  }
  .timetable-btn__link--border:hover {
    background: #1089d4;
    color: #fff;
  }
  .timetable-btn__link--border:hover .timetable-btn__txt {
    background: url("../image/ico_youtube_w.svg") no-repeat left center/20px 14px;
  }
}
@media (hover: none) {
  .timetable-btn__link--border:active {
    background: #1089d4;
    color: #fff;
  }
  .timetable-btn__link--border:active .timetable-btn__txt {
    background: url("../image/ico_youtube_w.svg") no-repeat left center/20px 14px;
  }
}
.timetable-btn__link--border .timetable-btn__txt {
  background: url("../image/ico_youtube_b.svg") no-repeat left center/20px 14px;
}
@media screen and (max-width: 767px) {
  .timetable-btn__link--border .timetable-btn__txt {
    background-size: 4vw 2.9333333333vw;
  }
}
.timetable-btn__youtube {
  height: 40px;
  width: 160px;
  margin-left: 20px;
  background: #fff;
  border: 2px solid #1089d4;
  color: #1089d4;
  font-weight: bold;
  line-height: 36px;
  text-align: center;
  border-radius: 20px;
}
@media (hover: hover) and (pointer: fine) {
  .timetable-btn__youtube {
    transition: 0.3s ease-in-out;
  }
  .timetable-btn__youtube:hover {
    border: 2px solid #1089d4;
    color: #fff;
    background: #1089d4;
  }
  .timetable-btn__youtube:hover .timetable-btn__txt {
    background: url("../image/ico_youtube_w.svg") no-repeat left center/20px 14px;
  }
}
@media (hover: none) {
  .timetable-btn__youtube:active {
    border: 2px solid #1089d4;
    color: #fff;
    background: #1089d4;
  }
  .timetable-btn__youtube:active .timetable-btn__txt {
    background: url("../image/ico_youtube_w.svg") no-repeat left center/20px 14px;
  }
}
@media screen and (max-width: 767px) {
  .timetable-btn__youtube {
    height: 9.3333333333vw;
    width: 28.5333333333vw;
    margin-left: 2.6666666667vw;
    line-height: 9.3333333333vw;
    font-size: 3.2vw;
  }
}
.timetable-btn__youtube .timetable-btn__txt {
  background: url("../image/ico_youtube_b.svg") no-repeat left center/20px 14px;
}
@media screen and (max-width: 767px) {
  .timetable-btn__youtube .timetable-btn__txt {
    background-size: 4vw 2.9333333333vw;
  }
}
.timetable-btn__txt {
  position: relative;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .timetable-btn__txt {
    padding-left: 5.3333333333vw;
  }
}

.timetable-line {
  position: absolute;
  left: -5px;
  top: 4px;
  width: 5px;
  height: 100%;
  background: #1089d4;
  transition: 0.1s;
}
@media screen and (max-width: 767px) {
  .timetable-line {
    left: -1.3333333333vw;
    top: 1.3333333333vw;
    width: 0.9333333333vw;
  }
}

/*  outline
//----------------------------------------------------------*/
.outline {
  position: relative;
  background: linear-gradient(to bottom, #1089d4 0, #34b1ff 100%);
  color: #fff;
  text-align: center;
  z-index: 1;
}
.outline__inner {
  position: relative;
  width: 700px;
  margin: 0 auto;
  padding: 90px 0;
}
@media screen and (max-width: 1080px) {
  .outline__inner {
    width: 100%;
    padding: 90px 30px 150px;
  }
}
@media screen and (max-width: 767px) {
  .outline__inner {
    width: 100%;
    padding: 13.3333333333vw 4vw 16vw;
  }
}
.outline__inner::before {
  content: "";
  position: absolute;
  top: 90px;
  left: -220px;
  width: 135px;
  height: 159px;
  background: url("../image/figure_outline_01.png") no-repeat left center/100%;
}
@media screen and (max-width: 1080px) {
  .outline__inner::before {
    top: 40px;
    left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .outline__inner::before {
    top: 2.6666666667vw;
    left: 4vw;
    width: 16.1333333333vw;
    height: 18.8vw;
  }
}
.outline__inner::after {
  content: "";
  position: absolute;
  bottom: 80px;
  right: -220px;
  width: 150px;
  height: 166px;
  background: url("../image/figure_outline_02.png") no-repeat left center/100%;
}
@media screen and (max-width: 1080px) {
  .outline__inner::after {
    bottom: 190px;
    right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .outline__inner::after {
    bottom: 36vw;
    right: 4vw;
    width: 17.3333333333vw;
    height: 19.2vw;
  }
}
.outline__heading {
  display: inline-grid;
  padding-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .outline__heading {
    padding-bottom: 5.3333333333vw;
  }
}
.outline__heading img {
  width: max-content;
}
@media screen and (max-width: 767px) {
  .outline__heading img {
    width: 46.9333333333vw;
    height: 9.3333333333vw;
  }
}
.outline__heading span {
  padding-bottom: 7px;
  font-size: 16px;
  font-weight: bold;
}
.outline__txt {
  margin: 80px 0 0;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .outline__txt {
    margin: 16vw 0 0;
    font-size: 4.8vw;
  }
}

.outline-table {
  display: table;
  width: 100%;
}
.outline-table__list {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .outline-table__list {
    padding: 4vw 0;
  }
}
.outline-table__head {
  position: relative;
  width: 80px;
  height: 24px;
  margin-right: 20px;
  background: #fff;
  border-radius: 4px;
  color: #1089d4;
  font-size: 14px;
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .outline-table__head {
    width: 17.3333333333vw;
    height: 5.3333333333vw;
    margin-right: 4vw;
    border-radius: 0.8vw;
    font-size: 3.2vw;
    line-height: 5.3333333333vw;
  }
}
.outline-table__head::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: -6px;
  border-left: 7px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .outline-table__head::after {
    right: -1.3333333333vw;
    border-left: 1.6vw solid #fff;
    border-top: 0.9333333333vw solid transparent;
    border-bottom: 0.9333333333vw solid transparent;
  }
}
.outline-table__data {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .outline-table__data {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .outline-table__txt {
    font-size: 3.7333333333vw;
  }
}

/*  participation
//----------------------------------------------------------*/
.participation__inner {
  padding: 70px 0 0;
}
@media screen and (max-width: 767px) {
  .participation__inner {
    padding: 17.3333333333vw 4vw 0;
  }
}
.participation__heading {
  position: relative;
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .participation__heading {
    font-size: 6.6666666667vw;
  }
}
.participation__heading::before, .participation__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 30px;
  background: #fff;
}
.participation__heading::before {
  left: -50px;
}
.participation__heading::after {
  right: -50px;
}
.participation__txt {
  padding: 40px 0 50px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .participation__txt {
    padding: 6.6666666667vw 0;
    font-size: 3.7333333333vw;
  }
}

.participation-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .participation-btn {
    flex-wrap: wrap;
  }
}
.participation-btn__item {
  position: relative;
  display: flex;
  width: 335px;
  height: 80px;
  background: #fff;
  border-radius: 40px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(3, 36, 57, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .participation-btn__item {
    transition: 0.3s ease-in-out;
  }
  .participation-btn__item:hover {
    background: #e4f1ff;
    box-shadow: none;
  }
  .participation-btn__item:hover::before {
    transform: scale(1.1);
  }
}
@media (hover: none) {
  .participation-btn__item:active {
    background: #e4f1ff;
    box-shadow: none;
  }
  .participation-btn__item:active::before {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 767px) {
  .participation-btn__item {
    width: 72vw;
    height: 13.3333333333vw;
    border-radius: 6.6666666667vw;
  }
}
.participation-btn__item:first-child {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .participation-btn__item:first-child {
    margin: 0 0 5.3333333333vw 0;
  }
}
.participation-btn__item::before {
  content: "";
  position: absolute;
  right: 20px;
  width: 30px;
  height: 30px;
  background: url("../image/ico_tab.svg") no-repeat left center/100%;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .participation-btn__item::before {
    right: 4vw;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
.participation-btn__connpass {
  width: 110px;
}
@media screen and (max-width: 767px) {
  .participation-btn__connpass {
    width: 24vw;
  }
}
.participation-btn__techplay {
  width: 130px;
}
@media screen and (max-width: 767px) {
  .participation-btn__techplay {
    width: 29.3333333333vw;
  }
}

/*  recruit
//----------------------------------------------------------*/
.recruit__inner {
  display: flex;
}
@media screen and (max-width: 1080px) {
  .recruit__inner {
    flex-wrap: wrap;
  }
}
.recruit__link, .recruit__link--left {
  position: relative;
  display: block;
  width: 100%;
  height: 281px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit__link, .recruit__link--left {
    height: 37.8666666667vw;
  }
}
.recruit__link::before, .recruit__link--left::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #1089d4, #34b1ff);
  z-index: 1;
  opacity: 0.75;
  transition: 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .recruit__link, .recruit__link--left {
    transition: 0.3s ease-in-out;
  }
  .recruit__link:hover::before, .recruit__link--left:hover::before {
    opacity: 0.85;
  }
  .recruit__link:hover .recruit__txt::before, .recruit__link--left:hover .recruit__txt::before {
    transform: translateY(-50%) scale(1.1);
  }
}
@media (hover: none) {
  .recruit__link:active::before, .recruit__link--left:active::before {
    opacity: 0.85;
  }
  .recruit__link:active .recruit__txt::before, .recruit__link--left:active .recruit__txt::before {
    transform: translateY(-50%) scale(1.1);
  }
}
.recruit__link--left::before {
  background: linear-gradient(to right, #c78410, #e5bb15);
}
@media screen and (max-width: 1080px) {
  .recruit__link--left .recruit__txt {
    right: 16vw;
    left: auto;
  }
}
@media screen and (max-width: 1080px) {
  .recruit__link--left .recruit__img {
    right: auto;
    left: 0;
  }
}
.recruit__txt {
  position: absolute;
  top: 50%;
  left: 6%;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  transform: translateY(-50%);
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .recruit__txt {
    left: 4vw;
    font-size: 4.8vw;
  }
}
.recruit__txt::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -50px;
  width: 40px;
  height: 40px;
  background: url("../image/ico_tab_w.svg") no-repeat left center/100%;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .recruit__txt::before {
    right: -9.3333333333vw;
    width: 8vw;
    height: 8vw;
  }
}
.recruit__img {
  width: 700px;
  right: 0;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .recruit__img {
    width: 100%;
  }
}

/*  footer
//----------------------------------------------------------*/
.footer__inner {
  padding: 30px 0;
  font-size: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 4vw;
    font-size: 2.6666666667vw;
  }
}

/*  modal
//----------------------------------------------------------*/
.modal {
  position: fixed;
  display: none;
  top: 50%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .modal {
    top: 53%;
  }
}
.modal.is-active {
  display: block;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
  animation: modalOpen 0.3s ease forwards;
}
.modal.is-active2 {
  display: block;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
  animation: modalClose 0.3s ease forwards;
}
.modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 51, 79, 0.8);
  overflow: auto;
}
.modal__inner {
  top: 50%;
  left: -14%;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1100px;
  width: 100%;
  z-index: 1000;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .modal__inner {
    left: -8%;
  }
}
.modal__close {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 50px;
  height: 50px;
  background: #a8abad;
  border: 0;
  border-radius: 25px;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .modal__close {
    transition: 0.3s ease-in-out;
  }
  .modal__close:hover {
    background: #8999a3;
  }
}
@media (hover: none) {
  .modal__close:active {
    background: #8999a3;
  }
}
@media screen and (max-width: 767px) {
  .modal__close {
    top: -13.3333333333vw;
    right: 0;
    width: 9.3333333333vw;
    height: 9.3333333333vw;
    border-radius: 4.6666666667vw;
  }
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 30px;
  border-bottom: 3px solid #fff;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .modal__close::before, .modal__close::after {
    width: 5.3333333333vw;
  }
}
.modal__close::before {
  transform: translateX(-50%) rotate(-135deg);
}
.modal__close::after {
  transform: translateX(-50%) rotate(135deg);
}

.modal-info {
  padding: 50px 40px;
  max-width: 100%;
  max-height: 85vh;
  text-align: left;
  background-color: #fff;
  border-radius: 20px;
  overflow: scroll;
  box-shadow: 0 0 40px rgba(3, 36, 57, 0.4);
}
@media screen and (max-width: 767px) {
  .modal-info {
    height: 80vh;
    padding: 8vw 4vw;
    border-radius: 5.3333333333vw;
    overflow: scroll;
  }
}
.modal-info__time {
  padding-bottom: 15px;
  color: #899398;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .modal-info__time {
    left: -13.3333333333vw;
    padding-bottom: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
.modal-info__service, .modal-info__service--haihai, .modal-info__service--blastengine, .modal-info__service--rdenshihozon, .modal-info__service--rmeisai, .modal-info__service--rseisan {
  margin-right: 20px;
  line-height: 1;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .modal-info__service, .modal-info__service--haihai, .modal-info__service--blastengine, .modal-info__service--rdenshihozon, .modal-info__service--rmeisai, .modal-info__service--rseisan {
    margin-right: 3.3333333333vw;
    border-right: 0;
  }
}
.modal-info__service--rseisan {
  width: 98px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .modal-info__service--rseisan {
    width: 16vw;
    height: 5.3333333333vw;
  }
}
.modal-info__service--rmeisai {
  width: 98px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .modal-info__service--rmeisai {
    width: 16vw;
    height: 5.3333333333vw;
  }
}
.modal-info__service--rdenshihozon {
  width: 138px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .modal-info__service--rdenshihozon {
    width: 22.2666666667vw;
    height: 5.3333333333vw;
  }
}
.modal-info__service--blastengine {
  width: 168px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .modal-info__service--blastengine {
    width: 25.3333333333vw;
    height: 5.3333333333vw;
  }
}
.modal-info__service--haihai {
  width: 138px;
  height: 32px;
}
@media screen and (max-width: 767px) {
  .modal-info__service--haihai {
    width: 24vw;
    height: 4.2666666667vw;
  }
}
.modal-info__ttl {
  align-items: center;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .modal-info__ttl {
    flex-direction: column;
    align-items: baseline;
    font-size: 4.8vw;
  }
}
.modal-info__ttl-img {
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .modal-info__ttl-img {
    border-right: none;
  }
}
.modal-info__txt {
  padding: 20px 0 0;
}
@media screen and (max-width: 767px) {
  .modal-info__txt {
    padding: 2vw 0 0;
    font-size: 3.7333333333vw;
  }
}
.modal-info__txt:last-of-type {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .modal-info__txt:last-of-type {
    padding-bottom: 4vw;
  }
}
.modal-info__img {
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 1400px;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .modal-info__img {
    width: 100vw;
  }
}
.modal-info__img::before, .modal-info__img::after {
  content: "";
  position: absolute;
  bottom: 110px;
  width: 100%;
  height: 100%;
  background: url("../image/figure_timetable.png") no-repeat left bottom/100%;
}
.modal-info__img::before {
  right: -1400px;
}
.modal-info__img::after {
  left: -1400px;
}

.modal-info-person {
  display: flex;
}
@media screen and (max-width: 1080px) {
  .modal-info-person {
    flex-wrap: wrap;
  }
}
.modal-info-person__item {
  flex: 1;
  margin-right: 30px;
  align-items: center;
  background: #f2f8ff;
  border-radius: 20px;
}
@media screen and (max-width: 1080px) {
  .modal-info-person__item {
    flex: auto;
    margin: 0 0 5.3333333333vw;
    border-radius: 2.6666666667vw;
  }
}
.modal-info-person__item:last-child {
  margin-right: 0;
}
.modal-info-person__block {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .modal-info-person__block {
    padding: 4vw;
  }
}
.modal-info-person__img {
  display: flex;
  width: 80px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .modal-info-person__img {
    width: 12vw;
    height: 12vw;
    margin-right: 2.6666666667vw;
  }
}
.modal-info-person__post {
  display: block;
  padding-bottom: 4px;
  font-size: 13px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .modal-info-person__post {
    padding-bottom: 0.8vw;
    font-size: 2.9333333333vw;
  }
}
.modal-info-person__name {
  display: block;
}
@media screen and (max-width: 767px) {
  .modal-info-person__name {
    font-size: 3.4666666667vw;
  }
}
.modal-info-person__txt {
  padding: 20px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .modal-info-person__txt {
    padding: 4vw;
    font-size: 3.7333333333vw;
  }
}

.modal-info-btn {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .modal-info-btn {
    margin: 0 0 5.3333333333vw;
  }
}
.modal-info-btn__link, .modal-info-btn__link--border {
  height: 50px;
  width: 240px;
  font-weight: bold;
  line-height: 50px;
  background: #1089d4;
  border: 2px solid #1089d4;
  text-align: center;
  color: #fff;
  border-radius: 25px;
}
.modal-info-btn__link:first-child, .modal-info-btn__link--border:first-child {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .modal-info-btn__link:first-child, .modal-info-btn__link--border:first-child {
    margin-right: 2.6666666667vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .modal-info-btn__link, .modal-info-btn__link--border {
    transition: 0.3s ease-in-out;
  }
  .modal-info-btn__link:hover, .modal-info-btn__link--border:hover {
    border: 2px solid #1089d4;
    color: #1089d4;
    background: #fff;
  }
  .modal-info-btn__link:hover .modal-info-btn__txt, .modal-info-btn__link--border:hover .modal-info-btn__txt {
    background: url("../image/ico_slide_b.svg") no-repeat left center/20px 14px;
  }
}
@media (hover: none) {
  .modal-info-btn__link:active, .modal-info-btn__link--border:active {
    border: 2px solid #1089d4;
    color: #1089d4;
    background: #fff;
  }
  .modal-info-btn__link:active .modal-info-btn__txt, .modal-info-btn__link--border:active .modal-info-btn__txt {
    background: url("../image/ico_slide_b.svg") no-repeat left center/20px 14px;
  }
}
@media screen and (max-width: 767px) {
  .modal-info-btn__link, .modal-info-btn__link--border {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 9.3333333333vw;
    width: 50%;
    border-radius: 5.3333333333vw;
    line-height: 9.3333333333vw;
    font-size: 3.2vw;
  }
}
.modal-info-btn__link .modal-info-btn__txt, .modal-info-btn__link--border .modal-info-btn__txt {
  background: url("../image/ico_slide_w.svg") no-repeat left center/18px 14px;
}
@media screen and (max-width: 767px) {
  .modal-info-btn__link .modal-info-btn__txt, .modal-info-btn__link--border .modal-info-btn__txt {
    background-size: 3.7333333333vw 2.9333333333vw;
  }
}
.modal-info-btn__link--border {
  background: #fff;
  border: 2px solid #1089d4;
  color: #1089d4;
}
@media (hover: hover) and (pointer: fine) {
  .modal-info-btn__link--border {
    transition: 0.3s ease-in-out;
  }
  .modal-info-btn__link--border:hover {
    background: #1089d4;
    color: #fff;
  }
  .modal-info-btn__link--border:hover .modal-info-btn__txt {
    background: url("../image/ico_youtube_w.svg") no-repeat left center/20px 14px;
  }
}
@media (hover: none) {
  .modal-info-btn__link--border:active {
    background: #1089d4;
    color: #fff;
  }
  .modal-info-btn__link--border:active .modal-info-btn__txt {
    background: url("../image/ico_youtube_w.svg") no-repeat left center/20px 14px;
  }
}
.modal-info-btn__link--border .modal-info-btn__txt {
  background: url("../image/ico_youtube_b.svg") no-repeat left center/20px 14px;
}
@media screen and (max-width: 767px) {
  .modal-info-btn__link--border .modal-info-btn__txt {
    background-size: 4vw 2.9333333333vw;
  }
}
.modal-info-btn__txt {
  position: relative;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .modal-info-btn__txt {
    padding-left: 5.3333333333vw;
  }
}

/*  アニメーション
//----------------------------------------------------------*/
.scroll_down {
  position: absolute;
  left: 50%;
  bottom: 80px;
}
@media screen and (max-width: 767px) {
  .scroll_down {
    bottom: 6.6666666667vw;
  }
}
.scroll_down a {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  word-break: normal;
  padding: 10px 10px 110px;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  margin: auto;
  text-shadow: 0 0 10px #1089d4;
}
@media screen and (max-width: 767px) {
  .scroll_down a {
    font-size: 2.6666666667vw;
    padding-bottom: 22.6666666667vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .scroll_down a {
    transition: 0.3s ease-in-out;
  }
  .scroll_down a:hover {
    text-shadow: 0 0 20px #1089d4;
  }
}
@media (hover: none) {
  .scroll_down a:active {
    text-shadow: 0 0 20px #1089d4;
  }
}
.scroll_down a::before, .scroll_down a::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  width: 2px;
  height: 30px;
  background: #fff;
}
.scroll_down a::after {
  background: #aed2eb;
  animation: ScrollAnime 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

.is-fadeup {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.slide-in {
  overflow: hidden;
  display: inline-block;
}
.slide-in__inner {
  display: inline-block;
}

.is-slide-left {
  animation-name: slideTextX100;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.is-slide-right {
  animation-name: slideTextX-100;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 1000;
  }
}
@keyframes modalClose {
  0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ScrollAnime {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes expansion-anim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes expansion-anim-b {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0.9);
  }
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translate3d(-50%, -170px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(０);
  }
  100% {
    transform: translateY(5%);
  }
}
@keyframes zoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=main.css.map */