@charset "UTF-8";
/* 共通CSS */
body {
  margin: 0;
  font-family: "Century Gothic", sans-serif;
  line-height: 1.8;
}

.wht {
  color: #fff;
}

.red {
  color: #d00e0e;
}

.blue {
  color: #016AB6;
}

.orange {
  color: #F1730B;
}

.ylw {
  color: #F8FF5F;
}

.bgblue {
  color: #E9F2FF;
}

.gry {
  color: #F2F2F2;
}

p {
  line-height: 1.8;
  font-size: 2vw;
}
@media (max-width: 750px) {
  p {
    font-size: 4.7vw;
  }
}

/* header */
header {
  width: 100%;
  height: auto;
  background: url(../img/pc-header-bg.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 750px) {
  header {
    background: url(../img/sp-header-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.header-top {
  background: url(../img/header-top-bg.png);
  padding: 10px 0;
}

.header-top-img {
  width: 70%;
  margin: 0 15%;
}
@media (max-width: 750px) {
  .header-top-img {
    width: 60%;
    margin: 0 20%;
  }
}
@media (min-width: 750px) and (max-width: 1024px) {
  .header-top-img {
    width: 50%;
    margin: 0 25%;
  }
}

.header-inner {
  width: 90%;
  margin: 0px auto;
  max-width: 100%;
  padding: 3% 0;
}
@media (max-width: 750px) {
  .header-inner {
    width: 95%;
    margin: auto;
    max-width: 100%;
    padding: 5% 0 2.5% 0;
  }
}

.header-inner img {
  width: 100%;
}

@media (max-width: 750px) {
  width: 90%;
  margin: auto;
  max-width: 100%;
}
/* header */
p {
  margin: 0;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.s-text {
  font-size: 1.2vw !important;
}
@media (max-width: 750px) {
  .s-text {
    font-size: 3.9vw !important;
  }
}
@media (min-width: 750px) and (max-width: 1024px) {
  .s-text {
    line-height: 1.2;
    font-size: 2vw !important;
  }
}

.right-text {
  font-size: 1vw !important;
}
@media (max-width: 750px) {
  .right-text {
    font-size: 3vw !important;
  }
}

#content-width {
  width: 850px;
  margin: 0 auto;
}

.header-img {
  width: 100%;
  height: auto;
}

.header-row img {
  width: 60%;
  margin: 0 20%;
}
@media (max-width: 750px) {
  .header-row img {
    width: 95%;
    margin: auto;
  }
}

.btnarea {
  text-align: center;
  width: 100%;
  padding: 2.5% 0;
  background-color: #8e1460;
}
@media (max-width: 750px) {
  .btnarea {
    width: 100%;
    margin: 0 auto;
    padding: 5% 0;
  }
}

.white-btnarea {
  text-align: center;
  width: 100%;
  padding: 2.5% 0;
  background-color: white;
}
@media (max-width: 750px) {
  .white-btnarea {
    width: 100%;
    margin: 0 auto;
  }
}

.taC {
  text-align: center;
}

.yellow-line {
  background: linear-gradient(transparent 50%, #ffe610 50%);
}

.yellow {
  color: #fde730;
}

.red {
  color: #fe0c0c;
}

.white {
  color: white;
}

/* footer */
footer {
  background-color: black;
  color: white;
  padding: 2.5% 0;
  text-align: center;
}

footer a {
  color: white;
}
@media (max-width: 750px) {
  footer a {
    font-size: 4vw;
  }
}

/* footer */
.form-control {
  width: 50%;
  height: 40px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .form-control {
    width: 90%;
    height: 40px;
    margin-bottom: 10px;
    font-size: 4vw;
  }
}

.w-form-control {
  width: 90% !important;
  height: 40px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .w-form-control {
    width: 95% !important;
    margin-bottom: 10px;
    font-size: 4vw;
  }
}

/*スクロール フェードイン*/
.fadeIn {
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  opacity: 1;
}

.fade_off {
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
}

.fade_on {
  opacity: 1;
}

/*スクロール フェードイン 終わり */
/* 上下に動かすアニメーション */
.up-down {
  animation-name: up-down;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1s;
}

@keyframes up-down {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, -15px);
  }
}
/**  ボタンアニメーション **/
/* ボタン拡大縮小アニメーション */
.cv_btn {
  margin: 0 auto;
}

.cv_btn .floating_btn {
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin: center;
}

@keyframes anime1 {
  from {
    transform: scale(0.9, 0.9);
  }
  to {
    transform: scale(1, 1);
  }
}
/* ボタン拡大縮小アニメーション */
/* 波紋 */
.hamon {
  margin: 0 auto;
  max-width: 100%;
  display: block;
  cursor: pointer;
  border-radius: 100px;
  -webkit-animation: btnwrapanime 11s infinite;
  animation: btnwrapanime 1.5s infinite;
  -webkit-box-shadow: 0 0 0 0 #00bc00;
  box-shadow: 0 0 0 0 #00bc00;
}

@-webkit-keyframes btnwrapanime {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(233, 30, 99, 0);
    box-shadow: 0 0 0 50px rgba(233, 30, 99, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
  }
}
@keyframes btnwrapanime {
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(233, 30, 99, 0);
    box-shadow: 0 0 0 50px rgba(233, 30, 99, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
  }
}
@media (max-width: 750px) {
  @-webkit-keyframes btnwrapanime {
    70% {
      -webkit-box-shadow: 0 0 0 25px rgba(233, 30, 99, 0);
      box-shadow: 0 0 0 25px rgba(233, 30, 99, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
      box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
  }
  @keyframes btnwrapanime {
    70% {
      -webkit-box-shadow: 0 0 0 25px rgba(233, 30, 99, 0);
      box-shadow: 0 0 0 25px rgba(233, 30, 99, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
      box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
  }
}
/* 波紋 */
/* 追従 ナビゲーション */
.floating_btn {
  width: 40%;
  height: auto;
}

.floating_btn {
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin: center;
}

.floating_btn {
  width: 60%;
  height: auto;
}

.floating-banner {
  top: unset;
  /* PCで指定していた上下の位置指定をクリア */
  right: 0;
  /* 左右の隙間が空かないように */
  bottom: 0;
  /* 画面の最下部にぴったりくっつくように指定 */
  text-align: end;
  padding: 0 2.5% 0 0;
}

.flow-navi {
  position: fixed;
  top: 70% !important;
  z-index: 3;
  width: 100%;
  text-align: center;
  left: auto;
  bottom: 0;
  padding: 2.5% 0;
}

/* 追従 ナビゲーション */
/* ポヨヨンアニメーション */
.poyoyon {
  animation: poyoyon 2.5s infinite;
  opacity: 1;
}

@keyframes poyoyon {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}
/* ポヨヨンアニメーション */
/* ぷるんアニメーション */
.action-optin input[type=image] {
  width: 50%;
  margin: 0 auto;
  padding: 0;
  vertical-align: bottom;
}
@media (max-width: 750px) {
  .action-optin input[type=image] {
    width: 90%;
  }
}

.head_fin {
  position: relative;
}

.head_fin .finger {
  position: absolute;
  right: 30vw;
  width: 8vw;
  bottom: -1vw;
  width: 0%;
}
@media (max-width: 750px) {
  .head_fin .finger {
    position: absolute;
    right: 16vw;
    width: 8vw;
    bottom: -6vw;
    width: 0%;
  }
}

.head_fin .w-finger {
  position: absolute;
  right: 8vw;
  width: 8vw;
  bottom: -2vw;
  width: 0%;
}
@media (max-width: 750px) {
  .head_fin .w-finger {
    position: absolute;
    right: 16vw;
    width: 8vw;
    bottom: -6vw;
    width: 0%;
  }
}

.fin-img {
  width: 7vw;
}
@media (max-width: 750px) {
  .fin-img {
    width: 14vw;
  }
}

.purun {
  animation: purun 2s linear infinite;
}

@keyframes purun {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  5% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  10% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  25% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  45% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
/**  ボタンアニメーション **/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  #header-bg {
    background: url(../img/header-bg-sp.png);
    background-size: cover;
    margin: 0 0 5% 0;
  }
}
/* 次はあなたの稼ぐ番です。*/
.section_01 {
  background: #fffbe1;
}

.section-title1,
.section-title2,
.section-title3,
.section-title4 {
  background: url(../img/section-bg.png);
  background-size: cover;
}

.title01-img {
  width: 70%;
  max-width: 100%;
  margin: 0 15%;
  padding: 4% 0 2.5% 0;
}
@media (max-width: 750px) {
  .title01-img {
    width: 90%;
    max-width: 100%;
    margin: 0 5%;
    padding: 4% 0 0 0;
  }
}

.section01-content {
  padding: 5% 0;
  font-size: 1.4vw;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 750px) {
  .section01-content {
    width: 95%;
    margin: auto;
    font-size: 4.7vw;
    padding: 5% 0;
  }
}
@media (min-width: 750px) and (max-width: 1024px) {
  .section01-content {
    width: 90%;
    margin: 0 auto;
    font-size: 2.8vw;
  }
}

.section01-text {
  font-size: 1.4vw;
  line-height: 1.8;
  text-align: center;
}

/* 次はあなたの稼ぐ番です。*/
/* セミナーに参加しただけで「毎月50万円」の生活がスタートしました */
.section02-content {
  padding: 0;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .section02-content {
    width: 95%;
    margin: 0 2.5%;
  }
}
@media (min-width: 750px) and (max-width: 1024px) {
  .section02-content {
    width: 90%;
  }
}

.title02-img {
  width: 50%;
  max-width: 100%;
  margin: 0 25%;
  padding: 2.5% 0 0 0;
}
@media (max-width: 750px) {
  .title02-img {
    width: 90%;
    max-width: 100%;
    margin: 0 5%;
    padding: 5% 0 0 0;
  }
}

.section_02 {
  padding: 0;
  margin: 0 auto;
  background: url(../img/blue-bg.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* セミナーに参加しただけで「毎月50万円」の生活がスタートしました */
/* 徹底したリスク排除と安定収入を両立した稼ぎ方を独占 */
.section03-content {
  padding: 0;
  width: 90%;
  margin: 5% auto;
  background-color: white;
}
@media (max-width: 750px) {
  .section03-content {
    width: 95%;
    margin: 0 2.5%;
  }
}
@media (min-width: 750px) and (max-width: 1024px) {
  .section03-content {
    width: 90%;
    margin: 5% auto;
  }
}

.section03-content p {
  padding: 5%;
  font-size: 2.6vw;
  text-align: center;
}
@media (max-width: 750px) {
  .section03-content p {
    padding: 5% 2.5%;
    font-size: 4.8vw;
  }
}
@media (min-width: 750px) and (max-width: 1024px) {
  .section03-content p {
    font-size: 3vw;
  }
}

.section_03 {
  background: url(../img/green-bg.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content-title03 {
  padding: 2.5% 0;
  background: url(../img/title-orange-bg.png);
  background-size: cover;
}

.section03-img {
  width: 100%;
}

.content03-text {
  background-color: white;
  margin: 0 20%;
  padding: 5% 5% 0 5%;
}
@media (max-width: 750px) {
  .content03-text {
    padding: 5% 2.5% 0 2.5%;
    margin: 0 2.5%;
  }
}

.content03-text p {
  font-size: 1.4vw;
  line-height: 1.8;
}
@media (max-width: 750px) {
  .content03-text p {
    font-size: 4.7vw;
    line-height: 1.8;
  }
}

/* 徹底したリスク排除と安定収入を両立した稼ぎ方を独占 */
/**/
.section_04 {
  background: url(../img/orange-bg.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.title04-img {
  width: 70%;
  max-width: 100%;
  margin: 0 15%;
  padding: 2.5% 0 1% 0;
}
@media (max-width: 750px) {
  .title04-img {
    width: 90%;
    max-width: 100%;
    margin: 0 5%;
    padding: 2.5% 0 0 0;
  }
}
@media (min-width: 750px) and (max-width: 1024px) {
  .title04-img {
    width: 90%;
    margin: 0 5%;
  }
}

.section04-content {
  padding: 2.5% 0;
  width: 90%;
  margin: 0 auto;
  background-color: white;
}
@media (max-width: 750px) {
  .section04-content {
    width: 95%;
    margin: 0 2.5%;
  }
}
@media (min-width: 750px) and (max-width: 1024px) {
  .section04-content {
    width: 90%;
    margin: 0 5%;
  }
}

.sumaho-img {
  width: 100%;
}

.section04-content p {
  padding: 5%;
  font-size: 2vw;
  background-size: cover;
}
@media (max-width: 750px) {
  .section04-content p {
    font-size: 4.7vw;
    padding: 5% 2.5%;
  }
}
@media (min-width: 750px) and (max-width: 1024px) {
  .section04-content p {
    font-size: 3vw;
  }
}

.section04-text {
  font-size: 1.4vw;
  line-height: 1.8;
  text-align: center;
}

.step-img {
  width: 100%;
}

.money-up-img {
  width: 100%;
}

.arrow-img {
  width: 10%;
  margin: 0 45%;
}

.section-title03-img {
  width: 50%;
  margin: 0 25%;
  padding: 2.5% 0 0 0;
}

.point-img {
  width: 100%;
}

.orange-box {
  background-color: #ff8500;
  text-align: center;
  color: white;
  font-size: 3vw;
  margin: 50px 0 30px 0;
}
@media (max-width: 750px) {
  .orange-box {
    margin: 20px 0 20px 0;
  }
}

@media (max-width: 750px) {
  .orange-box b {
    padding: 5% 0;
    font-size: 6vw;
  }
}

.section2-bg {
  background-color: #fffbe1;
  padding: 5% 0;
}

.white-bg {
  background: white;
  width: 50%;
  margin: 0 25%;
  padding: 0.5% 0 0 0;
}
@media (max-width: 750px) {
  .white-bg {
    width: 95%;
    margin: 0 2.5%;
  }
}

.white-cta-img {
  width: 90% !important;
}
@media (max-width: 750px) {
  .white-cta-img {
    width: 95% !important;
  }
}

.voice-img {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
