@charset "UTF-8";
h2.hl {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  h2.hl {
    font-size: 25px;
    margin-bottom: 35px;
  }
}
.btnMore {
  display: none;
}

@media screen and (max-width: 768px) {
  .btnMore {
    display: block;
  }
  .btnMore a {
    margin: 20px auto 0;
    width: 180px;
    height: 45px;
    line-height: 45px;
    border: 2px solid #01a53b;
    border-radius: 3px;
    text-align: center;
    color: #01a53b;
    transition: 0.3s all;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .btnMore a span {
    width: 17px;
    height: 17px;
    overflow: hidden;
    line-height: 1;
    margin-right: 5px;
    transition: 0.3s all;
  }
  .btnMore a svg {
    width: 17px;
    height: 17px;
  }
  .btnMore a path,
.btnMore a polygon {
    transition: 0.3s all;
    fill: #01a53b;
  }
  .btnMore a:hover {
    background: #01a53b;
    color: #fff;
  }
  .btnMore a:hover path,
.btnMore a:hover polygon {
    fill: #fff;
  }
  .btnMore i {
    display: inline-block;
    font-style: normal;
  }
  .btnMore i.close {
    display: none;
    padding: 0 1em;
  }
  .btnMore.open span {
    transform: rotate(135deg);
  }
  .btnMore.open i.more {
    display: none;
  }
  .btnMore.open i.close {
    display: inline-block;
  }
  section.funcSec ul.hideSPList,
section.faqSec ul.faqList.hideSPList {
    display: none;
  }
}
/*------------------------------------------------------------------------*/
section.kvSec {
  color: #fff;
  position: relative;
  background-color: rgb(0, 0, 0);
  background: url("/img/kv.jpg") center 60% no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  min-height: 780px;
  display: flex;
  align-items: center;
  margin-bottom: 65px;
}
section.kvSec div.kvBox {
  width: 978px;
  margin: -60px auto 0;
}
section.kvSec div.kvWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
section.kvSec div.kvWrap .initial {
  width: 170px;
  margin-left: 130px;
  -webkit-animation-name: shake;
          animation-name: shake;
  -webkit-animation-duration: 3.2s;
          animation-duration: 3.2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
section.kvSec div.kvWrap > div {
  width: 432px;
}
section.kvSec div.kvWrap > div .ballon {
  width: 420px;
  margin: 0 auto 20px;
}
section.kvSec div.kvWrap > div .logo {
  margin: 0 auto 30px;
}
section.kvSec div.kvWrap > div .img {
  width: 410px;
  margin: 25px auto 0;
}
section.kvSec div.inqBox a {
  display: block;
  position: absolute;
  width: 720px;
  height: 157px;
  background: #01a53b;
  bottom: -30px;
  left: 50%;
  margin-left: -360px;
  z-index: 20;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
section.kvSec div.inqBox a .toInq {
  font-size: 20px;
}
section.kvSec div.inqBox a::after {
  content: "";
  display: block;
  width: 56px;
  height: 53px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 45px;
  margin-top: -28px;
}
section.kvSec div.inqBox a::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  right: 71px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-5px) rotate(45deg);
}
section.kvSec div.inqBox a:hover {
  background: #0e8933;
}
section.kvSec div.inqBox .cir {
  position: absolute;
  text-align: center;
  top: -19px;
  left: 30px;
  z-index: 20;
  width: 155px;
  height: 155px;
  background: #fff;
  border: 4px solid #01a53b;
  color: #01a53b;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.kvSec div.inqBox .cir p {
  margin-top: -0.8em;
}
section.kvSec div.inqBox .cir span {
  display: inline-block;
  font-weight: normal;
  font-size: 36px;
  transform: translateY(0.05em);
}
section.kvSec div.inqBox .note {
  padding-left: 80px;
}

@-webkit-keyframes shake {
  from {
    transform: scale3d(1, 1, 1);
  }
  3%, 7% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -4deg);
  }
  14%, 21%, 27%, 9% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  12%, 18%, 24% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  30% {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes shake {
  from {
    transform: scale3d(1, 1, 1);
  }
  3%, 7% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -4deg);
  }
  14%, 21%, 27%, 9% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  12%, 18%, 24% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  30% {
    transform: scale3d(1, 1, 1);
  }
}
@media screen and (max-width: 768px) {
  section.kvSec {
    min-height: 670px;
    display: flex;
    align-items: center;
    background: url("/img/kv.jpg") 40% 60% no-repeat;
    background-size: cover;
  }
  section.kvSec div.kvBox {
    width: 268px;
    margin: 50px auto 0;
  }
  section.kvSec div.kvWrap {
    display: block;
    position: relative;
  }
  section.kvSec div.kvWrap .initial {
    position: absolute;
    top: -94px;
    left: 190px;
    z-index: 10;
    width: 107px;
    margin-left: 0;
  }
  section.kvSec div.kvWrap > div {
    width: 100%;
  }
  section.kvSec div.kvWrap > div .ballon {
    width: 260px;
    margin: 0 auto 20px;
    order: 2;
  }
  section.kvSec div.kvWrap > div .logo {
    width: 268px;
    margin: 0 auto 30px;
    order: 3;
  }
  section.kvSec div.kvWrap > div .initial {
    width: 120px;
    position: absolute;
    margin: 0;
  }
  section.kvSec div.kvWrap > div .img {
    width: 260px;
    margin: 25px auto 0;
  }
  section.kvSec div.inqBox a {
    width: 344px;
    height: 150px;
    bottom: -50px;
    margin-left: -172px;
    font-size: 12px;
    line-height: 1.5;
  }
  section.kvSec div.inqBox a .toInq {
    font-size: 14px;
    margin-top: 10px;
  }
  section.kvSec div.inqBox a::after {
    width: 32px;
    height: 32px;
    top: 50%;
    right: 10px;
    margin-top: -16px;
  }
  section.kvSec div.inqBox a::before {
    width: 6px;
    height: 6px;
    right: 25px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-2px) rotate(45deg);
  }
  section.kvSec div.inqBox .cir {
    top: 50%;
    left: 15px;
    width: 92px;
    height: 92px;
    margin-top: -46px;
    font-size: 12px;
  }
  section.kvSec div.inqBox .cir span {
    font-size: 22px;
  }
  section.kvSec div.inqBox .note {
    padding-left: 70px;
  }
}
@media screen and (max-width: 374px) {
  section.kvSec div.kvWrap div:first-child .initial {
    margin: 0 -20px 20px auto;
  }
  section.kvSec div.inqBox a {
    width: 100%;
    margin-left: -50%;
  }
  section.kvSec div.inqBox .cir {
    left: 10px;
  }
  section.kvSec div.inqBox a::after {
    width: 26px;
    height: 26px;
    right: 5px;
    margin-top: -13px;
  }
  section.kvSec div.inqBox a::before {
    right: 18px;
  }
}
/*------------------------------------------------------------------------*/
section.logoSlideSec div.logoListWrap {
  width: 100%;
  height: 148px;
  margin: 0 auto 40px;
  overflow: hidden;
}
section.logoSlideSec div.logoListWrap > div {
  overflow: hidden;
}
section.logoSlideSec ul.logoList {
  float: left;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 148px;
  width: 100%;
}
section.logoSlideSec ul.logoList li {
  flex-shrink: 0;
  width: 146px;
  height: 146px;
  background: #B3B3B3;
  padding: 1px;
  margin: 0 15px 0 0;
  transition: 0.3s all;
}

