@charset "UTF-8";
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-display: swap;
  src: local("Pretendard Black"), url("../fonts/Pretendard-Black.woff2") format("woff2"), url("../fonts/Pretendard-Black.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard ExtraBold"), url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"), url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"), url("../fonts/Pretendard-Bold.woff2") format("woff2"), url("../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("../fonts/Pretendard-SemiBold.woff2") format("woff2"), url("../fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url("../fonts/Pretendard-Medium.woff2") format("woff2"), url("../fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url("../fonts/Pretendard-Regular.woff2") format("woff2"), url("../fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard Light"), url("../fonts/Pretendard-Light.woff2") format("woff2"), url("../fonts/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard ExtraLight"), url("../fonts/Pretendard-ExtraLight.woff2") format("woff2"), url("../fonts/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard Thin"), url("../fonts/Pretendard-Thin.woff2") format("woff2"), url("../fonts/Pretendard-Thin.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #192534;
  font-family: "Pretendard", sans-serif;
}

a {
  color: #192534;
  text-decoration: none;
  font-family: "Pretendard", sans-serif;
}

ul, li, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

#wrap {
  width: 100%;
}

.bold {
  font-weight: 700;
}

html, body {
  scroll-behavior: smooth;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 99;
  background-color: transparent;
  transform: translateX(-50%);
  transition: all ease 0.3s;
}
header.on {
  background-color: #fff;
}
header.off {
  background-color: transparent;
}
header .header_wrap {
  height: 100px;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav {
  display: flex;
  gap: 60px;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 60px;
  font-weight: 700;
}
header nav ul li {
  font-size: 18px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
header nav ul li a {
  transition: all 0.3s ease-in-out;
}
header nav ul li a:hover {
  color: #32D583;
}
header nav ul li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -11px;
  left: 0;
  background-color: #32D583;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}
header nav ul li:hover::after {
  visibility: visible;
  transform: scaleX(1);
}
header nav ul li.on a {
  color: #32D583;
}
header nav ul li.on::after {
  visibility: visible;
  transform: scaleX(1);
}
header .header_button_box {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .header_button_box .btn-tel {
  display: flex;
  align-items: center;
  margin-right: 10px;
  color: #192534;
  font-size: 18px;
  font-weight: 700;
}
header .header_button_box .btn-tel img {
  margin-right: 6px;
}
header .header_button_box button {
  font-weight: 700;
  height: 44px;
  font-size: 16px;
}
header .header_button_box button > a {
  padding: 0 24px;
  border-radius: 22px;
  transition: all 0.2s ease;
}
header .header_button_box button:nth-of-type(1) a {
  background-color: #32D583;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  line-height: 44px;
}
header .header_button_box button:nth-of-type(1) a:hover {
  background-color: #192534;
}
header .header_button_box button:nth-of-type(2) a {
  border: 2px solid #32D583;
  display: block;
  width: 100%;
  height: 100%;
  color: #32D583;
  line-height: 44px;
}
header .header_button_box button:nth-of-type(2) a:hover {
  border: 2px solid #192534;
  color: #192534;
}

.top_button {
  width: 60px;
  height: 60px;
  background: #5F6B7A;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 8px;
  border: 1px solid #E4E8EE;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
  background: #fff url(../images/arrow_up.svg) no-repeat center;
  cursor: pointer;
  z-index: 9;
}
.top_button.off {
  opacity: 0;
  transition: all 0.3s;
}
.top_button.on {
  opacity: 1;
}
.top_button:hover {
  background: #32D583 url(../images/arrow_up_white.svg) no-repeat center;
}

@media all and (max-width: 1199px) {
  .top_button {
    right: 20px;
    width: 40px;
    height: 40px;
    background-size: 24px;
  }
  .top_button:hover {
    background-size: 24px;
  }
}
@media screen and (max-width: 1199px) {
  header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 99;
    background-color: transparent;
    transform: translateX(-50%);
    transition: all ease 0.3s;
  }
  header.on {
    background-color: #fff;
  }
  header.off {
    background-color: transparent;
  }
  header .header_wrap {
    width: 100%;
    height: 64px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  header .header_wrap .logo img {
    width: 120px;
  }
  header nav {
    display: flex;
    gap: 60px;
  }
  header nav ul {
    display: flex;
    align-items: center;
    gap: 60px;
    font-weight: 700;
    display: none;
  }
  header nav ul li {
    font-size: 18px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  header nav ul li a {
    transition: all 0.3s ease-in-out;
  }
  header nav ul li a:hover {
    color: #32D583;
  }
  header nav ul li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -11px;
    left: 0;
    background-color: #32D583;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
  }
  header nav ul li:hover::after {
    visibility: visible;
    transform: scaleX(1);
  }
  header nav ul li.on a {
    color: #32D583;
  }
  header nav ul li.on::after {
    visibility: visible;
    transform: scaleX(1);
  }
  header .header_button_box {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  header .header_button_box .btn-tel {
    font-size: 12px;
    margin-right: 0;
  }
  header .header_button_box .btn-tel img {
    display: none;
  }
  header .header_button_box button {
    font-weight: 700;
    height: 32px;
    font-size: 12px;
  }
  header .header_button_box button > a {
    padding: 0 14px;
    transition: all 0.2s ease;
    border-radius: 22px;
  }
  header .header_button_box button:nth-of-type(1) {
    display: none;
  }
  header .header_button_box button:nth-of-type(1) a {
    line-height: 32px;
  }
  header .header_button_box button:nth-of-type(2) a {
    line-height: 28px;
  }
  /* 모바일 */
}
@keyframes downUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spanUp {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes section2_img {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes backUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes textRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slider_text h2 {
  opacity: 0;
  transform: translateX(100%);
}
.slider_text h2.active {
  animation-name: textRight;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}
.slider_text h3 {
  opacity: 0;
  transform: translateX(-100%);
}
.slider_text h3.active {
  animation-name: textLeft;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  animation-delay: 0.3s;
}

.section3_img_box div.active,
.section4_img_box div.active {
  animation-name: backUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

.section4_img_box div.active .chat_icon {
  animation-name: backUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  animation-delay: 1s;
}

.first_img_box div.active {
  animation-name: section2_img;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}
.first_img_box div.active .feed_icon {
  animation-name: scaleUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}
.first_img_box div.active .feed_icon.feed1 {
  animation-delay: 0.8s;
}
.first_img_box div.active .feed_icon.feed2 {
  animation-delay: 1s;
}
.first_img_box div.active .feed_icon.feed3 {
  animation-delay: 1.2s;
}

.section2_img_box div.stop {
  opacity: 0;
  transform: translateX(100%);
}
.section2_img_box div.stop .feed_icon {
  opacity: 0;
  transform: scale(0.6);
}

span.active {
  animation-name: spanUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

span.stop {
  opacity: 0;
  transform: translateY(200px);
}

.active {
  animation-name: downUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

.stop {
  opacity: 0;
  transform: translateY(100%);
}

@keyframes spanUp {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes chat {
  0% {
    opacity: 0;
    transform: translate3d(0, 0px, 100px) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0px, 0) scale(1);
  }
}
.slider {
  width: 100%;
  height: 100vh;
  background: #F8F9FB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 290px 0 40px;
  overflow-x: hidden;
  row-gap: 20px;
}
.slider .slider_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.slider h2 {
  font-size: 100px;
  font-weight: 700;
}
.slider h3 {
  font-size: 48px;
  font-weight: 600;
  color: #414D5C;
}
.slider .swiper {
  width: 100%;
  overflow: visible;
}
.slider .swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.slider .swiper .slider_item {
  width: 400px;
  height: 285px;
}
.slider .swiper .slider_item1 > div {
  width: 100%;
  height: 100%;
  background: url(../img/pc/slider1.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
}
.slider .swiper .slider_item2 > div {
  width: 100%;
  height: 100%;
  background: url(../img/pc/slider2.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
}
.slider .swiper .slider_item3 > div {
  width: 100%;
  height: 100%;
  background: url(../img/pc/slider3.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
}
.slider .swiper .slider_item4 > div {
  width: 100%;
  height: 100%;
  background: url(../img/pc/slider4.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
}
.slider .swiper .slider_item5 > div {
  width: 100%;
  height: 100%;
  background: url(../img/pc/slider5.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
}
.slider .swiper .slider_item6 > div {
  width: 100%;
  height: 100%;
  background: url(../img/pc/slider6.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
}
.slider .swiper .slider_item7 > div {
  width: 100%;
  height: 100%;
  background: url(../img/pc/slider7.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
}
.slider .swiper .slider_item8 > div {
  width: 100%;
  height: 100%;
  background: url(../img/pc/slider8.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
}
.slider .swiper .slider_item9 > div {
  width: 100%;
  height: 100%;
  background: url(../img/pc/slider9.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
}
.slider .swiper .slider_item10 > div {
  width: 100%;
  height: 100%;
  background: url(../img/pc/slider10.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
}
.slider .swiper .slider_item11 > div {
  width: 100%;
  height: 100%;
  background: url(../img/pc/slider11.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
}
.slider .swiper .slider_item12 > div {
  width: 100%;
  height: 100%;
  background: url(../img/pc/slider12.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 20px;
}

.section1 {
  width: 100%;
  padding: 150px 0;
  background-color: #fff;
}
.section1 .section1_wrap {
  width: 1200px;
  margin: 0 auto;
}
.section1 .section1_wrap > h2 {
  font-weight: 700;
  font-size: 50px;
  text-align: center;
}
.section1 .section1_img_box {
  margin-top: 90px;
  width: 100%;
  position: relative;
}
.section1 .section1_img_box .pc_img {
  width: 1000px;
  height: 600px;
  background: url(../img/pc/pc-page.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 24px;
  animation-delay: 0.3s;
  animation-duration: 0.7s;
}
.section1 .section1_img_box .mobile_img {
  position: absolute;
  top: 50px;
  right: 0;
  width: 280px;
  height: 591px;
  background: url(../img/pc/mobile-page.png) no-repeat;
  background-size: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 24px;
  animation-delay: 0.6s;
  animation-duration: 0.7s;
}
.section1 .section1_text_box {
  margin-top: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.section1 .section1_text_box h3 {
  font-weight: 700;
  font-size: 44px;
  line-height: 140%;
  animation-delay: 0.6s;
}
.section1 .section1_text_box p {
  font-weight: 400;
  font-size: 23px;
  color: #414D5C;
  line-height: 150%;
  animation-delay: 0.8s;
}

.section2 {
  width: 100%;
  padding: 150px 0;
  background-color: #F8F9FB;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 150px;
  overflow: hidden;
}
.section2_item {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}
.section2_item.reverse .section2_text_box {
  order: 1;
}
.section2_item.reverse .section2_img_box {
  order: 0;
  width: 540px;
}
.section2_text_box {
  width: 520px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section2_text_box span {
  font-weight: 700;
  font-size: 20px;
  color: #32D583;
}
.section2_text_box h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  animation-delay: 0.2s;
}
.section2_text_box p {
  margin-top: 20px;
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
  color: #414D5C;
  animation-delay: 0.4s;
}
.section2_img_box {
  width: 580px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.section2_img_box.first_img_box {
  height: 665px;
  flex-direction: column;
  position: relative;
}
.section2_img_box.first_img_box .feed_absolute {
  position: absolute;
  top: 187px;
  right: 0;
  z-index: 1;
}
.section2_img_box.first_img_box div {
  width: 360px;
  position: relative;
  z-index: 2;
  animation-delay: 0.9s;
}
.section2_img_box.first_img_box div:nth-of-type(2) {
  animation-delay: 1.2s;
}
.section2_img_box.first_img_box div:nth-of-type(3) {
  animation-delay: 1.5s;
  align-self: center;
}
.section2_img_box.first_img_box div .feed_icon {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
}
.section2_img_box.first_img_box div .feed_icon.feed1 {
  background: url(../img/icon/feed-icon1.svg) no-repeat;
  top: 38px;
  right: -33px;
}
.section2_img_box.first_img_box div .feed_icon.feed2 {
  background: url(../img/icon/feed-icon2.svg) no-repeat;
  bottom: -31px;
  right: 30px;
}
.section2_img_box.first_img_box div .feed_icon.feed3 {
  background: url(../img/icon/feed-icon3.svg) no-repeat;
  top: 34px;
  left: -95px;
}
.section2_img_box > div {
  animation-duration: 0.6s;
  animation-delay: 0.8s;
}
.section2_img_box > div:nth-of-type(2) {
  animation-delay: 1s;
}
.section2_img_box > div:nth-of-type(3) {
  animation-delay: 1.2s;
}
.section2_img_box > div img {
  width: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 24px;
}

.section3 {
  width: 100%;
  padding: 150px 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 150px;
}
.section3_item {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}
.section3_text_box {
  width: 520px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section3_text_box span {
  font-weight: 700;
  font-size: 20px;
  color: #32D583;
}
.section3_text_box h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  animation-delay: 0.2s;
}
.section3_text_box p {
  margin-top: 20px;
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
  color: #414D5C;
  animation-delay: 0.4s;
}
.section3_img_box {
  width: 581px;
  display: flex;
  justify-content: space-between;
}
.section3_img_box > div {
  animation-delay: 0.6s;
}
.section3_img_box > div:nth-of-type(2) {
  animation-delay: 0.8s;
}
.section3_img_box > div img {
  width: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 24px;
}
.section3_img_box {
  height: auto;
  gap: 40px;
}
.section3_img_box div {
  position: relative;
}
.section3_img_box div:last-of-type {
  margin-top: 150px;
  align-self: flex-end;
}
.section3_img_box div.active .chat_icon {
  animation-name: chat;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}
.section3_img_box div.active .icon1 {
  animation-delay: 1s;
}
.section3_img_box div.active .icon2 {
  animation-delay: 1.2s;
}
.section3_img_box div.active .icon3 {
  animation-delay: 1.4s;
}
.section3_img_box div.stop {
  opacity: 0;
  transform: translate3d(0, 0px, 100px) scale(0.6);
}
.section3_img_box div .chat_icon {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
}
.section3_img_box div .chat_icon.icon1 {
  background: url(../img/icon/feed-icon3.svg) no-repeat;
  top: -62px;
  left: 40px;
}
.section3_img_box div .chat_icon.icon2 {
  width: 60px;
  height: 60px;
  background: url(../img/icon/smile.svg) no-repeat center;
  top: -105px;
  left: 140px;
}
.section3_img_box div .chat_icon.icon3 {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: transparent url(../img/icon/adobe.svg) no-repeat center;
  bottom: 40px;
  left: -56px;
}
.section3_img_box div .chat_icon.icon3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: 4px;
  right: -12px;
  background: url(../img/icon/hand.svg);
}

.section4 {
  width: 100%;
  padding: 150px 0;
  background-color: #F8F9FB;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 150px;
  overflow: hidden;
}
.section4_item {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}
.section4_text_box {
  width: 520px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section4_text_box span {
  font-weight: 700;
  font-size: 20px;
  color: #32D583;
}
.section4_text_box h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  animation-delay: 0.2s;
}
.section4_text_box p {
  margin-top: 20px;
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
  color: #414D5C;
  animation-delay: 0.4s;
}
.section4_img_box {
  width: 580px;
  display: flex;
  justify-content: space-between;
}
.section4_img_box > div {
  animation-delay: 0.6s;
}
.section4_img_box > div:nth-of-type(2) {
  animation-delay: 0.8s;
}
.section4_img_box > div img {
  width: 100%;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 24px;
}
.section4_img_box {
  padding-top: 55px;
}
.section4_img_box div {
  position: relative;
}
.section4_img_box div .chat_icon {
  position: absolute;
  width: 200px;
  height: 166px;
  background: url(../img/icon/bell.svg) no-repeat;
  top: -100px;
  right: -100px;
}

.section5 {
  padding: 150px 0;
  background-color: #fff;
}
.section5_wrap {
  width: 1200px;
  margin: 0 auto;
}
.section5 h3 {
  font-weight: 700;
  font-size: 50px;
  text-align: center;
}
.section5_wrap > div {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.section5_item {
  display: flex;
  align-items: center;
  gap: 60px;
}
.section5_item:nth-of-type(2) {
  align-self: flex-end;
}
.section5_item img {
  width: 170px;
}
.section5_item img.active {
  animation-name: chat;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
}
.section5_item img.stop {
  opacity: 0;
  transform: translate3d(0, 0px, 100px) scale(0.6);
}
.section5_item > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section5_item > div .active {
  animation-name: spanUp;
  animation-duration: 0.4s;
  animation-fill-mode: both;
}
.section5_item > div h4 {
  font-weight: 700;
  font-size: 30px;
  animation-delay: 0.7s;
}
.section5_item > div p {
  font-weight: 400;
  font-size: 23px;
  line-height: 150%;
  color: #414D5C;
  animation-delay: 0.9s;
}

.section6 {
  overflow-y: hidden;
  padding: 150px 0;
  background-color: #F8F9FB;
}
.section6_wrap {
  width: 1200px;
  margin: 0 auto;
}
.section6 h3 {
  font-weight: 700;
  font-size: 50px;
  text-align: center;
}
.section6_wrap > p {
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  color: #414D5C;
  animation-delay: 0.2s;
}
.section6_wrap > h3 {
  margin: 12px 0 90px;
  animation-delay: 0.4s;
}
.section6_wrap > h3 div {
  animation-delay: 0.4s;
}
.section6_wrap > div {
  display: flex;
  justify-content: space-between;
}
.section6_item {
  width: 585px;
  padding: 50px;
  background: #FFFFFF;
  box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  animation-delay: 0.5s;
}
.section6_item:last-of-type {
  animation-delay: 0.8s;
}
.section6_item > h4 {
  font-weight: 700;
  font-size: 24px;
}
.section6_item > div {
  display: flex;
  gap: 8px;
  margin: 20px 0 30px;
  font-weight: 600;
  font-size: 48px;
}
.section6_item > div span {
  font-weight: 500;
  font-size: 20px;
  color: #5F6B7A;
}
.section6_item > p {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #414D5C;
}
.section6_item > a {
  margin-top: 40px;
  background: #FFFFFF;
  border: 2px solid #32D583;
  border-radius: 4px;
  height: 68px;
  font-weight: 700;
  font-size: 20px;
  color: #32D583;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section6_item > a:hover {
  background-color: #32D583;
  color: #fff;
}
.section6_item.active.hover {
  animation-name: none;
  transition: 0.3s;
}
.section6_item.active.hover:hover {
  transform: translateY(-5%);
}

.section7 {
  background-color: #32D583;
  padding: 130px;
  overflow: hidden;
  display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section7 > div {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}
.section7 > div h3 {
  font-weight: 700;
  font-size: 50px;
  line-height: 140%;
  color: #fff;
  animation-delay: 0.3s;
}
.section7 > div div {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section7 > div div.active {
  animation: none;
}
.section7 > div div.active .pc_only {
  animation-name: textRight;
  animation-duration: 0.4s;
  animation-fill-mode: both;
  animation-delay: 0.7s;
}
.section7 > div div.active .pc_only:nth-of-type(2) {
  animation-delay: 0.9s;
}
.section7 > div div img {
  width: 240px;
}

.mobile_only {
  display: none;
}

@media screen and (max-width: 1199px) {
  .mobile_only {
    display: block;
  }
  .slider {
    width: 100%;
    height: 100vh;
    min-height: 800px;
    background: #F8F9FB;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 250px 0px 80px;
    overflow-x: hidden;
    max-height: 1200px;
  }
  .slider .slider_text {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .slider h2 {
    font-size: 48px;
    font-weight: 700;
  }
  .slider h3 {
    font-size: 20px;
    font-weight: 600;
    color: #414D5C;
  }
  .slider button {
    border: 1px solid #32D583;
    border-radius: 23px;
    height: 46px;
    padding: 0 30.5px;
    color: #32D583;
    background-color: transparent;
    font-weight: 700;
    font-size: 15px;
    margin-top: 10px;
  }
  .slider .swiper {
    width: 100%;
  }
  .slider .swiper .slider_item {
    width: 400px;
    height: 285px;
  }
  .slider .swiper .slider_item1 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider1.png) no-repeat;
    background-size: 100%;
  }
  .slider .swiper .slider_item2 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider2.png) no-repeat;
    background-size: 100%;
  }
  .slider .swiper .slider_item3 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider3.png) no-repeat;
    background-size: 100%;
  }
  .slider .swiper .slider_item4 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider4.png) no-repeat;
    background-size: 100%;
  }
  .slider .swiper .slider_item5 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider5.png) no-repeat;
    background-size: 100%;
  }
  .slider .swiper .slider_item6 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider6.png) no-repeat;
    background-size: 100%;
  }
  .slider .swiper .slider_item7 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider7.png) no-repeat;
    background-size: 100%;
  }
  .slider .swiper .slider_item8 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider8.png) no-repeat;
    background-size: 100%;
  }
  .slider .swiper .slider_item9 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider9.png) no-repeat;
    background-size: 100%;
  }
  .slider .swiper .slider_item10 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider10.png) no-repeat;
    background-size: 100%;
  }
  .slider .swiper .slider_item11 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider11.png) no-repeat;
    background-size: 100%;
  }
  .slider .swiper .slider_item12 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider12.png) no-repeat;
    background-size: 100%;
  }
  .section1 {
    width: 100%;
    padding: 80px 20px;
    background-color: #fff;
  }
  .section1 .section1_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .section1 .section1_wrap > h2 {
    font-weight: 700;
    font-size: 30px;
    text-align: left;
  }
  .section1 .section1_img_box {
    margin-top: 90px;
    width: 100%;
    position: relative;
  }
  .section1 .section1_img_box .pc_img {
    width: 85%;
    height: 0px;
    padding-top: 51.085%;
    background: url(../img/pc/pc-page.png) no-repeat center;
    background-size: cover;
    box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    animation-delay: 0.3s;
    animation-duration: 0.7s;
  }
  .section1 .section1_img_box .mobile_img {
    position: absolute;
    top: 12px;
    right: 0;
    width: 24%;
    height: 0px;
    padding-top: 50.6571428571%;
    background: url(../img/pc/mobile-page.png) no-repeat;
    background-size: cover;
    box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
    border-radius: 8px;
    animation-delay: 0.6s;
    animation-duration: 0.7s;
  }
  .section1 .section1_text_box {
    margin-top: 75px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .section1 .section1_text_box h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    animation-delay: 0.6s;
  }
  .section1 .section1_text_box p {
    font-weight: 400;
    font-size: 17px;
    color: #414D5C;
    line-height: 150%;
    animation-delay: 0.8s;
  }
  .section2 {
    width: 100%;
    padding: 80px 20px;
    background-color: #F8F9FB;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 150px;
    overflow: hidden;
  }
  .section2_item {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .section2_item.reverse .section2_text_box {
    order: 1;
  }
  .section2_item.reverse .section2_img_box {
    order: 0;
    width: 50%;
  }
  .section2_text_box {
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .section2_text_box span {
    font-weight: 700;
    font-size: 15px;
    color: #32D583;
  }
  .section2_text_box h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 140%;
    animation-delay: 0.2s;
  }
  .section2_text_box p {
    margin-top: 20px;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #414D5C;
    animation-delay: 0.4s;
  }
  .section2_img_box {
    width: 47%;
    display: flex;
    justify-content: space-between;
  }
  .section2_img_box.first_img_box {
    width: 580px;
    height: 665px;
    flex-direction: column;
    position: relative;
  }
  .section2_img_box.first_img_box .feed_absolute {
    position: absolute;
    top: 187px;
    right: 0;
    z-index: 1;
  }
  .section2_img_box.first_img_box div {
    width: 360px;
    position: relative;
    z-index: 2;
  }
  .section2_img_box.first_img_box div .feed_icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  }
  .section2_img_box.first_img_box div .feed_icon.feed1 {
    background: url(../img/icon/feed-icon1.svg) no-repeat;
    background-size: cover;
    top: 38px;
    right: -33px;
  }
  .section2_img_box.first_img_box div .feed_icon.feed2 {
    background: url(../img/icon/feed-icon2.svg) no-repeat;
    background-size: cover;
    bottom: -31px;
    right: 15px;
  }
  .section2_img_box.first_img_box div .feed_icon.feed3 {
    background: url(../img/icon/feed-icon3.svg) no-repeat;
    background-size: cover;
    top: 34px;
    left: -95px;
  }
  .section2_img_box.mobile_section {
    gap: 20px;
  }
  .section2_img_box > div img {
    width: 100%;
    box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .section3 {
    width: 100%;
    padding: 80px 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .section3_item {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .section3_text_box {
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .section3_text_box span {
    font-weight: 700;
    font-size: 17px;
    color: #32D583;
  }
  .section3_text_box h3 {
    font-weight: 700;
    font-size: 26px;
    line-height: 140%;
    animation-delay: 0.2s;
  }
  .section3_text_box p {
    margin-top: 12px;
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    color: #414D5C;
    animation-delay: 0.4s;
  }
  .section3_img_box {
    width: 47%;
    display: flex;
    justify-content: space-between;
  }
  .section3_img_box > div {
    animation-delay: 0.6s;
  }
  .section3_img_box > div:nth-of-type(2) {
    animation-delay: 0.8s;
  }
  .section3_img_box > div img {
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .section3_img_box {
    height: auto;
    position: relative;
    margin-bottom: 60px;
  }
  .section3_img_box div {
    position: relative;
    width: 53%;
  }
  .section3_img_box div img {
    width: 100%;
  }
  .section3_img_box div:last-of-type {
    margin-top: 0;
    position: absolute;
    top: 60px;
    right: 0;
    align-self: none;
  }
  .section3_img_box div.active .chat_icon {
    animation-name: chat;
    animation-duration: 0.4s;
    animation-fill-mode: both;
  }
  .section3_img_box div.active .icon1 {
    animation-delay: 1s;
  }
  .section3_img_box div.active .icon2 {
    animation-delay: 1.2s;
  }
  .section3_img_box div.active .icon3 {
    animation-delay: 1.4s;
  }
  .section3_img_box div.stop {
    opacity: 0;
    transform: translate3d(0, 0px, 100px) scale(0.6);
  }
  .section3_img_box div .chat_icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  }
  .section3_img_box div .chat_icon.icon1 {
    background: url(../img/icon/feed-icon3.svg) no-repeat;
    background-size: 100%;
    top: -40px;
    left: 10%;
  }
  .section3_img_box div .chat_icon.icon2 {
    width: 36px;
    height: 36px;
    background: url(../img/icon/smile.svg) no-repeat center;
    background-size: 100%;
    top: -56px;
    left: 50%;
  }
  .section3_img_box div .chat_icon.icon3 {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: transparent url(../img/icon/adobe.svg) no-repeat center;
    background-size: 100%;
    top: 90%;
    bottom: 0px;
    left: -10%;
  }
  .section3_img_box div .chat_icon.icon3::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: 0px;
    right: 0px;
    background: url(../img/icon/hand.svg);
    background-size: 100%;
  }
  .section4 {
    width: 100%;
    padding: 80px 20px;
    background-color: #F8F9FB;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .section4_item {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .section4_text_box {
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .section4_text_box span {
    font-weight: 700;
    font-size: 17px;
    color: #32D583;
  }
  .section4_text_box h3 {
    font-weight: 700;
    font-size: 26px;
    line-height: 140%;
    animation-delay: 0.2s;
  }
  .section4_text_box p {
    margin-top: 12px;
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    color: #414D5C;
    animation-delay: 0.4s;
  }
  .section4_img_box {
    width: 47%;
    display: flex;
    justify-content: space-between;
  }
  .section4_img_box > div {
    animation-delay: 0.6s;
  }
  .section4_img_box > div:nth-of-type(2) {
    animation-delay: 0.8s;
  }
  .section4_img_box > div img {
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .section4_img_box {
    padding: 55px 30px 0;
  }
  .section4_img_box div {
    position: relative;
  }
  .section4_img_box div img {
    width: 100%;
  }
  .section4_img_box div .chat_icon {
    position: absolute;
    width: 20%;
    height: 0;
    padding-top: 16.6666666667%;
    background: url(../img/mobile/bell.png) no-repeat;
    background-size: 100%;
    top: -6%;
    right: -9%;
  }
  .section5 {
    padding: 80px 20px;
    background-color: #fff;
  }
  .section5_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .section5 h3 {
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    line-height: 140%;
  }
  .section5_wrap > div {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .section5_item {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .section5_item:nth-of-type(2) {
    align-self: flex-end;
  }
  .section5_item img {
    width: 130px;
  }
  .section5_item img.active {
    animation-name: chat;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    animation-delay: 0.5s;
  }
  .section5_item img.stop {
    opacity: 0;
    transform: translate3d(0, 0px, 100px) scale(0.6);
  }
  .section5_item > div {
    display: flex;
    gap: 8px;
  }
  .section5_item > div .active {
    animation-name: spanUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
  }
  .section5_item > div h4 {
    font-weight: 700;
    font-size: 22px;
    animation-delay: 0.7s;
  }
  .section5_item > div p {
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #414D5C;
    animation-delay: 0.9s;
  }
  .section6 {
    overflow-y: hidden;
    padding: 80px 20px;
    background-color: #F8F9FB;
  }
  .section6_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .section6 h3 {
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    line-height: 140%;
  }
  .section6_wrap > p {
    text-align: left;
    font-weight: 400;
    font-size: 17px;
    color: #414D5C;
  }
  .section6_wrap > h3 {
    margin: 4px 0 60px;
  }
  .section6_wrap > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 50px;
  }
  .section6_item {
    width: 100%;
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    animation-delay: 0.5s;
  }
  .section6_item:nth-of-type(2) {
    animation-delay: 1s;
  }
  .section6_item > h4 {
    font-weight: 700;
    font-size: 17px;
  }
  .section6_item > div {
    display: flex;
    gap: 8px;
    margin: 20px 0 30px;
    font-weight: 600;
    font-size: 36px;
  }
  .section6_item > div span {
    font-weight: 500;
    font-size: 13px;
    color: #5F6B7A;
  }
  .section6_item > p {
    font-weight: 400;
    font-size: 17px;
    line-height: 140%;
    color: #414D5C;
  }
  .section6_item > a {
    margin-top: 40px;
    background: #FFFFFF;
    border: 2px solid #32D583;
    border-radius: 4px;
    height: 46px;
    font-weight: 700;
    font-size: 15px;
    color: #32D583;
    display: flex;
  }
  .section6_item > a:hover {
    background-color: #32D583;
    color: #fff;
  }
  .section7 {
    background-color: #32D583;
    padding: 80px 20px;
  }
  .section7 > div {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
  }
  .section7 > div h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 140%;
    color: #fff;
  }
  .section7 > div div {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .section7 > div div .pc_only {
    display: none;
  }
  .section7 > div div img {
    width: 240px;
  }
  .section7 > div div button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 19.5px;
    height: 46px;
    background: #FFFFFF;
    border-radius: 23px;
    font-weight: 600;
    font-size: 15px;
  }
  .section7 > div div button img {
    width: 16px;
  }
}
@media screen and (max-width: 767px) {
  .mobile_only {
    display: block;
  }
  .slider {
    width: 100%;
    height: 100vh;
    min-height: 800px;
    background: #F8F9FB;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 250px 0px 80px;
    overflow-x: hidden;
  }
  .slider .slider_text {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .slider h2 {
    font-size: 48px;
    font-weight: 700;
  }
  .slider h3 {
    font-size: 20px;
    font-weight: 600;
    color: #414D5C;
  }
  .slider button {
    border: 1px solid #32D583;
    border-radius: 23px;
    height: 46px;
    padding: 0 30.5px;
    color: #32D583;
    background-color: transparent;
    font-weight: 700;
    font-size: 15px;
    margin-top: 10px;
  }
  .slider .swiper {
    width: 100%;
  }
  .slider .swiper .slider_item {
    width: 270px;
    height: 192px;
  }
  .slider .swiper .slider_item1 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider1.png) no-repeat;
    background-size: 100%;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .slider .swiper .slider_item2 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider2.png) no-repeat;
    background-size: 100%;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .slider .swiper .slider_item3 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider3.png) no-repeat;
    background-size: 100%;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .slider .swiper .slider_item4 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider4.png) no-repeat;
    background-size: 100%;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .slider .swiper .slider_item5 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider5.png) no-repeat;
    background-size: 100%;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .slider .swiper .slider_item6 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider6.png) no-repeat;
    background-size: 100%;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .slider .swiper .slider_item7 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider7.png) no-repeat;
    background-size: 100%;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .slider .swiper .slider_item8 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider8.png) no-repeat;
    background-size: 100%;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .slider .swiper .slider_item9 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider9.png) no-repeat;
    background-size: 100%;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .slider .swiper .slider_item10 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider10.png) no-repeat;
    background-size: 100%;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .slider .swiper .slider_item11 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider11.png) no-repeat;
    background-size: 100%;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .slider .swiper .slider_item12 > div {
    width: 100%;
    height: 100%;
    background: url(../img/pc/slider12.png) no-repeat;
    background-size: 100%;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .section1 {
    width: 100%;
    padding: 80px 20px;
    background-color: #fff;
  }
  .section1 .section1_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .section1 .section1_wrap > h2 {
    font-weight: 700;
    font-size: 30px;
    text-align: left;
  }
  .section1 .section1_img_box {
    margin-top: 90px;
    width: 100%;
    position: relative;
  }
  .section1 .section1_img_box .pc_img {
    width: 85%;
    height: 0px;
    padding-top: 51.085%;
    background: url(../img/pc/pc-page.png) no-repeat center;
    background-size: cover;
    box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    animation-delay: 0.3s;
    animation-duration: 0.7s;
  }
  .section1 .section1_img_box .mobile_img {
    position: absolute;
    top: 12px;
    right: 0;
    width: 24%;
    height: 0px;
    padding-top: 50.6571428571%;
    background: url(../img/pc/mobile-page.png) no-repeat;
    background-size: cover;
    box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
    border-radius: 8px;
    animation-delay: 0.6s;
    animation-duration: 0.7s;
  }
  .section1 .section1_text_box {
    margin-top: 75px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .section1 .section1_text_box h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    animation-delay: 0.6s;
  }
  .section1 .section1_text_box p {
    font-weight: 400;
    font-size: 17px;
    color: #414D5C;
    line-height: 150%;
    animation-delay: 0.8s;
  }
  .section2 {
    width: 100%;
    padding: 80px 30px;
    background-color: #F8F9FB;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    overflow: hidden;
  }
  .section2_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 60px;
  }
  .section2_item.reverse .section2_text_box {
    order: 0;
  }
  .section2_item.reverse .section2_img_box {
    order: 1;
    width: 100%;
  }
  .section2_text_box {
    width: 520px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .section2_text_box span {
    font-weight: 700;
    font-size: 15px;
    color: #32D583;
  }
  .section2_text_box h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 140%;
    animation-delay: 0.2s;
  }
  .section2_text_box p {
    margin-top: 12px;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #414D5C;
    animation-delay: 0.4s;
  }
  .section2_img_box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
  .section2_img_box.first_img_box {
    width: 315px;
    height: 442px;
    flex-direction: column;
    justify-content: space-between;
    align-self: center;
    position: relative;
  }
  .section2_img_box.first_img_box .feed_absolute {
    position: absolute;
    top: 121px;
    right: 0;
    z-index: 1;
  }
  .section2_img_box.first_img_box div {
    width: 240px;
    position: relative;
    z-index: 2;
  }
  .section2_img_box.first_img_box div .feed_icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  }
  .section2_img_box.first_img_box div .feed_icon.feed1 {
    background: url(../img/icon/feed-icon1.svg) no-repeat;
    background-size: cover;
    top: 22px;
    right: -33px;
  }
  .section2_img_box.first_img_box div .feed_icon.feed2 {
    background: url(../img/icon/feed-icon2.svg) no-repeat;
    background-size: cover;
    bottom: 0px;
    top: -25px;
    right: 15px;
  }
  .section2_img_box.first_img_box div .feed_icon.feed3 {
    background: url(../img/icon/feed-icon3.svg) no-repeat;
    background-size: cover;
    top: 28px;
    left: -40px;
  }
  .section2_img_box.mobile_section {
    position: relative;
  }
  @keyframes downUpB {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }
    100% {
      opacity: 1;
      transform: translateY(-50%);
    }
  }
  .section2_img_box.mobile_section div {
    width: 53%;
  }
  .section2_img_box.mobile_section div:nth-of-type(2) {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .section2_img_box.mobile_section div:nth-of-type(2).active {
    animation-name: downUpB;
  }
  .section2_img_box > div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section2_img_box > div img {
    width: 100%;
    max-width: 520px;
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .section3 {
    width: 100%;
    padding: 80px 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .section3_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 60px;
  }
  .section3_text_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .section3_text_box span {
    font-weight: 700;
    font-size: 17px;
    color: #32D583;
  }
  .section3_text_box h3 {
    font-weight: 700;
    font-size: 26px;
    line-height: 140%;
    animation-delay: 0.2s;
  }
  .section3_text_box p {
    margin-top: 12px;
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    color: #414D5C;
    animation-delay: 0.4s;
  }
  .section3_img_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .section3_img_box > div {
    animation-delay: 0.6s;
  }
  .section3_img_box > div:nth-of-type(2) {
    animation-delay: 0.8s;
  }
  .section3_img_box > div img {
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .section3_img_box {
    height: auto;
    position: relative;
    margin-bottom: 60px;
  }
  .section3_img_box div {
    position: relative;
    width: 53%;
  }
  .section3_img_box div img {
    width: 100%;
  }
  .section3_img_box div:last-of-type {
    position: absolute;
    top: 60px;
    right: 0;
    align-self: none;
  }
  .section3_img_box div.active .chat_icon {
    animation-name: chat;
    animation-duration: 0.4s;
    animation-fill-mode: both;
  }
  .section3_img_box div.active .icon1 {
    animation-delay: 1s;
  }
  .section3_img_box div.active .icon2 {
    animation-delay: 1.2s;
  }
  .section3_img_box div.active .icon3 {
    animation-delay: 1.4s;
  }
  .section3_img_box div.stop {
    opacity: 0;
    transform: translate3d(0, 0px, 100px) scale(0.6);
  }
  .section3_img_box div .chat_icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
  }
  .section3_img_box div .chat_icon.icon1 {
    background: url(../img/icon/feed-icon3.svg) no-repeat;
    background-size: 100%;
    top: -40px;
    left: 10%;
  }
  .section3_img_box div .chat_icon.icon2 {
    width: 36px;
    height: 36px;
    background: url(../img/icon/smile.svg) no-repeat center;
    background-size: 100%;
    top: -56px;
    left: 50%;
  }
  .section3_img_box div .chat_icon.icon3 {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: transparent url(../img/icon/adobe.svg) no-repeat center;
    background-size: 100%;
    top: 90%;
    bottom: 0px;
    left: -10%;
  }
  .section3_img_box div .chat_icon.icon3::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: 0px;
    right: 0px;
    background: url(../img/icon/hand.svg);
    background-size: 100%;
  }
  .section4 {
    width: 100%;
    padding: 80px 20px;
    background-color: #F8F9FB;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .section4_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 60px;
  }
  .section4_text_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .section4_text_box span {
    font-weight: 700;
    font-size: 17px;
    color: #32D583;
  }
  .section4_text_box h3 {
    font-weight: 700;
    font-size: 26px;
    line-height: 140%;
    animation-delay: 0.2s;
  }
  .section4_text_box p {
    margin-top: 12px;
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
    color: #414D5C;
    animation-delay: 0.4s;
  }
  .section4_img_box {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .section4_img_box > div {
    animation-delay: 0.6s;
  }
  .section4_img_box > div:nth-of-type(2) {
    animation-delay: 0.8s;
  }
  .section4_img_box > div img {
    box-shadow: 2px 6px 16px 3px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
  }
  .section4_img_box {
    padding: 55px 30px 0;
  }
  .section4_img_box div {
    position: relative;
  }
  .section4_img_box div img {
    width: 100%;
  }
  .section4_img_box div .chat_icon {
    position: absolute;
    width: 25%;
    height: 0;
    padding-top: 20.8333333333%;
    background: url(../img/mobile/bell.png) no-repeat;
    background-size: 100%;
    top: -9%;
    right: -50px;
  }
  .section5 {
    padding: 80px 20px;
    background-color: #fff;
  }
  .section5_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .section5 h3 {
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    line-height: 140%;
  }
  .section5_wrap > div {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .section5_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .section5_item:nth-of-type(2) {
    align-self: flex-start;
  }
  .section5_item img {
    width: 70px;
  }
  .section5_item img.active {
    animation-name: chat;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    animation-delay: 0.5s;
  }
  .section5_item img.stop {
    opacity: 0;
    transform: translate3d(0, 0px, 100px) scale(0.6);
  }
  .section5_item > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .section5_item > div .active {
    animation-name: spanUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
  }
  .section5_item > div h4 {
    font-weight: 700;
    font-size: 22px;
    animation-delay: 0.7s;
  }
  .section5_item > div p {
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: #414D5C;
    animation-delay: 0.9s;
  }
  .section6 {
    overflow-y: hidden;
    padding: 80px 20px;
    background-color: #F8F9FB;
  }
  .section6_wrap {
    width: 100%;
    margin: 0 auto;
  }
  .section6 h3 {
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    line-height: 140%;
  }
  .section6_wrap > p {
    text-align: left;
    font-weight: 400;
    font-size: 17px;
    color: #414D5C;
  }
  .section6_wrap > h3 {
    margin: 4px 0 60px;
  }
  .section6_wrap > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 50px;
  }
  .section6_item {
    width: 100%;
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 4px 12px 30px 6px rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    animation-delay: 0.5s;
  }
  .section6_item:nth-of-type(2) {
    animation-delay: 1s;
  }
  .section6_item > h4 {
    font-weight: 700;
    font-size: 17px;
  }
  .section6_item > div {
    display: flex;
    gap: 8px;
    margin: 20px 0 30px;
    font-weight: 600;
    font-size: 36px;
  }
  .section6_item > div span {
    font-weight: 500;
    font-size: 13px;
    color: #5F6B7A;
  }
  .section6_item > p {
    font-weight: 400;
    font-size: 17px;
    line-height: 140%;
    color: #414D5C;
  }
  .section6_item > a {
    margin-top: 40px;
    background: #FFFFFF;
    border: 2px solid #32D583;
    border-radius: 4px;
    height: 46px;
    font-weight: 700;
    font-size: 15px;
    color: #32D583;
  }
  .section6_item > a:hover {
    background-color: #32D583;
    color: #fff;
  }
  .section7 {
    background-color: #32D583;
    padding: 80px 20px;
  }
  .section7 > div {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
  }
  .section7 > div h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 140%;
    color: #fff;
  }
  .section7 > div div {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .section7 > div div .pc_only {
    display: none;
  }
  .section7 > div div img {
    width: 240px;
  }
  .section7 > div div button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 19.5px;
    height: 46px;
    background: #FFFFFF;
    border-radius: 23px;
    font-weight: 600;
    font-size: 15px;
  }
  .section7 > div div button img {
    width: 16px;
  }
}
.pc-hidden {
  display: none;
}

