@charset "utf-8";
*,:after,:before{box-sizing:border-box}*{margin:0}body,html{height:100%}body{line-height:1.5;-webkit-font-smoothing:antialiased}canvas,img,picture,svg,video{display:block;max-width:100%}button,input,select,textarea{font:inherit}h1,h2,h3,h4,h5,h6,p{overflow-wrap:break-word}#__next,#root{isolation:isolate}

/* CSS Document */
body {
  font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial',
    'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo',
    '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', sans-serif;
  width: 100% !important;
  color: #3b4043;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: #3b4043;
}
ul,
li {
  list-style: none;
  padding-left: 0;
}
.hover-button {
  cursor: pointer;
  font-size: 18px;
}
.hover-button:hover {
  opacity: 0.8;
}
.hover-button > a {
  display: flex;
  align-items: center;
  justify-items: center;
}
a:hover {
  opacity: 0.8;
}
/*.line-height1 {
  line-height: 1 !important;
}*/
@media screen and (max-width: 768px) {
  /* 640px以下*/
  body {
    line-height: 2;
  }
  h1 {
    font-size: 2.4rem; /* 24px*/
  }
  h2 {
    font-size: 2rem; /* 20px*/
  }
}
@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}
span.link-t-a {
  /*リンク先位置調整用*/
  position: relative;
  top: -50px; /*左の数値を変えると、上下に調整します*/
  display: block;
}
@media screen and (max-width: 640px) {
  /* 640px以下*/
  span.link-t-a {
    /*リンク先位置調整用*/
    position: relative;
    top: -5%; /*左の数値を変えると、上下に調整します*/
    display: block;
  }
}
/*動的箇所CSS*/
.marker-text {
  /*background: linear-gradient(to bottom, #fff 50%, #ffe653 50%);*/
  background: -webkit-linear-gradient(left, #fcfc0e 50%, transparent 50%) 100%
    bottom / 200% 70% no-repeat;
  background: linear-gradient(to right, #fcfc0e 50%, transparent 50%) 100%
    bottom / 200% 70% no-repeat;
  -webkit-transition: background-position 1s ease-out;
  transition: background-position all 1s ease;
}
.marker-text.is-active {
  background-position: 0% 0.9em;
}
@media screen and (min-width: 768px) {
  .white-text {
    background-image: -webkit-linear-gradient(left, #fff 50%, transparent 50%);
    background-image: linear-gradient(to right, #fff 50%, transparent 50%);
    background-position: 100% 0%;
    background-size: 200% auto;
    background-repeat: no-repeat;
    -webkit-transition: background-position 1s ease-out;
    transition: background-position all 1s ease;
  }
}
@media screen and (max-width: 768px) {
  .white-text {
    background-color: #fff;
  }
  .title-text {
    width: 90%;
    margin: 0 auto;
  }
}
.white-text.is-wh-active {
  background-position: 0% 0%;
  padding: 0 20px;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
  opacity: 0;
}

/*動的箇所CSS END*/
/*上部メニュー部分*/

/*----------------------------
  * メニュー本体
  *----------------------------*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0.5em; */
  padding-bottom: 5px;
  background: #ffffff;
  position: fixed;
  z-index: 1;
  width: 100%;
  box-shadow: 0px 3px 6px #00000029;
}

.logotype a {
  font-weight: bold;
  font-size: 36px;
  color: #009b9b;
}
.logotype img {
  /* width: 200px; */
  height: 60px;
}
@media screen and (max-width: 678px) {
  .logotype img {
    /* width: 120px; */
    height: 50px;
  }
}

nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 48em) {
  nav nav {
    display: inline;
  }
}

.menu__box {
  width: 700px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  list-style-type: none;
  align-items: center;
}
.button-menu01 {
  width: 180px;
  height: 50px;
  background-color: #e4cc37;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  color: #ffffff !important;
  box-shadow: 0px 3px 6px #00000029 !important;
}
.button-menu02 {
  width: 180px;
  height: 50px;
  background-color: #009b9b;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  color: #ffffff !important;
  box-shadow: 0px 3px 6px #00000029 !important;
}
@media screen and (max-width: 48em) {
  .menu__box {
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 20em;
    margin: -700px 0 0 0;
    padding: 0.6em 0;
    text-align: center;
    background-color: #2d303a;
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition-duration: 0.5s;
  }
}

.menu__item {
  display: flex;
  flex-direction: column;
  color: #3b4043;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  align-items: center;
  justify-items: center;
}

@media screen and (max-width: 48em) {
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #ffffff;
    font-size: 18px;
    transition-duration: 0.5s;
  }
  .menu__item:hover {
    opacity: 0.8;
  }
  .button-menu02 {
    margin: 20px 0;
  }
  .button-menu01:hover {
    opacity: 0.5;
  }
  .button-menu02:hover {
    opacity: 0.5;
  }
  .menu__box:nth-last-child(4) {
  }
}

#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background: #009b9b;
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background: #009b9b;
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
  margin: 0;
}