body.scr section.logoSlideSec div.logoListWrap > div {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@media screen and (max-width: 768px) {
  section.logoSlideSec div.logoListWrap {
    height: 82px;
    margin: 65px auto 20px;
  }
  section.logoSlideSec ul.logoList {
    height: 82px;
  }
  section.logoSlideSec ul.logoList li {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    background: #B3B3B3;
    padding: 1px;
    margin: 0 7px 0 0;
    transition: 0.3s all;
  }
  body.scr section.logoSlideSec div.logoListWrap > div {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
}
/*------------------------------------------------------------------------*/
section.newsSec {
  padding-bottom: 35px;
  border-bottom: 1px solid #e7e7e7;
}
section.newsSec li {
  display: flex;
  align-items: flex-start;
}
section.newsSec li ~ li {
  margin-top: 10px;
}
section.newsSec li > div {
  display: flex;
  align-items: flex-start;
}
section.newsSec li .date {
  width: 5em;
  margin-right: 20px;
  margin-top: 2px;
  font-family: "Roboto Condensed", sans-serif;
}
section.newsSec li .kind {
  width: 126px;
  height: 32px;
  line-height: 32px;
  margin-right: 20px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  font-size: 12px;
}
section.newsSec li .kind.vup {
  background: #01a53b;
}
section.newsSec li .kind.info {
  background: #2fc1ca;
}
section.newsSec li .note {
  font-size: 14px;
  margin-top: 3px;
}

@media screen and (max-width: 768px) {
  section.newsSec {
    padding-bottom: 35px;
  }
  section.newsSec li ~ li {
    margin-top: 15px;
  }
  section.newsSec li > div {
    display: block;
  }
  section.newsSec li .date {
    width: 5em;
    margin-right: 20px;
    margin-top: 2px;
  }
  section.newsSec li .kind {
    width: 95px;
    height: 26px;
    line-height: 26px;
    margin-right: 15px;
    border-radius: 3px;
    font-size: 10px;
  }
  section.newsSec li .note {
    line-height: 1.6;
  }
}
/*------------------------------------------------------------------------*/
section.aboutSec {
  background: #01a53b;
  padding: 100px 0 110px;
}
section.aboutSec h2 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}
section.aboutSec h2 em {
  color: #fff;
}
section.aboutSec ul {
  display: flex;
  justify-content: space-between;
  width: 924px;
  margin: 50px auto 0;
}
section.aboutSec ul li {
  width: 202px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
section.aboutSec ul h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 57px;
  font-size: 25px;
  font-weight: 700;
  margin: 0 auto;
  color: #fff;
  background: #333;
  border-radius: 60px;
}
section.aboutSec ul figure {
  width: 155px;
  margin: 40px auto 15px;
}
section.aboutSec .appCopy {
  margin: 30px auto 0;
  width: 870px;
  height: 70px;
  background: #fff;
  color: #01a53b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 500;
  border-radius: 70px;
}

@media screen and (max-width: 768px) {
  section.aboutSec {
    padding: 50px 0 70px;
  }
  section.aboutSec h2 {
    font-size: 26px;
  }
  section.aboutSec div.flowWrap {
    overflow: auto;
    width: calc(100% + 24px);
    padding: 15px 25px;
    margin: 0 -12px;
    box-sizing: border-box;
  }
  section.aboutSec ul {
    width: 620px;
    margin: 25px auto 0;
  }
  section.aboutSec ul li {
    width: 135px;
    font-size: 12px;
  }
  section.aboutSec ul h3 {
    height: 38px;
    font-size: 17px;
  }
  section.aboutSec ul figure {
    width: 102px;
    margin: 25px auto 10px;
  }
  section.aboutSec .appCopy {
    margin: 10px auto 0;
    padding: 15px;
    width: 100%;
    max-width: 320px;
    height: auto;
    text-align: center;
    font-size: 20px;
    border-radius: 25px;
  }
}
/*------------------------------------------------------------------------*/
section.serviceSec {
  padding-bottom: 80px;
}
section.serviceSec div.svBox {
  position: relative;
  padding: 90px 540px 0 30px;
  overflow: hidden;
  height: 400px;
}
section.serviceSec div.svBox.group {
  padding: 90px 0 0 580px;
  height: 390px;
}
section.serviceSec div.svBox.group .img {
  right: auto;
  left: 0;
}
section.serviceSec div.svBox.kanri {
  height: 340px;
}
section.serviceSec div.svBox.fun {
  padding: 90px 0 0 580px;
  height: 360px;
}
section.serviceSec div.svBox.fun .img {
  width: 434px;
  right: auto;
  left: 50px;
}
section.serviceSec h2 {
  font-size: 42px;
  font-weight: bold;
  display: inline-block;
  line-height: 1.4;
  margin: 20px 0 40px;
}
section.serviceSec .img {
  position: absolute;
  top: 90px;
  right: 0;
  width: 510px;
}
section.serviceSec .btnFeature {
  margin-top: 20px;
}
section.serviceSec .btnFeature a {
  display: block;
  width: 180px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #01a53b;
  border-radius: 3px;
  text-align: center;
  color: #01a53b;
  transition: 0.3s all;
  font-size: 13px;
}
section.serviceSec .btnFeature a:hover {
  background: #01a53b;
  color: #fff;
}
section.serviceSec div.suggestList {
  width: 540px;
  margin: 90px auto 0;
}
section.serviceSec div.suggestList h3 {
  text-align: center;
  font-weight: bold;
  font-size: 23px;
  margin-bottom: 30px;
}
section.serviceSec div.suggestList li {
  font-size: 15px;
  display: flex;
  align-items: flex-start;
}
section.serviceSec div.suggestList li ~ li {
  margin-top: 15px;
}
section.serviceSec div.suggestList li::before {
  flex-shrink: 0;
  content: "";
  width: 20px;
  height: 14px;
  display: block;
  background: url("/img/icon_check.png") 0 0 no-repeat;
  background-size: 20px 14px;
  margin: 0.5em 1em 0 0;
}
section.serviceSec .btnToSample a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  margin: 50px auto 0;
  height: 60px;
  border: 2px solid #01a53b;
  border-radius: 3px;
  text-align: center;
  color: #01a53b;
  transition: 0.3s all;
  font-size: 16px;
  line-height: 1;
}
section.serviceSec .btnToSample a span {
  width: 8px;
  height: 11px;
  margin-left: 0.8em;
}
section.serviceSec .btnToSample a span path {
  fill: #01a53b;
  transition: 0.3s all;
}
section.serviceSec .btnToSample a:hover {
  background: #01a53b;
  color: #fff;
}
section.serviceSec .btnToSample a:hover span path {
  fill: #fff;
}

