@charset "utf-8";
/* bg ------------------------------*/
.bg-styleA {
  background: #48b954;
  color: #fff;
  padding: 75px 0;
}
.bg-styleB {
  background: #f7f7f7;
  padding: 4% !important;
}
.bg-styleC {
  background: rgba(255, 255, 255, 1);
  padding: 15px;
}
/* img ------------------------------*/
.img-sizeM {
  /* max-width: 215px; */
}
/* btn ------------------------------*/
/* styleA */
.btnBox-styleA {
  margin: 75px 0;
  text-align: center;
}
.btnBox-styleA a {
  font-weight: bold;
  position: relative;
  color: #fff;
  font-size: 1.1em;
  display: inline-block;
  max-width: 350px;
  min-width: 300px;
  width: 100%;
  padding: 25px 10px;
  border-radius: 40px;
  background: #48b954;
}
.btnBox-styleA a i {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 50px;
  animation: moveanimation 1.5s ease-out infinite;
}
@keyframes moveanimation {
  100% {
    right: 25px;
  }
}
/* styleB */
.btnBox-styleB {
  margin: 7px 0;
  text-align: center;
}
.btnBox-styleB a {
  font-weight: bold;
  font-size: 1.6em;
  color: #48b954;
}
/* fade -----------------------*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
/* line ------------------------------*/
/* intro */
.introLine-styleA {
  width: 2px;
  height: 75px;
  margin: 75px auto;
  background: #48b954;
  border-radius: 1px;
}
/*  */
.introLineBox-styleB {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 100px;
  box-sizing: border-box;
}
.introLine-styleB {
  right: 50%;
  top: 50%;
  height: 2px;
  position: absolute;
  overflow: hidden;
  width: 50px;
  transform: rotate(90deg);
}
.introLine-styleB::before,
.introLine-styleB::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}
.introLine-styleB:before {
  background: rgba(0, 0, 0, 0.2);
}
.introLine-styleB::after {
  background: #48b954;
  animation: move 2s infinite ease-out;
}
@keyframes move {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  60% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}

/* indent */
.indentLine-styleA {
  position: relative;
  padding: 30px;
}
.indentLine-styleA::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: #ccc;
}
/* textLine */
.textLine-styleA {
  background: linear-gradient(transparent 60%, #fffb85 0%);
  padding: 0 5px;
  margin: 0 2px;
}
/* notice ------------------------------*/
.noticeText {
  margin: 0 0 0.8em;
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1.5;
}
.noticePosition {
  position: relative;
}
.noticePosition::after,
.noticePosition::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 105%;
  background: #000;
}
.noticePosition::after {
  left: -20px;
  transform: rotate(-20deg);
}
.noticePosition::before {
  right: -18px;
  transform: rotate(20deg);
}
.noticeLine {
  background: linear-gradient(transparent 60%, #ffde6c 60%);
  padding: 0 5px;
}

@media screen and (max-width: 768px) {
  /* bg ------------------------------*/
  .bg-styleA {
    padding: 12% 5%;
  }
  .bg-styleA h3.h3-styleB {
    text-align: center;
  }
  .bg-styleB {
    padding: 25px 35px !important;
  }
  .bg-styleC {
    padding: 15px;
  }
  /* img ------------------------------*/
  .img-sizeM {
    max-width: 500px;
    width: 100%;
  }
  /* btn ------------------------------*/
  .btnBox-styleA {
    margin: 50px 0;
  }
  .btnBox-styleA a {
    max-width: 300px;
    min-width: 250px;
    width: 100%;
    padding: 30px 10px;
  }
  .btnBox-styleA a i {
    right: 30px;
  }
  @keyframes moveanimation {
    100% {
      right: 12px;
    }
  }
  /* margin ------------------------------*/
  .margin-styleA {
    margin: 20px auto;
  }
  /* line ------------------------------*/
  /*  */
  .introLineBox-styleB {
    padding: 60px;
  }
  .introLine-styleB {
    right: 46%;
    height: 1px;
    width: 35px;
  }
  /* indent */
  .indentLine-styleA {
    position: relative;
    padding: 30px;
  }
  .indentLine-styleA::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: #ccc;
  }
  /* textLine */
  .textLine-styleA {
    background: linear-gradient(transparent 60%, #fffb85 0%);
    padding: 0 5px;
    margin: 0 2px;
  }
  /* notice ------------------------------*/
  .noticeText {
    margin: 0 0 0.7em;
    font-size: 1.1em;
  }
  .noticePosition::after {
    left: -58px;
    transform: rotate(-20deg);
  }
  .noticePosition::before {
    right: -25px;
    transform: rotate(20deg);
  }
}
