/* mixin */
/* media-query */
.section01 {
  padding: 9.5rem 0 0;
}
.section01 .phone-area {
  height: 55rem;
  background-image: url("/img/online_marketing10_sc01_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 6.5rem 0 0 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.section01 .phone-area img {
  position: absolute;
}
.section01 .phone-area img.top {
  right: 39.2%;
  top: 0;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.8s;
  transform: rotate(12deg) translateX(50%) translateY(-50%);
}
.section01 .phone-area img.bottom {
  left: 42%;
  bottom: 0;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: transform 0.8s;
  transform: rotate(-12deg) translateX(-50%) translateY(50%);
}
.section01 .phone-area.animate img.top {
  opacity: 1;
  filter: blur(0px);
  transform: rotate(0deg) translateX(50%) translateY(0%);
}
.section01 .phone-area.animate img.bottom {
  opacity: 1;
  filter: blur(0px);
  transform: rotate(0deg) translateX(-50%) translateY(0%);
}

@media (max-width: 1799px) {
  .section01 .phone-area img.top {
    right: 34.2%;
  }
  .section01 .phone-area img.bottom {
    left: 37%;
  }
}
@media (max-width: 1279px) {
  .section01 .phone-area {
    height: 28.6458333333vw;
  }
  .section01 .phone-area img.top {
    right: 39.2%;
    width: 26.4583333333vw;
  }
  .section01 .phone-area img.bottom {
    left: 42%;
    width: 29.1145833333vw;
  }
}
@media (max-width: 767px) {
  .section01 {
    padding: 6rem 0 0;
  }
  .section01 .phone-area {
    margin: 5.5rem 0 0 0;
    height: 51vw;
  }
  .section01 .phone-area img.top {
    right: 31.5%;
    width: 49vw;
  }
  .section01 .phone-area img.bottom {
    left: 34.3%;
    width: 52vw;
  }
}
.section02 {
  padding: 6rem 0 14.3rem;
}
.section02 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: 18rem;
}
.section02 .box-wrap .box {
  display: flex;
}
.section02 .box-wrap .box .txt {
  width: 50%;
}
.section02 .box-wrap .box .txt h3 {
  padding: 0 0 2.7rem 0;
}
.section02 .box-wrap .box .txt p {
  word-break: keep-all;
  text-wrap: balance;
}
.section02 .box-wrap .box .figure {
  width: 50%;
}
.section02 .box-wrap .box.top .txt {
  padding: 15rem 0 0;
}
.section02 .box-wrap .box.top .figure {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 200px;
  perspective-origin: center 50%;
}
.section02 .box-wrap .box.top .figure .phone {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.section02 .box-wrap .box.top .figure .ad {
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
  position: absolute;
  top: 62%;
  left: 50%;
  transform: rotateX(60deg) translate3d(-50%, -50%, -150px) scale(0.65);
  transform-style: preserve-3d;
  opacity: 0;
}
.section02 .box-wrap .box.top .figure.animate .phone {
  clip-path: inset(0 0 0 0);
}
.section02 .box-wrap .box.top .figure.animate .ad {
  transform: rotateX(0deg) translate3d(-50%, -50%, 0px) scale(1);
  opacity: 1;
}
.section02 .box-wrap .box.bottom .txt {
  width: 48%;
  padding: 18.5rem 0 0;
}
.section02 .box-wrap .box.bottom .figure {
  clip-path: circle(0% at 50% 50%);
  transition: all 1.3s ease-in-out;
  opacity: 0;
  filter: blur(3px);
  width: 52%;
  display: flex;
  align-items: center;
  position: relative;
  right: 15px;
  z-index: 2;
}
.section02 .box-wrap .box.bottom .figure::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  background-color: #f8f8f8;
  top: 46%;
  left: 54%;
  width: 630px;
  height: 630px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.section02 .box-wrap .box.bottom .figure .left {
  position: relative;
  z-index: 2;
  left: 25px;
  width: 362px;
  display: flex;
  justify-content: center;
  position: relative;
  perspective: 200px;
  perspective-origin: center 50%;
}
.section02 .box-wrap .box.bottom .figure .left .ad {
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotateX(45deg) translate3d(-50%, -50%, -100px) scale(0.8);
  transform-style: preserve-3d;
  opacity: 0;
}
.section02 .box-wrap .box.bottom .figure .right {
  position: relative;
  z-index: 2;
}
.section02 .box-wrap .box.bottom.animate .figure {
  clip-path: circle(100% at 50% 50%);
  opacity: 1;
  filter: blur(0px);
}
.section02 .box-wrap .box.bottom.animate .figure .left .ad {
  transform: rotateX(0deg) translate3d(-50%, -50%, 0px) scale(1);
  opacity: 1;
}
@media (max-width: 1279px) {
  .section02 {
    padding: 10rem 0 11rem;
  }
  .section02 .box-wrap {
    gap: 10rem;
  }
  .section02 .box-wrap .box {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }
  .section02 .box-wrap .box .txt {
    text-align: center;
  }
  .section02 .box-wrap .box .txt p br {
    display: none;
  }
  .section02 .box-wrap .box.top .txt {
    width: 100%;
    padding: 0;
  }
  .section02 .box-wrap .box.top .figure {
    width: 100%;
    max-width: 400px;
  }
  .section02 .box-wrap .box.bottom {
    gap: 10rem;
  }
  .section02 .box-wrap .box.bottom .txt {
    width: 100%;
    padding: 0;
  }
  .section02 .box-wrap .box.bottom .figure {
    justify-content: center;
    width: 100%;
    right: unset;
  }
  .section02 .box-wrap .box.bottom .figure .left {
    width: unset;
    left: 0;
  }
  .section02 .box-wrap .box.bottom .figure .right {
    left: 20px;
  }
  .section02 .box-wrap .box.bottom.animate .figure .left .ad {
    transform: rotateX(0deg) translate3d(-50%, -50%, 0px) scale(1.2);
  }
}
@media (max-width: 767px) {
  .section02 {
    padding: 7.5rem 0 10rem;
  }
  .section02 .box-wrap {
    gap: 6rem;
  }
  .section02 .box-wrap .box {
    gap: 5rem;
  }
  .section02 .box-wrap .box.top .figure {
    width: 80%;
  }
  .section02 .box-wrap .box.top .figure .ad {
    transition-delay: 0.4s;
  }
  .section02 .box-wrap .box.bottom {
    gap: 8rem;
  }
  .section02 .box-wrap .box.bottom .figure {
    width: 95%;
  }
  .section02 .box-wrap .box.bottom .figure .right {
    left: 10px;
  }
  .section02 .box-wrap .box.bottom .figure::before {
    width: calc(100vw - 20px);
    height: calc(100vw - 20px);
    top: 50%;
    left: 50%;
  }
}
.section03 {
  padding: 9.5rem 0 0;
  background-image: url("/img/online_marketing10_sc03_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.section03 .figure-wrap {
  margin: 4rem 0 0;
  position: relative;
  height: 594px;
}
.section03 .figure-wrap .figure {
  perspective: 750px;
  transition: transform 0.8s ease;
}
.section03 .figure-wrap .figure img {
  transition: transform 0.8s ease-out 0.3s, opacity 0.8s ease-in 0.1s, filter 0.8s ease 0.1s;
}
.section03 .figure-wrap .figure .txt h3 {
  font-size: 2.5rem;
  padding: 0 0 1rem 0;
}
.section03 .figure-wrap .figure.left {
  position: absolute;
  left: 36.1%;
  transform: translate3d(-50%, 50%, -100px);
  bottom: -286px;
  transform-style: preserve-3d;
}
.section03 .figure-wrap .figure.left img {
  transform: scale(0.85) rotateY(30deg);
  opacity: 0;
  filter: blur(10px);
  transform-origin: right bottom;
}
.section03 .figure-wrap .figure.left .txt {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1s cubic-bezier(0.2, 0.8, 0.4, 1) 0.75s;
  position: absolute;
  left: -21.2%;
  top: 12.9%;
}
.section03 .figure-wrap .figure.right {
  position: absolute;
  right: 37.4%;
  transform: translate3d(50%, 50%, -100px);
  bottom: -147px;
  transform-style: preserve-3d;
}
.section03 .figure-wrap .figure.right img {
  transform: scale(0.85) rotateY(-30deg);
  opacity: 0;
  filter: blur(10px);
  transform-origin: left bottom;
}
.section03 .figure-wrap .figure.right .txt {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 1s cubic-bezier(0.2, 0.8, 0.4, 1) 0.75s;
  position: absolute;
  right: -21.3%;
  top: 31.7%;
}
.section03 .figure-wrap.animate .left {
  transform: translate3d(-50%, 0%, 0px);
}
.section03 .figure-wrap.animate .left img {
  transform: scale(1) rotateY(0deg);
  opacity: 1;
  filter: blur(0px);
}
.section03 .figure-wrap.animate .left .txt {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.section03 .figure-wrap.animate .right {
  transform: translate3d(50%, 0%, 0px);
}
.section03 .figure-wrap.animate .right img {
  transform: scale(1) rotateY(0deg);
  opacity: 1;
  filter: blur(0px);
}
.section03 .figure-wrap.animate .right .txt {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 1279px) {
  .section03 .figure-wrap {
    height: 30.9375vw;
  }
  .section03 .figure-wrap .figure.left {
    left: 40.1%;
    bottom: -14.8958333333vw;
  }
  .section03 .figure-wrap .figure.left img {
    width: 28.3333333333vw;
  }
  .section03 .figure-wrap .figure.left .txt {
    left: -51.2%;
  }
  .section03 .figure-wrap .figure.right {
    right: 41.4%;
    bottom: -7.65625vw;
  }
  .section03 .figure-wrap .figure.right img {
    width: 26.25vw;
  }
  .section03 .figure-wrap .figure.right .txt {
    right: -51.3%;
  }
}
@media (max-width: 767px) {
  .section03 {
    padding: 6rem 0 0;
  }
  .section03 .figure-wrap {
    margin: 1.3rem 0 0;
    height: 55.9375vw;
  }
  .section03 .figure-wrap .figure.left {
    left: 36.1%;
    bottom: -25.8958333333vw;
  }
  .section03 .figure-wrap .figure.left img {
    width: 48.3333333333vw;
  }
  .section03 .figure-wrap .figure.left .txt {
    top: 11.9%;
    left: -22.7%;
  }
  .section03 .figure-wrap .figure.left .txt h3 {
    font-size: 4vw;
    padding: 0 0 0.5rem 0;
  }
  .section03 .figure-wrap .figure.left .txt p {
    font-size: 2.7vw;
  }
  .section03 .figure-wrap .figure.right {
    right: 37.4%;
    bottom: -17.65625vw;
  }
  .section03 .figure-wrap .figure.right img {
    width: 46.25vw;
  }
  .section03 .figure-wrap .figure.right .txt {
    top: 30.2%;
    right: -28.8%;
  }
  .section03 .figure-wrap .figure.right .txt h3 {
    font-size: 4vw;
    padding: 0 0 0.5rem 0;
  }
  .section03 .figure-wrap .figure.right .txt p {
    font-size: 2.7vw;
  }
}
.cmn-merits-wrap {
  padding: 12.5rem 0;
}/*# sourceMappingURL=online_marketing10.css.map */