.menu__btn {
  transition-duration: 0.25s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  bottom: 2px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 2;
}
.menu__btn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #009b9b;
}
.menu__btn span::before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #009b9b;
  content: '';
  top: -8px;
  transition-duration: 0.25s;
}
.menu__btn span::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #009b9b;
  content: '';
  top: 8px;
  transition-duration: 0.25s;
}
@media screen and (min-width: 48em) {
  .menu__btn {
    display: none;
  }
}

/* TOPイメージ部分 */

.img_nav {
  width: 100%;
  height: 700px;
  object-fit: cover; /*上に記載のサイズで画像をトリミングする*/
  object-position: 20px 45%;
}

@media screen and (max-width: 768px) {
  .img_nav {
    display: none;
  }
  .img-nav-mobile {
    width: 100%;
    height: 100vh;
    background-image: url(./header-sp02.webp);
    background-size: cover;
    background-position: right;
    /* background: url(./back.jpg) no-repeat; */
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
    background-size: cover;
    width: 100%;
    height: 900px;
    object-fit: cover; /*上に記載のサイズで画像をトリミングする*/
    position: relative;
  }
}
.feature {
  position: absolute;
  top: 20%;
  left: 5%;
}
@media screen and (max-width: 768px) {
  .feature {
    position: absolute;
    top: 55%;
    /*left: 5%;*/
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 90%;
    margin: 0 auto;
  }
}
.menu-icon ul {
  display: flex;
  width: 100%;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .menu-icon ul {
    display: flex;
    justify-content: space-between;
  }
}
.button-box01 {
  display: flex;
  justify-content: space-between;
}

.button-box01 li {
  /*margin: 5% auto;*/
  background-color: #e4cc37;
  padding-bottom: 0;
  border-radius: 100px;
  box-shadow: 0px 3px 6px #00000029;
  opacity: 1;
  font-weight: bold;
  display: grid; /*textをセンターに配置*/
  place-items: center; /*textをセンターに配置*/
}
.button-box01 li + li {
  background-color: #009b9b;
}
.button-box01 li a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .button-box01 li {
    margin: 5% auto;
    width: 148px;
    height: 48px;
  }
}
@media screen and (min-width: 768px) {
  .button-box01 {
    display: flex;
    width: 80%;
  }
  .button-box01 li {
    width: 200px;
    height: 65px;
  }
}

.menu-icon li {
  display: inline-block;
  text-align: center;
  border-left: 3px #3b4043 solid;
  border-right: 3px #3b4043 solid;
  padding: 0px 10px;
  margin: 20px 0px;
}
.menu-icon img {
  width: 150px;
  padding: 0px 30px;
}
.menu-icon li + li {
  border-left: 0; /*liの要素*/
  border-right: 3px #3b4043 solid;
}
.menu-icon h1 {
  color: #009b9b;
  font-size: 32px;
  margin: 3% 0;
}
.menu-icon {
  font-weight: bold;
}
.title-text {
  display: flex;
  justify-content: center;
  place-items: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .title-text {
    display: flex;
    justify-content: center;
    place-items: center;
    width: 90%;
    margin: 0 auto;
  }
  .js-markerwhiteanimation {
    display: none;
  }
  .mobile-text {
    width: 90% !important;
    margin: 0 auto !important;
  }
}