.mobile-hidden {
  display: block;
}

.mobile-br {
  display: none;
}

@media screen and (max-width: 1260px) {
  .pc-hidden {
    display: block;
  }
  .mobile-hidden {
    display: none;
  }
}
.header-popup {
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #192534;
  gap: 25px;
  transition: all ease 0.3s;
}
.header-popup * {
  color: #fff;
}

@keyframes headerTop {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
}
@keyframes headerbot {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    height: 4.375rem;
  }
}
@keyframes headerbotMobile {
  0% {
    opacity: 0;
    transform: translateY(-100%);
    height: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    height: 130px;
  }
}
.on .header-popup {
  animation: headerTop 0.5s both;
}

.off .header-popup {
  animation: headerbot 0.5s both;
}
@media screen and (max-width: 1260px) {
  .off .header-popup {
    animation: headerbotMobile 0.5s both;
  }
}

.header-popup .header-popup-text {
  font-size: 20px;
  font-weight: 600;
  color: #32D583;
}

.header-popup .header-popup-btn-box {
  display: flex;
  gap: 15px;
}

.header-popup a {
  color: #fff;
  border: 2px solid #fff;
  padding: 0 25px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  gap: 3px;
}

@media screen and (max-width: 1259px) {
  .header-popup {
    background-color: #192534;
    height: 130px;
    flex-direction: column;
    text-align: center;
    gap: 11px;
  }
  .mobile-br {
    display: block;
  }
  .header-popup-text {
    color: #0f1b2a;
    font-size: 18px;
    line-height: 1.3;
  }
  .header-popup a {
    border-color: #fff;
    color: #fff;
    font-size: 16px;
    /* font-weight: 600; */
    height: 36px;
    padding: 0 15px;
  }
  .header.hide {
    top: -130px;
  }
}