@media screen and (max-width: 768px) {
  section.serviceSec {
    padding: 0 10px 40px;
  }
  section.serviceSec div.svBox {
    position: relative;
    padding: 30px 0 0;
    height: auto;
  }
  section.serviceSec div.svBox h2 {
    display: block;
  }
  section.serviceSec div.svBox.group {
    padding: 45px 0 0;
    height: auto;
  }
  section.serviceSec div.svBox.group h2 {
    text-align: right;
  }
  section.serviceSec div.svBox.group .img {
    right: auto;
    left: 0;
  }
  section.serviceSec div.svBox.kanri {
    padding: 45px 0 0;
    height: auto;
  }
  section.serviceSec div.svBox.fun {
    padding: 45px 0 0;
    height: auto;
  }
  section.serviceSec div.svBox.fun h2 {
    text-align: right;
  }
  section.serviceSec div.svBox.fun .img {
    width: calc(100% - 50px);
  }
  section.serviceSec h2 {
    font-size: 30px;
    margin: 0 0 20px;
  }
  section.serviceSec .img {
    position: static;
    width: 100%;
    max-width: 375px;
    margin: 0 auto 20px;
  }
  section.serviceSec .btnFeature {
    margin-top: 15px;
  }
  section.serviceSec .btnFeature a {
    font-size: 12px;
    margin: 0 auto;
  }
  section.serviceSec div.suggestList {
    width: 100%;
    margin: 45px auto 0;
  }
  section.serviceSec div.suggestList h3 {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  section.serviceSec .btnToSample a {
    width: 100%;
    margin: 30px auto 0;
    height: 45px;
    line-height: 1;
  }
  section.serviceSec .btnToSample a span {
    width: 6px;
    height: 9px;
    line-height: 0;
  }
  section.serviceSec .btnToSample a span svg {
    width: 6px;
    height: 9px;
  }
}
@media screen and (max-width: 374px) {
  section.serviceSec h2 {
    font-size: 24px;
  }
}
/*------------------------------------------------------------------------*/
section.reasonSec {
  background: #f7f7f7;
  padding: 70px 0 60px;
}
section.reasonSec h2.hl {
  margin-bottom: 90px;
}
section.reasonSec ul.pointList {
  display: flex;
  justify-content: space-between;
  width: 1060px;
  margin: 0 -30px 20px;
}
section.reasonSec ul.pointList li {
  width: 326px;
  background: #fff;
  border: 3px solid #e7e7e7;
  padding: 45px;
  box-sizing: border-box;
  position: relative;
}
section.reasonSec ul.pointList li .img {
  margin-bottom: 40px;
}
section.reasonSec ul.pointList li h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
section.reasonSec ul.pointList li .note {
  font-size: 14px;
  font-weight: bold;
}
section.reasonSec ul.pointList li::after {
  content: "";
  width: 75px;
  height: 75px;
  display: block;
  position: absolute;
  top: -33px;
  left: -13px;
  z-index: 10;
  background: url("/img/point1.png") 0 0 no-repeat;
  background-size: 75px auto;
}
section.reasonSec ul.pointList li:nth-child(2)::after {
  background-image: url("/img/point2.png");
}
section.reasonSec ul.pointList li:nth-child(3)::after {
  background-image: url("/img/point3.png");
}
section.reasonSec ul.indentList {
  margin-left: -25px;
}
section.reasonSec ul.indentList li::before {
  content: "※";
}

@media screen and (max-width: 768px) {
  section.reasonSec {
    padding: 35px 10px 30px;
  }
  section.reasonSec h2.hl {
    margin-bottom: 45px;
  }
  section.reasonSec ul.pointList {
    display: block;
    width: 100%;
    margin: 0 auto 20px;
  }
  section.reasonSec ul.pointList li {
    width: 100%;
    border: 2px solid #e7e7e7;
  }
  section.reasonSec ul.pointList li .img {
    margin-bottom: 20px;
  }
  section.reasonSec ul.pointList li h3 {
    font-size: 25px;
    margin-bottom: 15px;
  }
  section.reasonSec ul.pointList li ~ li {
    margin-top: 35px;
  }
  section.reasonSec ul.indentList {
    margin: 0;
    padding: 0 10px;
    font-size: 12px;
  }
}
/*------------------------------------------------------------------------*/
section.funcSec {
  padding: 70px 0 80px;
}
section.funcSec h2.hl {
  margin-bottom: 70px;
}
section.funcSec ul {
  display: flex;
  flex-wrap: wrap;
}
section.funcSec ul li {
  width: 275px;
  margin-bottom: 50px;
  margin-left: 87px;
}
section.funcSec ul li:nth-child(3n+1) {
  margin-left: 0;
}
section.funcSec ul li:nth-child(2n) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
section.funcSec ul li:nth-child(3n) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
section.funcSec ul li.link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.funcSec ul li.option .icon::after {
  content: "オプション";
  line-height: 1;
  padding: 3px 5px;
  background: #01a53b;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  margin-left: 10px;
  letter-spacing: -0.05em;
}
section.funcSec ul .icon {
  margin-bottom: 10px;
}
section.funcSec ul .icon img {
  height: 52px;
  width: auto;
}
section.funcSec ul h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
section.funcSec ul .btnLink {
  width: 100%;
}
section.funcSec ul .btnLink a {
  margin: 20px auto 0;
  width: 180px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #01a53b;
  border-radius: 3px;
  text-align: center;
  color: #01a53b;
  transition: 0.3s all;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.funcSec ul .btnLink a span {
  width: 11px;
  height: 11px;
  overflow: hidden;
  line-height: 1;
  margin-left: 5px;
}
section.funcSec ul .btnLink a svg {
  width: 11px;
  height: 11px;
}
section.funcSec ul .btnLink a path,
section.funcSec ul .btnLink a polygon {
  transition: 0.3s all;
  fill: #01a53b;
}
section.funcSec ul .btnLink a:hover {
  background: #01a53b;
  color: #fff;
}
section.funcSec ul .btnLink a:hover path,
section.funcSec ul .btnLink a:hover polygon {
  fill: #fff;
}
section.funcSec div.vupBox {
  text-align: center;
}
section.funcSec div.vupBox h4 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 15px;
}
section.funcSec div.vupBox .vupNote {
  font-size: 14px;
}
section.funcSec div.vupBox .btnLink a {
  margin: 20px auto 0;
  width: 180px;
  height: 45px;
  line-height: 45px;
  border: 2px solid #e60012;
  background: #e60012;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  transition: 0.3s all;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.funcSec div.vupBox .btnLink a:hover {
  background: #fff;
  color: #e60012;
}

@media screen and (max-width: 768px) {
  section.funcSec {
    padding: 35px 10px 40px;
  }
  section.funcSec h2.hl {
    margin-bottom: 35px;
  }
  section.funcSec ul {
    display: block;
  }
  section.funcSec ul li {
    width: 100%;
    margin-bottom: 35px;
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  section.funcSec ul li:nth-child(2n) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  section.funcSec ul li:nth-child(3n) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  section.funcSec ul li.option .icon::after {
    display: none;
  }
  section.funcSec ul li.option h3::after {
    content: "オプション";
    line-height: 1;
    padding: 2px 5px;
    background: #2fc1ca;
    border-radius: 2px;
    color: #fff;
    font-size: 10px;
    text-align: center;
    margin-left: 10px;
    letter-spacing: -0.05em;
    vertical-align: middle;
  }
  section.funcSec ul .icon {
    width: 50px;
  }
  section.funcSec ul .icon img {
    height: 32px;
    width: auto;
  }
  section.funcSec ul h3 {
    width: calc(100% - 60px);
    font-size: 16px;
    margin-left: 10px;
  }
  section.funcSec ul .note {
    font-size: 14px;
  }
  section.funcSec div.vupBox {
    text-align: center;
    margin-top: 50px;
  }
  section.funcSec div.vupBox h4 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  section.funcSec div.vupBox .vupNote {
    font-size: 13px;
  }
}
/*------------------------------------------------------------------------*/
section.flowSec {
  background: #f7f7f7;
  padding: 70px 0 90px;
}
section.flowSec h2 {
  margin-bottom: 60px;
}
section.flowSec ul.flowList {
  width: 960px;
  margin: 0 auto;
}
section.flowSec ul.flowList li {
  display: flex;
  min-height: 80px;
  background: #fff;
  position: relative;
}
section.flowSec ul.flowList li > div {
  display: flex;
  width: calc(100% - 80px);
  border: 2px solid #e7e7e7;
  border-left: none;
}
section.flowSec ul.flowList li ~ li {
  margin-top: 30px;
}
section.flowSec ul.flowList li ~ li::before {
  content: "";
  width: 28px;
  height: 8px;
  display: block;
  background: url("/img/arr_flow.png") 0 0 no-repeat;
  background-size: cover;
  position: absolute;
  left: 50%;
  top: -18px;
  margin-left: -14px;
}
section.flowSec ul.flowList li .num {
  width: 80px;
  background: #01a53b;
  border: 2px solid #01a53b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  font-weight: bold;
  font-size: 35px;
}
section.flowSec ul.flowList li h3 {
  padding-left: 25px;
  width: 175px;
  display: flex;
  align-items: center;
  color: #01a53b;
  font-weight: bold;
  font-size: 20px;
}
section.flowSec ul.flowList li .note {
  width: calc(100% - 175px);
  display: flex;
  align-items: center;
  font-size: 15px;
  padding: 20px 20px 20px 0;
  line-height: 1.6;
}
section.flowSec ul.flowList li:nth-child(2n) .num {
  background: #0e8933;
  border-color: #0e8933;
}
section.flowSec ul.flowList li:nth-child(2n) h3 {
  color: #0e8933;
}

@media screen and (max-width: 768px) {
  section.flowSec {
    padding: 35px 0 45px;
  }
  section.flowSec h2 {
    margin-bottom: 30px;
  }
  section.flowSec ul.flowList {
    width: 100%;
  }
  section.flowSec ul.flowList li {
    min-height: 80px;
  }
  section.flowSec ul.flowList li > div {
    display: block;
    width: calc(100% - 40px);
    padding: 15px;
    box-sizing: border-box;
  }
  section.flowSec ul.flowList li ~ li {
    margin-top: 30px;
  }
  section.flowSec ul.flowList li ~ li::before {
    width: 36px;
    height: 10px;
    top: -20px;
    margin-left: -18px;
  }
  section.flowSec ul.flowList li .num {
    width: 40px;
    font-size: 20px;
  }
  section.flowSec ul.flowList li h3 {
    padding-left: 0;
    width: 100%;
    display: block;
    font-size: 15px;
  }
  section.flowSec ul.flowList li .note {
    width: 100%;
    display: block;
    font-size: 13px;
    padding: 0;
  }
}
/*------------------------------------------------------------------------*/
section.planSec {
  padding: 75px 0;
}
section.planSec h2 {
  margin-bottom: 60px;
}
section.planSec div.planBoxWrap {
  display: flex;
  justify-content: space-between;
}
section.planSec div.priceBox {
  width: 489px;
  padding: 0 0 50px;
  border: 3px solid #e7e7e7;
  position: relative;
  text-align: center;
}
section.planSec div.priceBox:last-child h3 {
  background: #333;
}
section.planSec div.priceBox .limited {
  width: 106px;
  height: 106px;
  font-size: 21px;
  font-weight: bold;
  border-radius: 50%;
  background: #01a53b;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -40px;
  left: -20px;
  z-index: 10;
  color: #fff;
}
section.planSec div.priceBox h3 {
  font-size: 27px;
  color: #fff;
  background: #01a53b;
  text-align: center;
  line-height: 80px;
  margin-bottom: 35px;
  font-weight: bold;
}
section.planSec div.priceBox h4 {
  font-weight: bold;
  margin-bottom: 10px;
}
section.planSec div.priceBox .arr {
  height: 45px;
  width: 10px;
  padding: 0 10px;
}
section.planSec div.priceBox .until {
  width: 58px;
  transform: translateY(6px);
  margin-right: 5px;
}
section.planSec div.priceBox .price {
  font-weight: bold;
  line-height: 1;
  font-size: 16px;
}
section.planSec div.priceBox .price span.unit {
  font-size: 35px;
}
section.planSec div.priceBox .price span.num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 59px;
}
section.planSec div.priceBox .price.cond span.num {
  line-height: 0;
}
section.planSec div.priceBox .notice {
  font-size: 14px;
}
section.planSec div.priceBox div.initial {
  padding-bottom: 50px;
}
section.planSec div.priceBox div.initial h4 {
  margin-bottom: 35px;
}
section.planSec div.priceBox div.runnig {
  padding-bottom: 50px;
}
section.planSec div.priceBox div.runnig > div {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 15px;
}
section.planSec div.priceBox div.runnig .basePrice {
  font-weight: bold;
  font-size: 17px;
  line-height: 1;
}
section.planSec div.priceBox div.runnig .basePrice span.unit {
  font-size: 27px;
}
section.planSec div.priceBox div.runnig .basePrice span.num {
  font-size: 45px;
  line-height: 0;
  margin-right: 5px;
  font-family: "Roboto Condensed", sans-serif;
}
section.planSec div.priceBox div.runnig .price {
  font-size: 22px;
}
section.planSec div.priceBox div.runnig .price span.num {
  margin-right: 5px;
}
section.planSec div.priceBox div.runnig .price.cond {
  color: #e60012;
}
section.planSec div.priceBox div.runnig .price.cond::after {
  content: "※1";
  color: #e60012;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  padding-left: 5px;
}
section.planSec div.priceBox div.charge ~ div.charge {
  margin-top: 50px;
}
section.planSec div.priceBox div.charge > div {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
section.planSec div.priceBox div.charge .basePrice {
  font-weight: bold;
  font-size: 17px;
  line-height: 1;
}
section.planSec div.priceBox div.charge .basePrice span.unit {
  font-size: 27px;
}
section.planSec div.priceBox div.charge .basePrice span.num {
  font-size: 45px;
  line-height: 0;
  font-family: "Roboto Condensed", sans-serif;
}
section.planSec div.priceBox div.charge .price {
  font-size: 22px;
}
section.planSec div.priceBox div.charge .price span.num {
  margin-right: 5px;
}
section.planSec div.detailBox {
  width: 470px;
  line-height: 1.5;
}
section.planSec div.detailBox h3 {
  font-size: 18px;
  margin: 0 0 20px -0.5em;
}
section.planSec div.detailBox ul {
  margin-bottom: 1.5em;
}
section.planSec div.detailBox .noticeList li {
  text-indent: -2em;
  margin-left: 2em;
}
section.planSec ul.indentList {
  margin-top: 20px;
}
section.planSec ul.indentList li::before {
  content: "※";
}

@media screen and (max-width: 768px) {
  section.planSec {
    padding: 35px 10px;
  }
  section.planSec h2 {
    margin-bottom: 30px;
  }
  section.planSec div.planBoxWrap {
    display: block;
  }
  section.planSec div.priceBox {
    width: 100%;
    padding: 0 0 30px;
    border: 3px solid #e7e7e7;
    position: relative;
    text-align: center;
  }
  section.planSec div.priceBox ~ div.priceBox {
    margin-top: 20px;
  }
  section.planSec div.priceBox .limited {
    width: 96px;
    height: 96px;
    font-size: 19px;
  }
  section.planSec div.priceBox h3 {
    font-size: 18px;
    line-height: 55px;
    margin-bottom: 30px;
  }
  section.planSec div.priceBox h4 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  section.planSec div.priceBox .arr {
    height: 37px;
  }
  section.planSec div.priceBox .until {
    width: 53px;
    transform: translateY(0);
    margin-right: 0;
    position: absolute;
    top: -45px;
    left: calc(50% + 85px);
  }
  section.planSec div.priceBox .price {
    font-size: 16px;
  }
  section.planSec div.priceBox .price span.unit {
    font-size: 32px;
    transform: translateX(-0.1em);
  }
  section.planSec div.priceBox .price span.num {
    font-size: 53px;
  }
  section.planSec div.priceBox .notice {
    font-size: 12px;
  }
  section.planSec div.priceBox div.initial {
    padding-bottom: 40px;
  }
  section.planSec div.priceBox div.initial h4 {
    margin-bottom: 25px;
  }
  section.planSec div.priceBox div.runnig {
    padding-bottom: 25px;
  }
  section.planSec div.priceBox div.runnig > div {
    margin-bottom: 15px;
    position: relative;
  }
  section.planSec div.priceBox div.runnig > div::after {
    font-size: 12px;
  }
  section.planSec div.priceBox div.runnig .basePrice {
    font-size: 15px;
  }
  section.planSec div.priceBox div.runnig .basePrice span.unit {
    font-size: 24px;
  }
  section.planSec div.priceBox div.runnig .basePrice span.num {
    font-size: 40px;
  }
  section.planSec div.priceBox div.runnig .price {
    font-size: 22px;
  }
  section.planSec div.priceBox div.runnig .price span.num {
    margin-right: 5px;
  }
  section.planSec div.priceBox div.charge ~ div.charge {
    margin-top: 30px;
  }
  section.planSec div.priceBox div.charge > div {
    margin-bottom: 15px;
    position: relative;
  }
  section.planSec div.priceBox div.charge > div::after {
    font-size: 12px;
  }
  section.planSec div.priceBox div.charge .basePrice span.unit {
    font-size: 25px;
  }
  section.planSec div.priceBox div.charge .basePrice span.num {
    font-size: 40px;
  }
  section.planSec div.priceBox div.charge .until {
    left: calc(50% + 75px);
  }
  section.planSec div.detailBox {
    margin-top: 20px;
    width: 100%;
    font-size: 12px;
  }
  section.planSec div.detailBox h3 {
    font-size: 13px;
    margin: 0 0 15px -0.5em;
  }
  section.planSec ul.indentList {
    margin: 15px 0 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 374px) {
  section.planSec div.priceBox h3 {
    font-size: 16px;
  }
  section.planSec div.priceBox .until {
    left: calc(50% + 75px);
  }
  section.planSec div.priceBox .price {
    font-size: 14px;
  }
  section.planSec div.priceBox .price span.unit {
    font-size: 25px;
  }
  section.planSec div.priceBox .price span.num {
    font-size: 40px;
  }
  section.planSec div.priceBox div.runnig .basePrice {
    font-size: 13px;
  }
  section.planSec div.priceBox div.runnig .basePrice span.unit {
    font-size: 22px;
  }
  section.planSec div.priceBox div.runnig .basePrice span.num {
    font-size: 35px;
  }
  section.planSec div.priceBox div.runnig .price {
    font-size: 20px;
  }
  section.planSec div.priceBox div.charge .basePrice span.unit {
    font-size: 22px;
  }
  section.planSec div.priceBox div.charge .basePrice span.num {
    font-size: 35px;
  }
  section.planSec div.priceBox div.charge .until {
    left: calc(50% + 65px);
  }
}
/*------------------------------------------------------------------------*/
section.antiVirusSec {
  padding: 80px 0 50px;
  background: #f7f7f7;
}
section.antiVirusSec div.vHlWrap {
  text-align: center;
  font-weight: bold;
  margin-bottom: 45px;
}
section.antiVirusSec div.vHlWrap h2 {
  margin-bottom: 0;
}
section.antiVirusSec div.vHlWrap h2 + p {
  font-size: 25px;
  margin-bottom: 40px;
  color: #2fc1ca;
}
section.antiVirusSec div.vHlWrap .note {
  font-weight: normal;
  font-size: 20px;
}
section.antiVirusSec div.antiVSlide {
  width: 1000px;
  margin: 0 calc(50% - 500px);
  line-height: 1.7;
  overflow: hidden;
}
section.antiVirusSec div.antiVSlide li {
  width: 320px;
}
section.antiVirusSec div.antiVSlide li.swiper-slide {
  height: auto;
}
section.antiVirusSec div.antiVSlide li div.balloon {
  position: relative;
  background: url("/img/frame_mid.png") 0 0 repeat-y;
  background-size: 320px auto;
  padding: 25px 25px 50px;
}
section.antiVirusSec div.antiVSlide li div.balloon::before {
  content: "";
  width: 320px;
  height: 35px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: url("/img/frame_up.png") 0 0 no-repeat;
  background-size: 320px auto;
}
section.antiVirusSec div.antiVSlide li div.balloon::after {
  content: "";
  width: 320px;
  height: 60px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: url("/img/frame_btm.png") 0 0 no-repeat;
  background-size: 320px auto;
}
section.antiVirusSec div.antiVSlide li div.balloon h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0.6em;
}
section.antiVirusSec div.antiVSlide li .img {
  width: 102px;
  margin: 10px auto 0;
  transform: translateX(-23px);
}
section.antiVirusSec .antiV-next,
section.antiVirusSec .antiV-prev {
  position: absolute;
  bottom: 80px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  width: 45px;
  height: 45px;
  right: auto;
  left: 0;
  opacity: 0;
  transition: 0.3s all;
}
section.antiVirusSec .antiV-next img,
section.antiVirusSec .antiV-prev img {
  width: 16px;
  transform: translate(13px, 8px);
  position: relative;
  z-index: 11;
}
section.antiVirusSec .antiV-next::after,
section.antiVirusSec .antiV-prev::after {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  background: #999;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
section.antiVirusSec .antiV-next {
  right: 0;
  left: auto;
}
section.antiVirusSec .antiV-next img {
  transform: translate(17px, 8px) rotate(180deg);
}
section.antiVirusSec div.antiVInner {
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}
section.antiVirusSec div.antiVInner.onmouse .antiV-next,
section.antiVirusSec div.antiVInner.onmouse .antiV-prev {
  right: auto;
  left: 10px;
  opacity: 1;
}
@media screen and (min-width: 769px) {
  section.antiVirusSec div.antiVInner.onmouse .antiV-next:hover::after,
section.antiVirusSec div.antiVInner.onmouse .antiV-prev:hover::after {
    background: #01a53b;
    -webkit-animation: slideArr 0.3s 1 ease-in-out;
            animation: slideArr 0.3s 1 ease-in-out;
  }
}
section.antiVirusSec div.antiVInner.onmouse .antiV-next {
  right: 10px;
  left: auto;
}
section.antiVirusSec .antiV-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  height: 20px;
}
section.antiVirusSec .antiV-pagination span {
  margin: 0 8px;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid #808080;
  transition: 0.3s all;
  opacity: 1;
}
section.antiVirusSec .antiV-pagination span.swiper-pagination-bullet-active {
  width: 22px;
  height: 22px;
  background: #01a53b;
  border: 1px solid #01a53b;
  margin: 0 5px;
}

@media screen and (max-width: 768px) {
  section.antiVirusSec {
    padding: 40px 0 50px;
  }
  section.antiVirusSec div.vHlWrap {
    margin-bottom: 25px;
  }
  section.antiVirusSec div.vHlWrap h3 {
    font-size: 21px;
  }
  section.antiVirusSec div.vHlWrap h3 + p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  section.antiVirusSec div.vHlWrap .note {
    font-size: 13px;
  }
  section.antiVirusSec div.antiVSlide {
    width: 275px;
    margin: 0 auto;
  }
  section.antiVirusSec div.antiVSlide li {
    width: 275px;
    font-size: 13px;
  }
  section.antiVirusSec div.antiVSlide li div.balloon {
    position: relative;
    background: url("/img/frame_mid.png") 0 0 repeat-y;
    background-size: 275px auto;
    padding: 20px 20px 41px;
  }
  section.antiVirusSec div.antiVSlide li div.balloon::before {
    content: "";
    width: 275px;
    height: 30px;
    background: url("/img/frame_up.png") 0 0 no-repeat;
    background-size: 275px auto;
  }
  section.antiVirusSec div.antiVSlide li div.balloon::after {
    width: 275px;
    height: 52px;
    background: url("/img/frame_btm.png") 0 0 no-repeat;
    background-size: 275px auto;
  }
  section.antiVirusSec div.antiVSlide li div.balloon h4 {
    font-size: 16px;
  }
  section.antiVirusSec div.antiVSlide li .img {
    width: 90px;
    transform: translateX(-23px);
  }
  section.antiVirusSec .antiV-next,
section.antiVirusSec .antiV-prev {
    display: none;
  }
  section.antiVirusSec div.antiVInner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
  }
  section.antiVirusSec .antiV-pagination {
    margin-top: 20px;
    height: 15px;
  }
  section.antiVirusSec .antiV-pagination span {
    margin: 0 5px;
    width: 10px;
    height: 10px;
  }
  section.antiVirusSec .antiV-pagination span.swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    margin: 0 5px;
  }
}
/*------------------------------------------------------------------------*/
section.interviewSec {
  background: #f7f7f7;
  padding: 70px 0;
}
section.interviewSec h2 {
  margin-bottom: 40px;
}
section.interviewSec div.interviewBox {
  width: 978px;
  border: 11px solid #e7e7e7;
  padding: 55px 0;
}
section.interviewSec div.interviewBox > div {
  transform: translateX(45px);
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
section.interviewSec div.interviewBox div.cont {
  width: 530px;
}
section.interviewSec div.interviewBox div.cont h3 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 30px;
}
section.interviewSec div.interviewBox div.cont .name {
  font-weight: bold;
  margin-bottom: 40px;
}
section.interviewSec div.interviewBox div.cont div.noteBox p ~ p {
  margin-top: 1em;
}
section.interviewSec div.interviewBox .img {
  width: 385px;
}
section.interviewSec div.interviewBox.rev > div {
  transform: translateX(-45px);
  flex-direction: row;
}
section.interviewSec div.interviewBox ~ div.interviewBox {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  section.interviewSec {
    padding: 35px 0;
  }
  section.interviewSec h2 {
    margin-bottom: 20px;
  }
  section.interviewSec div.interviewBox {
    padding: 20px;
    width: 100%;
    border: 4px solid #e7e7e7;
    box-sizing: border-box;
    margin-top: 100px;
  }
  section.interviewSec div.interviewBox > div {
    transform: translateX(0);
    display: block;
  }
  section.interviewSec div.interviewBox div.cont {
    width: 100%;
  }
  section.interviewSec div.interviewBox div.cont h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  section.interviewSec div.interviewBox div.cont .name {
    margin-bottom: 15px;
  }
  section.interviewSec div.interviewBox .img {
    width: 100%;
    margin-bottom: 20px;
    margin-top: -90px;
  }
  section.interviewSec div.interviewBox.rev > div {
    transform: translateX(0);
  }
  section.interviewSec div.interviewBox ~ div.interviewBox {
    margin-top: 100px;
  }
}
/*------------------------------------------------------------------------*/
section.faqSec {
  background: #e7e7e7;
  padding: 70px 0 85px;
  line-height: 1.6;
}
section.faqSec h2 {
  margin-bottom: 30px;
}
section.faqSec ul.faqList {
  display: flex;
  flex-wrap: wrap;
}
section.faqSec ul.faqList li {
  width: 490px;
  margin-left: 20px;
  padding: 45px 35px;
  box-sizing: border-box;
  background: #fff;
  margin-top: 20px;
}
section.faqSec ul.faqList li:nth-child(2n+1) {
  margin-left: 0;
}
section.faqSec ul.faqList li > div {
  position: relative;
  padding-left: 40px;
}
section.faqSec ul.faqList li > div::before {
  content: "Q";
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  font-size: 21px;
  line-height: 1;
  color: #e60012;
  position: absolute;
  top: 0;
  left: 0;
}
section.faqSec ul.faqList li > div.qstBox {
  font-size: 19px;
  font-weight: bold;
}
section.faqSec ul.faqList li > div.ansBox {
  margin-top: 1.5em;
}
section.faqSec ul.faqList li > div.ansBox::before {
  content: "A";
  color: #01a53b;
}
section.faqSec ul.faqList li > div p ~ p {
  margin-top: 1em;
}
section.faqSec ul.faqList li:nth-child(2n) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