/*Live LPでできること*/
.title-text {
  color: #3b4043;
  font-size: 32px;
  font-weight: bold;
  margin: 30px auto;
}
.title-text h2 {
  color: #009b9b;
  font-size: 32px;
}
.title-bloc {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  .title-related {
    width: 90%;
    margin: 5% auto;
  }
  .title-bloc {
    font-size: 25px;
  }
  .right-box span {
    font-size: 16px;
  }
  .concept {
    padding-bottom: 10%;
  }
}
@media screen and (min-width: 768px) {
  .concept ul li div img {
    width: 218px;
  }
  .left-box {
    width: 25%;
    margin-left: 5%;
  }
  .right-box {
    width: 75%;
    margin-right: 5%;
  }
  .title-related {
    text-align: center;
  }
  .concept {
    max-width: 1100px;
    margin: 0 auto;
  }

  .concept ul li {
    display: flex;
    margin-bottom: 40px;
  }
  .right-box {
    display: flex;
    align-items: center;
    /* font-size: 32px; */
    font-weight: bold;
  }
  .left-box {
    padding-right: 20px;
  }
  .right-box span {
    margin-top: 24px;
    font-size: 18px;
  }
  .concept {
    padding-bottom: 100px;
  }
}
/*---------------------------------*/
.subject h2 {
  display: flex;
  /*justify-content: center;*/
}
.subject p {
  font-weight: bold;
}
.concept ul {
  padding-left: 0;
}
.concept ul {
  display: flex;
  flex-flow: column; /*要素を縦方向に配置*/
  justify-content: space-around; /*両端に余白を入れて均等間隔に配置*/
}
@media screen and (max-width: 768px) {
  .concept ul li img {
    width: 50%;
    margin: 0 auto;
  }

  .right-box {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .subject {
    margin: 100px 0;
  }
}
/*あなたのサイトにzoom/teams*/
.inner-top {
  background-color: #7acbcb;
  color: #fff;
}
.inner-top {
  padding-top: 10px;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .inner-top {
    padding: 5% 0;
  }
}
.inner-top div div div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
/*.inner-top div div h2{
	background-color: #fff;
	padding: 5px;
}*/
.felx_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 0;
  margin: 5% auto;
  max-width: 1100px;
}
@media screen and (max-width: 1100px) {
  .felx_img {
    width: 90%;
    margin: 0% auto;
    justify-content: center;
  }
  .felx_img li {
    margin: 2% 2%;
  }
}
.felx_img li {
  width: 327px;
  position: relative;
}
.felx_img li p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /*真ん中に配置*/
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 25px;
  font-weight: bold;
}
.felx_img li img {
  opacity: 0.81;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .felx_img {
    justify-content: none;
    flex-direction: column;
    width: 100%;
  }
  .felx_img li {
    width: 90%;
    margin: 5% auto;
  }
}
/*Live LPを活用しよう*/
@media screen and (max-width: 1100px) {
  .sub_felx {
    width: 90%;
    margin: 0% auto;
    justify-content: center;
  }
  .sub_felx li {
    margin: 2% 2%;
  }
}
.sub_felx {
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 150px auto;
  padding-left: 0;
}

.sub_felx li {
  width: 340px;
  text-align: center;
  font-weight: bold;
}
.sub_felx li img {
  border-radius: 50%;
  width: 154px;
  height: 154px;
  object-fit: cover; /*上に記載のサイズで画像をトリミングする*/
  margin: 19px auto;
}
.sub_felx li h3 {
  background-color: #009b9b;
  width: 80%;
  margin: 0 auto;
  padding: 2%;
  color: #fff;
  font-size: 20px;
}
.text-left {
  margin-top: 5%;
  padding: 10px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .sub_felx {
    margin: 0 auto 5% auto;
    justify-content: none;
    flex-direction: column;
    justify-items: center;
    width: 90%;
  }
  .sub_felx li {
    width: 100%;
    margin: 5% auto;
  }
  .sub_felx li img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover; /*上に記載のサイズで画像をトリミングする*/
  }
  .service {
    background-color: #f8f7f4;
    padding: 5% 0;
  }
}
.head-top {
  margin: 20px auto;
}
/*ご利用料金*/
@media screen and (min-width: 768px) {
  .service {
    padding: 10px 0 100px 0;
    background-color: #f8f7f4;
  }
}
.Price-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-items: center; /*要素を真ん中に配置*/
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  /*display: none;*/
}
.Price-top {
  padding-left: 0;
}
.Price-select {
  border: 2px #ccc solid;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 20px 20px 3px -10px rgba(97, 96, 96, 0.4);
}
.Price-select:nth-child(2) {
  border: 4px solid #009b9b;
}

.Price-select h3 {
  color: #009b9b;
  font-size: 28px;
  font-weight: bold;
}
.Price-free {
  color: #f55c71;
}
.Price-text strong {
  color: #666;
  font-size: 45px;
}
.sp-text {
  display: none;
}
.Price-list {
  display: flex;
  flex-wrap: wrap;
}
.sp-detail {
  display: none;
}
.Price-select small {
  font-weight: bold;
  font-size: 13px;
}
@media screen and (min-width: 1100px) {
  .Price-select {
    width: 270px;
    height: 480px;
    padding: 20px 0;
  }
  .Price-select:nth-child(2) {
    width: 327px;
    height: 560px;
    padding: 32px 0;
  }
  .Price-select P {
    padding: 0 20px;
    letter-spacing: 0.08rem;
  }
  .Price-list-background {
    background-color: #fcfdfd;
    width: 100%;
  }
  .Price-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .pc-detail {
    font-size: 13px !important;
    font-weight: normal !important;
  }
  .Price-list li {
    width: 70%;
    margin: 0 auto;
    text-align: left;
    font-size: 14px !important;
    font-weight: bold;
    padding: 10px 0;
    border-top: 1px #e9ecec solid;
    border-bottom: 1px #e9ecec solid;
  }
  .Price-list li + li {
    padding: 10px 0;
    border-top: none;
  }
  .button01 {
    margin: 0 auto;
    border: 1px #e4cc37 solid;
    padding-bottom: 0;
    width: 148px;
    height: 48px;
    border-radius: 100px;
    box-shadow: 0px 3px 6px #00000029;
    opacity: 1;
    font-weight: bold;
    display: grid; /*textをセンターに配置*/
    place-items: center; /*textをセンターに配置*/
  }
  .button01 a {
    color: #e4cc37;
  }
  .button02 {
    margin: 0 auto;
    background-color: #009b9b;
    padding-bottom: 0;
    width: 148px;
    height: 48px;
    border-radius: 100px;
    box-shadow: 0px 3px 6px #00000029;
    opacity: 1;
    font-weight: bold;
    display: grid; /*textをセンターに配置*/
    place-items: center; /*textをセンターに配置*/
  }
  .button02 a {
    color: #fff;
  }
}
@media screen and (max-width: 1100px) {
  .Price-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: none;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  .sp-slect01 {
    order: 1;
  }
  .sp-slect02 {
    order: 2;
  }
  .sp-slect03 {
    order: 3;
  }
  .Price-select {
    border: 2px #ccc solid;
    border-radius: 10px;
    width: 100%;
    margin: 5% auto;
    padding: 5% 0;
  }
  .sp-text {
    display: inline;
    text-align: center;
  }
  .Price-list {
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
  }
  .Price-list-background {
    background-color: #f0f3f5;
    width: 100%;
    padding: 10px;
  }
  .Price-list li {
    width: 50%;
    padding: 2px;
    border-right: 1px #3b4043 solid;
    border-left: 1px #3b4043 solid;
    font-weight: bold;
  }
  .Price-list li + li {
    border-left: none;
  }
  .button01 {
    margin: 5% auto;
    border: 1px #e4cc37 solid;
    padding-bottom: 0;
    width: 148px;
    height: 48px;
    border-radius: 100px;
    box-shadow: 0px 3px 6px #00000029;
    opacity: 1;
    font-weight: bold;
    display: grid; /*textをセンターに配置*/
    place-items: center; /*textをセンターに配置*/
  }
  .button01 a {
    color: #e4cc37;
  }
  .button02 {
    margin: 5% auto;
    background-color: #e4cc37;
    padding-bottom: 0;
    width: 148px;
    height: 48px;
    border-radius: 100px;
    box-shadow: 0px 3px 6px #00000029;
    opacity: 1;
    font-weight: bold;
    display: grid; /*textをセンターに配置*/
    place-items: center; /*textをセンターに配置*/
  }
  .button02 a {
    color: #fff;
  }
  .pc-detail {
    display: none;
  }
  .sp-detail {
    display: inline;
    color: #f55c71;
    font-weight: bold;
  }
}