@media screen and (max-width: 768px) {
  section.faqSec {
    padding: 35px 10px 40px;
  }
  section.faqSec h2 {
    margin-bottom: 25px;
  }
  section.faqSec ul.faqList {
    display: block;
  }
  section.faqSec ul.faqList li {
    width: 100%;
    margin-left: 0;
    padding: 30px 20px;
    margin-top: 20px;
  }
  section.faqSec ul.faqList li:nth-child(n+3) {
    margin-top: 20px;
  }
  section.faqSec ul.faqList li:nth-child(2n) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  section.faqSec ul.faqList li > div {
    position: relative;
    padding-left: 40px;
  }
  section.faqSec ul.faqList li > div::before {
    font-size: 28px;
  }
  section.faqSec ul.faqList li > div.qstBox {
    font-size: 15px;
  }
}
/*------------------------------------------------------------------------*/
div.btmKv {
  height: 480px;
  background: url("/img/img_btm.jpg") center 50% no-repeat;
  background-size: cover;
}
div.btmKv div.inner {
  position: relative;
}
div.btmKv p {
  position: absolute;
  width: 214px;
  height: 214px;
  z-index: 10;
  top: 120px;
  left: 140px;
  -webkit-animation-name: shake;
          animation-name: shake;
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media screen and (max-width: 768px) {
  div.btmKv {
    height: 300px;
    background-position: 65% center;
  }
  div.btmKv p {
    width: 125px;
    height: 125px;
    top: 80px;
    left: 20px;
  }
}
/*------------------------------------------------------------------------*/
body.ready.fade {
  background: #fff;
}
body.ready.fade div.loader {
  opacity: 1;
}

div.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
  transition: 0.5s all;
  background: #01a53b;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.loader.active div.logoWrap {
  opacity: 1;
}
div.loader div.logoWrap {
  opacity: 0;
}
div.loader div.logoWrap p {
  margin: 0 auto;
}
div.loader div.logoWrap .ballon {
  width: 418px;
  margin-bottom: 20px;
}
div.loader div.logoWrap .logo {
  width: 124px;
  transform-origin: 50% 100px !important;
  -webkit-animation-duration: 6s !important;
          animation-duration: 6s !important;
}

@media screen and (max-width: 768px) {
  div.loader div.logoWrap {
    transform: scale(0.7);
  }
  div.loader div.logoWrap .logo {
    width: 124px;
    transform-origin: 50% 80px !important;
  }
}
@media screen and (max-width: 374px) {
  div.loader div.logoWrap {
    transform: scale(0.6);
  }
}
/**/
/*# sourceMappingURL=content.css.map */