/*無料登録はこちらから*/
.contact {
  position: relative;
  background: url(./back.webp) no-repeat;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
  background-size: cover;
  width: 100%;
  height: 900px;
  object-fit: cover; /*上に記載のサイズで画像をトリミングする*/
  position: relative;
}
.info-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /*真ん中に配置*/
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  width: 420px;
}
.bold-icon {
  margin-bottom: 65px;
  margin-top: 30px;
}
.button-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.button-box li {
  margin: 5% auto;
  background-color: #e4cc37;
  padding-bottom: 0;
  border-radius: 100px;
  box-shadow: 0px 3px 6px #00000029;
  opacity: 1;
  font-weight: bold;
  display: grid; /*textをセンターに配置*/
  place-items: center; /*textをセンターに配置*/
}
.button-box li + li {
  background-color: #009b9b;
}
.button-box li a {
  color: #fff;
}
.bold-icon {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact {
    width: 100%;
    height: 500px;
    object-fit: cover; /*上に記載のサイズで画像をトリミングする*/
  }
  .info-text {
    width: 80%;
  }
  .button-box li {
    width: 148px;
    height: 48px;
  }
  .text-display {
    display: none;
  }
  .sp-text {
    font-size: 32px;
    font-weight: bold;
    margin-top: 0;
  }
  .margin-sp {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .button-box li {
    width: 200px;
    height: 65px;
  }
}
/*information*/
.information {
  background-color: #3b4043;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .information ul {
    font-size: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: none;
    width: 600px !important;
    margin: 0 auto;
  }
  .info01 {
    padding: 0px 0 5px 0;
  }
  .info02 {
    padding: 5px 0 30px 0;
  }
  .information {
    padding: 80px 0 80px 0;
  }
}
.information ul {
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
}
.information ul li,
.information ul li a,
.information small {
  color: #fff;
}

.info01 li {
  width: 20%;
  display: grid; /*textをセンターに配置*/
  place-items: center; /*textをセンターに配置*/
}
@media screen and (max-width: 768px) {
  .information {
    padding-top: 5%;
  }
  .info01 {
    padding-bottom: 5%;
  }
  .info01 li {
    border-left: 1px #fff solid;
    border-right: 1px #fff solid;
    font-size: 12px;
  }

  .info02 li {
    border-left: 1px #fff solid;
    border-right: 1px #fff solid;
    font-size: 12px;
  }
  .info01 li + li {
    border-left: none;
  }
  .info02 li + li {
    border-left: none;
  }
  .information small {
    padding: 5% 0;
    font-size: 12px;
  }
}

.info02 li {
  width: 50%;
  display: grid; /*textをセンターに配置*/
  place-items: center; /*textをセンターに配置*/
}
.information small {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.loader-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 100, 100, 0.8);
  z-index: 2147483647;

  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  position: relative;
  margin: 100px auto;
  font-size: 25px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  text-indent: -9999em;
  -webkit-animation: load5 1.1s infinite ease;
  animation: load5 1.1s infinite ease;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@-webkit-keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff,
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.5),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7),
      1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff,
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff,
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.5),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff,
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff,
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.5),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff,
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
@keyframes load5 {
  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #ffffff,
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.5),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7),
      1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff,
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff,
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.5),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff,
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff,
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.5),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff,
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
  }
}
