@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------------
    Explain : 모비아이 홈페이지 브랜드메시지
    File : common.scss
    Date : 2025.09.22
    Updated : 리뉴얼
/*------------------------------------------------------------------------------------------------------------*/
@font-face {
  font-family: "Pretendard";
  src: local('str-replace("Pretendard", " ", "")'), local("Pretendard"),
    local('str-replace("Pretendard", " ", "-")'),
    url("../fonts/Pretendard-Regular.woff2") format("woff2"),
    url("../fonts/Pretendard-Regular.woff") format("woff");
  font-style: "Regular";
  font-weight: 400;
}
@font-face {
  font-family: "Pretendard";
  src: local('str-replace("Pretendard", " ", "")'), local("Pretendard"),
    local('str-replace("Pretendard", " ", "-")'),
    url("../fonts/Pretendard-Medium.woff2") format("woff2"),
    url("../fonts/Pretendard-Medium.woff") format("woff");
  font-style: "Medium";
  font-weight: 500;
}
@font-face {
  font-family: "Pretendard";
  src: local('str-replace("Pretendard", " ", "")'), local("Pretendard"),
    local('str-replace("Pretendard", " ", "-")'),
    url("../fonts/Pretendard-SemiBold.woff2") format("woff2"),
    url("../fonts/Pretendard-SemiBold.woff") format("woff");
  font-style: "SemiBold";
  font-weight: 600;
}
@font-face {
  font-family: "Pretendard";
  src: local('str-replace("Pretendard", " ", "")'), local("Pretendard"),
    local('str-replace("Pretendard", " ", "-")'),
    url("../fonts/Pretendard-Bold.woff2") format("woff2"),
    url("../fonts/Pretendard-Bold.woff") format("woff");
  font-style: "Bold";
  font-weight: 700;
}
@font-face {
  font-family: "Pretendard";
  src: local('str-replace("Pretendard", " ", "")'), local("Pretendard"),
    local('str-replace("Pretendard", " ", "-")'),
    url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"),
    url("../fonts/Pretendard-ExtraBold.woff") format("woff");
  font-style: "ExtraBold";
  font-weight: 800;
}
@font-face {
  font-family: "Pretendard";
  src: local('str-replace("Pretendard", " ", "")'), local("Pretendard"),
    local('str-replace("Pretendard", " ", "-")'),
    url("../fonts/Pretendard-Black.woff2") format("woff2"),
    url("../fonts/Pretendard-Black.woff") format("woff");
  font-style: "Black";
  font-weight: 900;
}
/* common */
/* send */
/* brand */
/* talkpoint */
/* iapps */
/* ireview */
/* layout */
.wrap .contents {
  position: relative;
  width: 100%;
  padding-top: 8rem;
  overflow: hidden;
}
.wrap .contents section {
  position: relative;
  width: 100%;
}
.wrap .contents section .inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.wrap .contents section:not(.main) .inner {
  max-width: 1320px;
}
.wrap .contents section.contact {
  margin: 10rem auto;
  background: #ffffff;
}
.wrap .contents section.contact .inner {
  padding: 10rem 0 6.4rem;
  border-radius: 3rem;
  background: url("/inc/img/common/img_contact_bg.png") no-repeat center;
  background-size: cover;
  text-align: center;
  -webkit-transition: background-size 3s ease;
  transition: background-size 3s ease;
  background-size: 100%;
}
.wrap .contents section.contact .inner h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #ffffff;
  line-height: 4.7rem;
}
.wrap .contents section.contact .inner .btn_box {
  margin-top: 8.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.wrap .contents section.contact .inner .btn_box button {
  position: relative;
  display: block;
  width: 21rem;
  height: 7.8rem;
  border-radius: 4rem;
  line-height: 7.8rem;
  -webkit-animation: cubic-bezier(0.4, 0, 0.2, 1) both;
  animation: cubic-bezier(0.4, 0, 0.2, 1) both;
  overflow: hidden;
  background: transparent;
  border: 1px solid #ffffff;
}
.wrap .contents section.contact .inner .btn_box button p {
  position: relative;
  z-index: 1;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  text-align: center;
  -webkit-transform: all 0.3s ease-in-out;
  transform: all 0.3s ease-in-out;
  color: #ffffff;
}
.wrap .contents section.contact .inner .btn_box button::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
  background: #ffffff;
}
.wrap .contents section.contact .inner .btn_box button:hover::after {
  border-radius: 4rem;
  width: 100%;
}
.wrap .contents section.contact .inner .btn_box button:hover p {
  color: #000000;
}
.wrap .contents section.contact.on .inner {
  background-size: 130%;
}
.wrap .contents section.main {
  height: calc(100vh - 8rem);
}
.wrap .contents section.main .swiper {
  width: 100%;
  height: 100%;
}
.wrap .contents section.main .swiper.white .swiper_custom .pagination div {
  color: #ffffff;
}
.wrap .contents section.main .swiper.white .swiper_custom .custom_btn button {
  -webkit-filter: brightness(1) invert(1);
  filter: brightness(1) invert(1);
}
.wrap .contents section.main .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
  padding: 0 150px;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide .inner .txt_box {
  padding-top: 14rem;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide
  .inner
  .txt_box::before {
  content: "";
  display: inline-block;
  width: 6rem;
  height: 1px;
  background: #000000;
  margin-bottom: 3rem;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide
  .inner
  .txt_box
  .company {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 4rem;
  color: #000000;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide .inner .txt_box h2 {
  display: block;
  margin-top: 1.9rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 800;
  font-size: 7rem;
  color: #000000;
  line-height: 8.2rem;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide
  .inner
  .txt_box
  .desc {
  margin-top: 2rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  color: #000000;
  line-height: 5.3rem;
  word-break: keep-all;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide
  .inner
  .txt_box
  .more_btn {
  margin-top: 6rem;
  position: relative;
  display: block;
  width: 21rem;
  height: 7.8rem;
  border-radius: 4rem;
  border: 1px solid #000000;
  line-height: 7.8rem;
  -webkit-animation: cubic-bezier(0.4, 0, 0.2, 1) both;
  animation: cubic-bezier(0.4, 0, 0.2, 1) both;
  overflow: hidden;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide
  .inner
  .txt_box
  .more_btn
  p {
  position: relative;
  z-index: 1;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide
  .inner
  .txt_box
  .more_btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 100%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide
  .inner
  .txt_box
  .more_btn:hover::after {
  width: 100%;
  background: #000000;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide
  .inner
  .txt_box
  .more_btn:hover
  p {
  color: #ffffff;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide.isend {
  background: #f4f8ff;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide.isend .inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.isend
  .inner
  .txt_box
  .desc {
  max-width: 71.5rem;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.isend
  .inner
  .img_box {
  position: relative;
  padding-top: 12.5rem;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.isend
  .inner
  .img_box
  .object {
  position: absolute;
  top: 50%;
  right: 8.8rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 74.8rem;
  height: 70.6rem;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.isend
  .inner
  .img_box
  .object
  .object01 {
  position: absolute;
  top: 0;
  left: 0;
  background: url("/inc/img/isend/img_main_object_01.png") no-repeat center;
  background-size: 100%;
  width: 20.1rem;
  height: 20.1rem;
  -webkit-transform: translate(-60px, -60px);
  transform: translate(-60px, -60px);
  opacity: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.isend
  .inner
  .img_box
  .object
  .object02 {
  position: absolute;
  bottom: -3rem;
  left: 13rem;
  background: url("/inc/img/isend/img_main_object_02.png") no-repeat center;
  background-size: 100%;
  width: 19.5rem;
  height: 19.5rem;
  -webkit-transform: translate(-60px, 60px);
  transform: translate(-60px, 60px);
  opacity: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.isend
  .inner
  .img_box
  .object
  .object03 {
  position: absolute;
  right: 0;
  bottom: 10.8rem;
  background: url("/inc/img/isend/img_main_object_03.png") no-repeat center;
  background-size: 100%;
  width: 18.1rem;
  height: 18.1rem;
  -webkit-transform: translate(60px, 60px);
  transform: translate(60px, 60px);
  opacity: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.isend
  .inner
  .img_box
  .phone {
  width: 74.8rem;
  height: 70.6rem;
  -o-object-fit: contain;
  object-fit: contain;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.isend
  .inner.on
  .img_box
  .object
  .object01 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-animation: 3s mainani infinite linear;
  animation: 3s mainani infinite linear;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.isend
  .inner.on
  .img_box
  .object
  .object02 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-animation: 3s mainani infinite linear;
  animation: 3s mainani infinite linear;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.isend
  .inner.on
  .img_box
  .object
  .object03 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-animation: 3s mainani_reverse infinite linear;
  animation: 3s mainani_reverse infinite linear;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide.point {
  background: #fffff4;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide.point .inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.point
  .inner
  .img_box {
  position: absolute;
  top: 0;
  right: 0;
  width: 103.6rem;
  height: 100%;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.point
  .inner
  .img_box
  .phone {
  position: absolute;
  width: 100%;
  height: 100%;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.point
  .inner
  .img_box
  .phone
  .phone01 {
  background: url("/inc/img/point/img_main_phone_01.png") no-repeat center;
  background-size: 100%;
  width: 54rem;
  aspect-ratio: 562/466;
  position: absolute;
  top: 0;
  right: 25rem;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.point
  .inner
  .img_box
  .phone
  .phone02 {
  background: url("/inc/img/point/img_main_phone_02.png") no-repeat center;
  background-size: 100%;
  width: 52rem;
  aspect-ratio: 565/498;
  position: absolute;
  right: 48rem;
  bottom: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.point
  .inner
  .img_box
  .phone
  .phone03 {
  background: url("/inc/img/point/img_main_phone_03.png") no-repeat center;
  background-size: 100%;
  width: 54rem;
  aspect-ratio: 594/699;
  position: absolute;
  right: 0rem;
  bottom: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.point
  .inner
  .img_box
  .object {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.point
  .inner
  .img_box
  .object
  .object01 {
  position: absolute;
  top: 6rem;
  left: 17rem;
  background: url("/inc/img/point/img_main_object.png") no-repeat center;
  background-size: 100%;
  width: 21rem;
  height: 21rem;
  -webkit-transform: translate(0, 60px);
  transform: translate(0, 60px);
  opacity: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.point
  .inner
  .img_box
  .object
  .object02 {
  position: absolute;
  top: 15rem;
  right: 19rem;
  background: url("/inc/img/point/img_main_object.png") no-repeat center;
  background-size: 100%;
  width: 18.1rem;
  height: 18.1rem;
  -webkit-transform: translate(0, -60px);
  transform: translate(0, -60px);
  opacity: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.point
  .inner
  .img_box
  .object
  .object03 {
  position: absolute;
  bottom: 32rem;
  left: 11rem;
  background: url("/inc/img/point/img_main_object.png") no-repeat center;
  background-size: 100%;
  width: 18.1rem;
  height: 18.1rem;
  -webkit-transform: translate(-60px, -60px);
  transform: translate(-60px, -60px);
  opacity: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.point
  .inner.on
  .img_box
  .object
  .object01 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-animation: 3s mainani infinite linear;
  animation: 3s mainani infinite linear;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.point
  .inner.on
  .img_box
  .object
  .object02 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-animation: 3s mainani infinite linear;
  animation: 3s mainani infinite linear;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.point
  .inner.on
  .img_box
  .object
  .object03 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-animation: 3s mainani_reverse infinite linear;
  animation: 3s mainani_reverse infinite linear;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide.brand {
  background: #fffff4;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide.brand .inner {
  width: 100%;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.brand
  .inner
  .img_box {
  position: absolute;
  top: 0;
  right: 0;
  width: 92.4rem;
  height: 100%;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.brand
  .inner
  .img_box
  .phone {
  position: absolute;
  width: 100%;
  height: 100%;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.brand
  .inner
  .img_box
  .phone
  .top {
  background: url("/inc/img/brand/img_main_phone_top.png") no-repeat center;
  background-size: 100%;
  width: 56rem;
  aspect-ratio: 560/570;
  position: absolute;
  top: 0;
  right: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.brand
  .inner
  .img_box
  .phone
  .bottom {
  background: url("/inc/img/brand/img_main_phone_bottom.png") no-repeat center;
  background-size: 100%;
  width: 60rem;
  aspect-ratio: 672/587;
  position: absolute;
  bottom: 0;
  left: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.brand
  .inner
  .img_box
  .object {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.brand
  .inner
  .img_box
  .object
  .object01 {
  position: absolute;
  top: 0;
  left: 20.6rem;
  background: url("/inc/img/brand/img_main_object_01.png") no-repeat center;
  background-size: 100%;
  width: 37.4rem;
  height: 22.1rem;
  -webkit-transform: translate(-60px, -60px);
  transform: translate(-60px, -60px);
  opacity: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.brand
  .inner
  .img_box
  .object
  .object02 {
  position: absolute;
  right: 30rem;
  bottom: 17.5rem;
  background: url("/inc/img/brand/img_main_object_02.png") no-repeat center;
  background-size: 100%;
  width: 16rem;
  height: 16rem;
  -webkit-transform: translate(0, 60px);
  transform: translate(0, 60px);
  opacity: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.brand
  .inner
  .img_box
  .object
  .object03 {
  position: absolute;
  right: 30rem;
  bottom: 5rem;
  background: url("/inc/img/brand/img_main_object_03.png") no-repeat center;
  background-size: 100%;
  width: 19.4rem;
  height: 14.2rem;
  -webkit-transform: translate(60px, 60px);
  transform: translate(60px, 60px);
  opacity: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.brand
  .inner.on
  .img_box
  .object
  .object01 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-animation: 3s mainani infinite linear;
  animation: 3s mainani infinite linear;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.brand
  .inner.on
  .img_box
  .object
  .object02 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.brand
  .inner.on
  .img_box
  .object
  .object03 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-animation: 3s mainani infinite linear;
  animation: 3s mainani infinite linear;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide.iapps {
  background: #f4f8ff;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide.iapps .inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps
  .inner
  .txt_box {
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  padding-top: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps
  .inner
  .txt_box
  h2 {
  margin-top: 0.5rem;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps
  .inner
  .txt_box
  .desc {
  margin-top: 3rem;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps
  .inner
  .img_box {
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  position: relative;
  padding-top: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps
  .inner
  .img_box
  .object {
  width: 72rem;
  height: 48.2rem;
  background: url("/inc/img/iapps/img_iapps_main_object.png") no-repeat center;
  background-size: 100%;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps
  .inner.on
  .txt_box {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps
  .inner.on
  .img_box {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide.iapps.white {
  background: url("/inc/img/iapps/img_iapps_main_bg.png") no-repeat center;
  background-size: cover;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps.white
  .inner
  .txt_box::before {
  background: #ffffff;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps.white
  .inner
  .txt_box
  p {
  color: #ffffff;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps.white
  .inner
  .txt_box
  h2 {
  color: #ffffff;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps.white
  .inner
  .txt_box
  .more_btn {
  border: 1px solid #ffffff;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps.white
  .inner
  .scroll
  p {
  color: #ffffff;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.iapps.white
  .inner
  .scroll
  .arrow_box
  .arrow {
  border-color: #ffffff;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide.ireview {
  background: #f4f8ff;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide.ireview .inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview
  .inner
  .txt_box {
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  padding-top: 0;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview
  .inner
  .txt_box
  h2 {
  margin-top: 0.5rem;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview
  .inner
  .txt_box
  .desc {
  margin-top: 3rem;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview
  .inner
  .img_box {
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
  position: relative;
  padding-top: 0;
  width: 60%;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview
  .inner
  .img_box
  .object {
  width: 100%;
  aspect-ratio: 1077/585;
  background: url("/inc/img/ireview/img_ireview_main_object.png") no-repeat
    center;
  background-size: 100%;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview
  .inner.on
  .txt_box {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview
  .inner.on
  .img_box {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.wrap .contents section.main .swiper-wrapper .swiper-slide.ireview.white {
  background: url("/inc/img/iapps/img_iapps_main_bg.png") no-repeat center;
  background-size: cover;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview.white
  .inner
  .txt_box::before {
  background: #ffffff;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview.white
  .inner
  .txt_box
  p {
  color: #ffffff;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview.white
  .inner
  .txt_box
  h2 {
  color: #ffffff;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview.white
  .inner
  .txt_box
  .more_btn {
  border: 1px solid #ffffff;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview.white
  .inner
  .scroll
  p {
  color: #ffffff;
}
.wrap
  .contents
  section.main
  .swiper-wrapper
  .swiper-slide.ireview.white
  .inner
  .scroll
  .arrow_box
  .arrow {
  border-color: #ffffff;
}
.wrap .contents section.main .swiper_custom {
  position: absolute;
  bottom: 5.5rem;
  left: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 2rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  z-index: 1;
}
.wrap .contents section.main .swiper_custom .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 2rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.wrap .contents section.main .swiper_custom .pagination .num {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  text-align: center;
  color: #000000;
}
.wrap .contents section.main .swiper_custom .pagination .bar {
  position: relative;
  margin: 0;
  width: 13.5rem;
  height: 3px;
  background: #dddddd;
  opacity: 1;
  overflow: hidden;
}
.wrap .contents section.main .swiper_custom .pagination .bar span {
  background: #3f90ef;
}
.wrap .contents section.main .swiper_custom .custom_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.wrap .contents section.main .swiper_custom .custom_btn button {
  width: 2.6rem;
  height: 2.6rem;
}
.wrap .contents section.main .swiper_custom .custom_btn button.prev_btn {
  background: url("/inc/img/common/ico_arrow_left.png") no-repeat center;
  background-size: 100%;
}
.wrap .contents section.main .swiper_custom .custom_btn button.next_btn {
  background: url("/inc/img/common/ico_arrow_right.png") no-repeat center;
  background-size: 100%;
}
.wrap .contents section.main .scroll {
  position: absolute;
  right: -2rem;
  bottom: 15.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: none;
  height: 8rem;
  z-index: 1;
}
.wrap .contents section.main .scroll p {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #000000;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  letter-spacing: 0.56px;
}
.wrap .contents section.main .scroll .arrow_box .arrow {
  display: block;
  width: 13px;
  height: 13px;
  border: 2px solid #000000;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0 auto;
  margin-bottom: -4px;
  -webkit-animation: scroll-arrow infinite 3s forwards;
  animation: scroll-arrow infinite 3s forwards;
}
.wrap .contents section.main .scroll .arrow_box .arrow:nth-of-type(1) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.wrap .contents section.main .scroll .arrow_box .arrow:nth-of-type(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.wrap .contents section.main .scroll .arrow_box .arrow:nth-of-type(3) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.wrap .floating {
  position: fixed;
  bottom: 4rem;
  right: 5rem;
  z-index: 99;
}
.wrap .floating a {
  display: block;
  background: url("/inc/img/common/ico_contact.png") no-repeat center;
  background-size: 4.6rem 4.6rem;
  width: 7.6rem;
  height: 7.6rem;
  border-radius: 3rem;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
  font-size: 0;
  z-index: 1;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  background-color: #1e5ccc;
}
.wrap .floating a::before {
  opacity: 1;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "문의하기";
  width: 17.4rem;
  height: 7.6rem;
  border-radius: 3rem;
  background: #ffffff;
  border: 1px solid #1e5ccc;
  z-index: -1;
  max-width: 17.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0 2rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #000000;
}

.mo_br {
  display: none;
}

@media screen and (min-width: 1401px) and (max-width: 1800px) {
  :root {
    font-size: 52.5%;
  }
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide {
    padding: 0 8rem;
  }
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide.brand {
    padding-right: 8rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.ireview
    .inner
    .txt_box
    .desc
    .mo_br {
    display: block;
  }
  .wrap .contents section.main .swiper .swiper_custom {
    left: 8rem;
  }
  .wrap .contents section:not(.main) .inner {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  :root {
    font-size: 52.5%;
  }
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide {
    padding: 0 2rem 0 8rem;
  }
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide.brand {
    padding-right: 2rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.isend
    .inner
    .txt_box
    .desc {
    max-width: 50rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.iapps
    .inner
    .txt_box
    .desc {
    max-width: 35rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.ireview
    .inner
    .txt_box
    .desc
    .mo_br {
    display: block;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    h2 {
    font-size: 6rem;
    line-height: 7.2rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    .desc {
    font-size: 3.4rem;
    line-height: 4.3rem;
  }
  .wrap .contents section.main .swiper .swiper_custom {
    left: 8rem;
  }
  .wrap .contents section:not(.main) .inner {
    max-width: 1100px;
  }
  .wrap footer .inner {
    max-width: 100%;
    padding: 3rem 6rem;
  }
  .wrap footer .inner .familysite {
    right: 6rem;
  }
}
@media screen and (min-width: 961px) and (max-width: 1200px) {
  :root {
    font-size: 47.5%;
  }
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide {
    padding: 0 2rem 0 4rem;
  }
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide.brand {
    padding-right: 2rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .img_box {
    max-width: 90rem;
    width: 100%;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.point
    .inner
    .img_box {
    max-width: 90rem;
    width: 100%;
    right: -8rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.point
    .inner
    .img_box
    .object {
    right: 8rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.isend
    .inner
    .txt_box
    .desc {
    max-width: 50rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.isend
    .inner
    .img_box
    .object {
    -webkit-transform: scale(0.9) translateY(-50%) !important;
    transform: scale(0.9) translateY(-50%) !important;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.iapps
    .inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.iapps
    .inner
    .txt_box {
    padding-top: 0;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.iapps
    .inner
    .txt_box
    .desc {
    max-width: 35rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.iapps
    .inner
    .img_box
    .object {
    width: 60rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.ireview
    .inner
    .txt_box
    .desc
    .mo_br {
    display: block;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    h2 {
    font-size: 6rem;
    line-height: 7.2rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    .desc {
    font-size: 3.4rem;
    line-height: 4.3rem;
  }
  .wrap .contents section.main .swiper .swiper_custom {
    left: 4rem;
  }
  .wrap .contents section:not(.main) .inner {
    max-width: 900px;
  }
  .wrap footer .inner {
    max-width: 100%;
    padding: 3rem 6rem;
  }
  .wrap footer .inner .familysite {
    right: 6rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  :root {
    font-size: 47.5%;
  }
  .wrap header .inner {
    padding: 0 1.5rem;
  }
  .wrap footer .inner {
    max-width: 100%;
    padding: 4rem 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .wrap footer .inner .footer_logo {
    width: 12rem;
    aspect-ratio: 152/67;
  }
  .wrap footer .inner .footer_info {
    width: 100%;
  }
  .wrap footer .inner .familysite {
    top: 4rem;
    right: 4rem;
  }
  .wrap .contents {
    padding-top: 8rem;
  }
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide {
    padding: 0;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box {
    text-align: left;
    position: absolute;
    left: 4rem;
    padding-top: 0;
    width: 40%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    .company {
    font-size: 2.4rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    h2 {
    margin: 1rem auto 0;
    font-size: 3.6rem;
    line-height: 4.8rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    .desc {
    font-size: 2rem;
    line-height: 3rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    .more_btn {
    width: 16rem;
    height: 6rem;
    border-radius: 3rem;
    line-height: 6rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    .more_btn
    p {
    font-size: 2rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.isend
    .inner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.isend
    .inner
    .img_box {
    right: 0;
    width: 60%;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.isend
    .inner
    .img_box
    .object {
    right: 0;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.isend
    .inner
    .img_box
    .object
    .object01 {
    width: 16rem;
    height: 16rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.isend
    .inner
    .img_box
    .object
    .object02 {
    width: 14rem;
    height: 14rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.isend
    .inner
    .img_box
    .object
    .object03 {
    width: 12rem;
    height: 12rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.isend
    .inner
    .img_box
    .phone {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.point
    .inner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.point
    .inner
    .img_box {
    right: 0rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.point
    .inner
    .img_box
    .object {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    right: -20rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.point
    .inner
    .img_box
    .phone
    .phone01 {
    width: 50rem;
    right: 0;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.point
    .inner
    .img_box
    .phone
    .phone02 {
    width: 40rem;
    right: 30rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.point
    .inner
    .img_box
    .phone
    .phone03 {
    width: 40rem;
  }
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide.brand {
    padding: 0;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box {
    width: 65%;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box
    .phone
    .top {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transform-origin: top center;
    transform-origin: top center;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box
    .phone
    .bottom {
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box
    .object
    .object01 {
    width: 20rem;
    left: 0;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box
    .object
    .object02 {
    width: 16rem;
    right: 4rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box
    .object
    .object03 {
    right: auto;
    left: 12rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.iapps
    .inner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.iapps
    .inner
    .img_box {
    right: 0;
    width: 55%;
    padding: 0;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.iapps
    .inner
    .img_box
    .object {
    width: 100%;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.ireview
    .inner {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.ireview
    .inner
    .img_box {
    right: 0;
    width: 55%;
    padding: 0;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.ireview
    .inner
    .img_box
    .object {
    width: 100%;
  }
  .wrap .contents section.main .swiper .swiper_custom {
    left: 4rem;
  }
  .wrap .contents section.main .scroll {
    right: 1.5rem;
  }
  .wrap .contents section.main .scroll p {
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #000000;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    letter-spacing: 0.56px;
  }
  .wrap .contents section.main .scroll .arrow_box {
    margin-top: 3rem;
  }
  .wrap .contents section.main .scroll .arrow_box .arrow {
    display: block;
    width: 13px;
    height: 13px;
    border: 2px solid #000000;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: 0 auto;
    margin-bottom: -4px;
    -webkit-animation: scroll-arrow infinite 3s forwards;
    animation: scroll-arrow infinite 3s forwards;
  }
  .wrap .contents section.main .scroll .arrow_box .arrow:nth-of-type(1) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  .wrap .contents section.main .scroll .arrow_box .arrow:nth-of-type(2) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  .wrap .contents section.main .scroll .arrow_box .arrow:nth-of-type(3) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }
  .wrap .contents section:not(.main) .inner {
    max-width: 100%;
  }
  .wrap .contents section.contact {
    margin: 0 auto;
    background: #ffffff;
    padding: 5rem 4.5rem;
  }
  .wrap .contents section.contact .inner {
    background-size: cover;
  }
  .wrap .contents section.contact.on .inner {
    background-size: cover;
  }
  .wrap .floating {
    bottom: 3rem;
    right: 4rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    font-size: 82.5%;
  }
  .mo_br {
    display: block;
  }
  .wrap header {
    height: 5rem;
  }
  .wrap header .inner {
    padding: 0 1.5rem;
  }
  .wrap header .inner .logo {
    height: 5rem;
  }
  .wrap header .inner .logo a {
    width: 7.2rem;
    height: 3.2rem;
  }
  .wrap header .inner .gnb {
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    width: 100%;
    height: 100dvh;
    z-index: 100;
    padding-top: 5.2rem;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    margin-left: 0;
  }
  .wrap header .inner .gnb.on {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .wrap header .inner .gnb.on + .header_link {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .wrap header .inner .gnb > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem;
  }
  .wrap header .inner .gnb > ul li {
    width: 100%;
  }
  .wrap header .inner .gnb > ul li a {
    text-align: left;
    color: #333;
    font-family: "Pretendard", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
  }
  .wrap header .inner .gnb > ul li.contact {
    display: block;
  }
  .wrap header .inner .gnb > ul li.has-sub .arrow {
    display: block;
    background: url("/inc/img/common/ico_arrow_down.png") no-repeat center;
    background-size: 100%;
    width: 14px;
    height: 12px;
    -webkit-filter: grayscale(100%) brightness(0);
    filter: grayscale(100%) brightness(0);
    position: absolute;
    top: 0.4rem;
    right: 0;
  }
  .wrap header .inner .gnb > ul li.has-sub .sub {
    position: relative;
    left: unset;
    margin-top: 0;
    border-radius: 0;
    background: none;
    -webkit-transform: none;
    transform: none;
    border: none !important;
  }
  .wrap header .inner .gnb > ul li.has-sub .sub li {
    width: 100%;
    padding-top: 20px;
  }
  .wrap header .inner .gnb > ul li.has-sub .sub li:last-of-type {
    padding-bottom: 0;
  }
  .wrap header .inner .gnb > ul li.has-sub .sub li a {
    padding: 0;
    text-align: left;
    font-size: 1.4rem;
    color: #555;
    height: auto;
    line-height: 1.4rem;
  }
  .wrap header .inner .gnb > ul li.has-sub .sub li.on a {
    color: #3f90ef;
  }
  .wrap header .inner .gnb > ul li.has-sub:hover a {
    color: #333 !important;
  }
  .wrap header .inner .gnb > ul li.has-sub:hover .sub {
    max-height: 0;
  }
  .wrap header .inner .gnb > ul li.has-sub.on:hover > a {
    color: #3f90ef !important;
  }
  .wrap header .inner .gnb > ul li.has-sub.on .arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .wrap header .inner .gnb > ul li.has-sub.on .sub {
    max-height: 200px;
  }
  .wrap header .inner > .header_link {
    background: #f9f9f9;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 1.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: absolute;
    width: 100%;
    left: 0;
    top: 4.9rem;
    z-index: 100;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  }
  .wrap header .inner > .header_link a {
    width: 11.8rem;
    height: 4rem;
    border-radius: 2rem;
    line-height: 4.1rem;
    text-align: center;
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
  }
  .wrap header .inner > .header_link a:last-child::before {
    content: none;
  }
  .wrap header .inner > .header_link a.login_btn {
    color: #000000;
    background: #ffffff;
    border: 1px solid #000000;
  }
  .wrap header .inner > .header_link a.join_btn {
    color: #ffffff;
    background: #000000;
  }
  .wrap header .inner .mo_nav_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .wrap header .inner .mo_nav_btn.on {
    display: block;
  }
  .wrap footer .inner {
    max-width: 100%;
    padding: 2rem 1.5rem 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .wrap footer .inner .footer_logo {
    width: 8rem;
    height: 3.5rem;
  }
  .wrap footer .inner .footer_info {
    width: 100%;
  }
  .wrap footer .inner .footer_info .info_link {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 3.5rem;
  }
  .wrap footer .inner .footer_info .info_link li {
    font-size: 1.2rem;
  }
  .wrap footer .inner .footer_info .info_link li a {
    font-size: 1.2rem;
  }
  .wrap footer .inner .footer_info .info_details {
    margin-top: 2rem;
  }
  .wrap footer .inner .footer_info .info_details > p {
    font-size: 1.2rem;
  }
  .wrap footer .inner .footer_info .info_details ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0 3rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-bottom: 1rem;
  }
  .wrap footer .inner .footer_info .info_details ul li {
    font-size: 1.2rem;
  }
  .wrap footer .inner .footer_info .info_details ul li span {
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
  }
  .wrap footer .inner .footer_info .info_details ul li a {
    font-size: 1.2rem;
  }
  .wrap footer .inner .footer_info .copyright {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  .wrap footer .inner .familysite {
    display: none;
  }
  .wrap .contents {
    padding-top: 5rem;
  }
  .wrap .contents section.main {
    height: 100%;
  }
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide {
    padding: 0;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box {
    padding-top: 4.6rem;
    text-align: center;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box::before {
    width: 4rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    .company {
    font-size: 2.4rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    h2 {
    margin: 1rem auto 0;
    font-size: 3.6rem;
    line-height: 4.8rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    .desc {
    margin: 2.6rem auto 0;
    font-size: 2rem;
    line-height: 3rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    .more_btn {
    margin: 5rem auto 0;
    width: 16rem;
    height: 6rem;
    border-radius: 3rem;
    line-height: 6rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide
    .inner
    .txt_box
    .more_btn
    p {
    font-size: 2rem;
  }
  .wrap .contents section.main .swiper .swiper_custom {
    display: none;
  }
  .wrap .contents section.main .scroll {
    margin-top: 7.5rem;
    position: relative;
    bottom: auto;
    right: auto;
    height: auto;
  }
  .wrap .contents section.main .scroll p {
    font-family: "Pretendard", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #000000;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    letter-spacing: 0.56px;
  }
  .wrap .contents section.main .scroll .arrow_box {
    margin-top: 3rem;
  }
  .wrap .contents section.main .scroll .arrow_box .arrow {
    display: block;
    width: 13px;
    height: 13px;
    border: 2px solid #000000;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: 0 auto;
    margin-bottom: -4px;
    -webkit-animation: scroll-arrow infinite 3s forwards;
    animation: scroll-arrow infinite 3s forwards;
  }
  .wrap .contents section.main .scroll .arrow_box .arrow:nth-of-type(1) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  .wrap .contents section.main .scroll .arrow_box .arrow:nth-of-type(2) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  .wrap .contents section.main .scroll .arrow_box .arrow:nth-of-type(3) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }
  .wrap .contents section:not(.main) .inner {
    max-width: 100%;
  }
  .wrap .contents section.contact {
    margin: 0 auto;
    background: #ffffff;
    padding: 2rem 1.5rem;
  }
  .wrap .contents section.contact .inner {
    padding: 5rem 1.8rem;
    background-size: cover;
  }
  .wrap .contents section.contact .inner h2 {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
  .wrap .contents section.contact .inner .btn_box {
    margin: 3rem auto 0;
    gap: 1rem;
    max-width: 60%;
  }
  .wrap .contents section.contact .inner .btn_box button {
    width: calc(50% - 0.5rem);
    height: 5rem;
    border-radius: 2.5rem;
    line-height: 5rem;
  }
  .wrap .contents section.contact .inner .btn_box button p {
    font-size: 1.8rem;
  }
  .wrap .contents section.contact.on .inner {
    background-size: cover;
  }
  .wrap .floating {
    bottom: 3rem;
    right: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  :root {
    font-size: 62.5%;
  }
  .wrap .contents section.contact .inner .btn_box {
    max-width: 100%;
  }
}
@media screen and (max-width: 320px) {
  :root {
    font-size: 52.5%;
  }
}
.contents .sc01 {
  background: #ffffff;
}
.contents .sc01 .inner {
  padding: 12rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.contents .sc01 .inner .left h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #000000;
  line-height: 7.2rem;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.contents .sc01 .inner .left .txt_box {
  margin-top: 11rem;
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.contents .sc01 .inner .left .txt_box::before {
  content: "";
  display: inline-block;
  width: 8rem;
  height: 1px;
  background: #000000;
}
.contents .sc01 .inner .left .txt_box .desc {
  margin-top: 3rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 3.4rem;
  color: #000000;
}
.contents .sc01 .inner .right {
  position: relative;
  width: 80.3rem;
  height: 54rem;
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.contents .sc01 .inner .right .sc01Swiper {
  overflow: visible;
  margin: 0 auto;
  width: 80.3rem;
  height: 54rem;
}
.contents .sc01 .inner .right .sc01Swiper .swiper-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100%;
}
.contents .sc01 .inner .right .sc01Swiper .swiper-wrapper .swiper-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0 auto;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 0;
}
.contents .sc01 .inner .right .sc01Swiper .swiper-wrapper .swiper-slide.active {
  width: 30.4rem;
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.contents .sc01 .inner .right .sc01Swiper .swiper-wrapper .swiper-slide.prev {
  width: 26.8rem;
  -webkit-transform: translate(calc(-50% - 120px), -50%);
  transform: translate(calc(-50% - 120px), -50%);
  z-index: 4;
}
.contents .sc01 .inner .right .sc01Swiper .swiper-wrapper .swiper-slide.next {
  width: 26.8rem;
  -webkit-transform: translate(calc(-50% + 120px), -50%);
  transform: translate(calc(-50% + 120px), -50%);
  z-index: 4;
}
.contents .sc01 .inner .right .sc01Swiper .swiper-wrapper .swiper-slide.prev2 {
  width: 23.3rem;
  -webkit-transform: translate(calc(-50% - 240px), -50%);
  transform: translate(calc(-50% - 240px), -50%);
  z-index: 3;
}
.contents .sc01 .inner .right .sc01Swiper .swiper-wrapper .swiper-slide.next2 {
  width: 23.3rem;
  -webkit-transform: translate(calc(-50% + 240px), -50%);
  transform: translate(calc(-50% + 240px), -50%);
  z-index: 3;
}
.contents .sc01 .inner .right .sc01Swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 304/540;
  -o-object-fit: contain;
  object-fit: contain;
}
.contents .sc01 .inner .right .sc01Swiper .custom_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 45%;
  width: 100%;
  z-index: 5;
}
.contents .sc01 .inner .right .sc01Swiper .custom_btn button {
  width: 7rem;
  aspect-ratio: 1/1;
}
.contents .sc01 .inner .right .sc01Swiper .custom_btn button.prev_btn {
  position: absolute;
  left: 3.5rem;
  background: url("/inc/img/common/ico_arrow_left_circle.png") no-repeat center;
  background-size: 100%;
}
.contents .sc01 .inner .right .sc01Swiper .custom_btn button.prev_btn:disabled {
  background: url("/inc/img/common/ico_arrow_left_circle_off.png") no-repeat
    center;
  background-size: 100%;
}
.contents .sc01 .inner .right .sc01Swiper .custom_btn button.next_btn {
  position: absolute;
  right: 3.5rem;
  background: url("/inc/img/common/ico_arrow_right_circle.png") no-repeat center;
  background-size: 100%;
}
.contents .sc01 .inner .right .sc01Swiper .custom_btn button.next_btn:disabled {
  background: url("/inc/img/common/ico_arrow_right_circle_off.png") no-repeat
    center;
  background-size: 100%;
}
.contents .sc01.on .inner .left h2 {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.contents .sc01.on .inner .left .txt_box {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.contents .sc01.on .inner .right {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.contents .sc02 {
  background: #f5f5f5;
}
.contents .sc02 .inner {
  padding: 10rem 0 5rem;
}
.contents .sc02 .inner .txt_box {
  text-align: center;
}
.contents .sc02 .inner .txt_box::before {
  content: "";
  display: inline-block;
  width: 8rem;
  height: 1px;
  background: #000000;
  margin-bottom: 5rem;
}
.contents .sc02 .inner .txt_box h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #000000;
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.contents .sc02 .inner .txt_box .desc {
  margin-top: 2rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 5.2rem;
  color: #000000;
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.contents .sc02 .inner .txt_box .desc span {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
}
.contents .sc02 .inner .tab_box {
  margin-top: 4rem;
}
.contents .sc02 .inner .tab_box .txt {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #000000;
  text-align: center;
}
.contents .sc02 .inner .tab_box ul {
  margin-top: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.contents .sc02 .inner .tab_box ul li {
  width: 9rem;
  height: 6.4rem;
  border-radius: 3.2rem;
  border: 1px solid #dddddd;
  background: #eeeeee;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #888888;
  text-align: center;
  line-height: 6.2rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contents .sc02 .inner .tab_box ul li.active {
  background: #000000;
  border: #000000;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  color: #ffffff;
}
.contents .sc02 .inner .tab_box ul li:hover {
  -webkit-box-shadow: 0 0 1px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1px 8px rgba(0, 0, 0, 0.2);
}
.contents .sc02 .inner .tab_box .target_box {
  margin-top: 5.5rem;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
  opacity: 0;
  -webkit-transition: opacity 0.7s ease, -webkit-transform 1s ease;
  transition: opacity 0.7s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.7s ease;
  transition: transform 1s ease, opacity 0.7s ease, -webkit-transform 1s ease;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.contents .sc02 .inner .tab_box .target_box .target {
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.contents .sc02 .inner .tab_box .target_box .target.show {
  opacity: 1;
  overflow: visible;
  max-height: 1000px;
  padding: 7rem 8rem;
}
.contents .sc02 .inner .tab_box .target_box .target img {
  width: 100%;
  max-width: 61.9rem;
  aspect-ratio: 619/348;
}
.contents .sc02 .inner .tab_box .target_box .target > div p {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 2rem;
  color: #000000;
}
.contents .sc02 .inner .tab_box .target_box .target > div p span {
  margin-top: 1rem;
  display: block;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: #000000;
  word-break: keep-all;
  max-width: 45rem;
}
.contents .sc02 .inner .tab_box .target_box .target > div p + p {
  margin-top: 5.2rem;
}
.contents .sc02.on .inner .txt_box h2,
.contents .sc02.on .inner .txt_box .desc {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.contents .sc02.on .inner .target_box {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  opacity: 1;
}
.contents .sc03 {
  background: #ffffff;
}
.contents .sc03 .inner {
  padding: 10rem 0 5rem;
}
.contents .sc03 .inner .txt_box {
  text-align: center;
}
.contents .sc03 .inner .txt_box::before {
  content: "";
  display: inline-block;
  width: 8rem;
  height: 1px;
  background: #000000;
  margin-bottom: 5rem;
}
.contents .sc03 .inner .txt_box h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #000000;
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.contents .sc03 .inner .txt_box .desc {
  margin-top: 2rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 5.2rem;
  color: #000000;
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.contents .sc03 .inner .txt_box .desc span {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
}
.contents .sc03 .inner .card_box {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.contents .sc03 .inner .card_box .card01 {
  background: url("/inc/img/brand/img_sc03_card_01.png") no-repeat center;
  background-size: 100%;
  width: 42.4rem;
  aspect-ratio: 424/332;
  font-size: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
  opacity: 0;
  -webkit-transition: opacity 0.7s ease, -webkit-transform 1s ease;
  transition: opacity 0.7s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.7s ease;
  transition: transform 1s ease, opacity 0.7s ease, -webkit-transform 1s ease;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.contents .sc03 .inner .card_box .arrow {
  background: url("/inc/img/brand/img_sc03_arrow.png") no-repeat center;
  background-size: 100%;
  width: 5.1rem;
  height: 5.4rem;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
.contents .sc03 .inner .card_box .card02 {
  background: url("/inc/img/brand/img_sc03_card_02.png") no-repeat center;
  background-size: 100%;
  width: 49.8rem;
  aspect-ratio: 498/390;
  font-size: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
  opacity: 0;
  -webkit-transition: opacity 0.7s ease, -webkit-transform 1s ease;
  transition: opacity 0.7s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.7s ease;
  transition: transform 1s ease, opacity 0.7s ease, -webkit-transform 1s ease;
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.contents .sc03.on .inner .txt_box h2,
.contents .sc03.on .inner .txt_box .desc {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.contents .sc03.on .inner .card_box .card01,
.contents .sc03.on .inner .card_box .card02 {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  opacity: 1;
}
.contents .sc03.on .inner .card_box .arrow {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

@media screen and (min-width: 961px) and (max-width: 1200px) {
  .contents .sc01 .inner .left {
    width: calc(100% - 70rem);
  }
  .contents .sc01 .inner .right {
    width: 65rem;
  }
  .contents .sc01 .inner .right .sc01Swiper {
    width: 65rem;
  }
  .contents
    .sc01
    .inner
    .right
    .sc01Swiper
    .swiper-wrapper
    .swiper-slide.active {
    width: 26rem;
  }
  .contents .sc01 .inner .right .sc01Swiper .swiper-wrapper .swiper-slide.prev {
    width: 23.5rem;
    -webkit-transform: translate(calc(-50% - 120px), -50%);
    transform: translate(calc(-50% - 120px), -50%);
  }
  .contents .sc01 .inner .right .sc01Swiper .swiper-wrapper .swiper-slide.next {
    width: 23.5rem;
    -webkit-transform: translate(calc(-50% + 120px), -50%);
    transform: translate(calc(-50% + 120px), -50%);
  }
  .contents
    .sc01
    .inner
    .right
    .sc01Swiper
    .swiper-wrapper
    .swiper-slide.prev2 {
    width: 20rem;
    -webkit-transform: translate(calc(-50% - 200px), -50%);
    transform: translate(calc(-50% - 200px), -50%);
  }
  .contents
    .sc01
    .inner
    .right
    .sc01Swiper
    .swiper-wrapper
    .swiper-slide.next2 {
    width: 20rem;
    -webkit-transform: translate(calc(-50% + 200px), -50%);
    transform: translate(calc(-50% + 200px), -50%);
  }
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .wrap .contents .sc01 .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .wrap .contents .sc01 .inner .left {
    width: 100%;
    text-align: center;
  }
  .wrap .contents .sc01 .inner .left .txt_box {
    margin-top: 5rem;
  }
  .wrap .contents .sc01 .inner .right {
    width: 100%;
    height: auto;
  }
  .wrap .contents .sc01 .inner .right .sc01Swiper {
    width: 100%;
  }
  .wrap .contents .sc01 .inner .right .sc01Swiper .custom_btn button.prev_btn {
    left: 3rem;
  }
  .wrap .contents .sc01 .inner .right .sc01Swiper .custom_btn button.next_btn {
    right: 3rem;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box {
    padding: 0 3rem;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box .target {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5rem;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box .target.show {
    padding: 3rem 2rem;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box .target > div {
    text-align: center;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box .target > div p {
    max-width: 100%;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box .target > div p span {
    max-width: 100%;
  }
  .wrap .contents .sc03 .inner {
    padding: 10rem 3rem 5rem;
  }
}
@media screen and (max-width: 768px) {
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide.point,
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide.isend,
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide.iapps {
    display: none;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 5rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 5rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box
    .phone {
    position: relative;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box
    .phone
    .top {
    position: relative;
    background: url("/inc/img/brand/img_main_phone_top_m.png") no-repeat center;
    background-size: 100%;
    width: 23.1rem;
    aspect-ratio: 231/287;
    margin-left: calc(100% - 23.1rem);
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box
    .phone
    .bottom {
    position: relative;
    background: url("/inc/img/brand/img_main_phone_bottom_m.png") no-repeat
      center;
    background-size: 100%;
    width: 25rem;
    aspect-ratio: 250/281;
    margin-top: -6rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box
    .object {
    top: 0;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box
    .object
    .object01 {
    width: 14.4rem;
    height: 8.5rem;
    left: auto;
    right: 10rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box
    .object
    .object02 {
    width: 7.5rem;
    height: 7.6rem;
    bottom: 15rem;
    right: 12rem;
  }
  .wrap
    .contents
    section.main
    .swiper
    .swiper-wrapper
    .swiper-slide.brand
    .inner
    .img_box
    .object
    .object03 {
    width: 7.5rem;
    height: 5.4rem;
    bottom: 8rem;
    right: 12rem;
  }
  .wrap .contents section.main .swiper .swiper_custom {
    display: none;
  }
  .wrap .contents .sc01 .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5rem 0;
  }
  .wrap .contents .sc01 .inner .left {
    width: 100%;
    text-align: center;
  }
  .wrap .contents .sc01 .inner .left h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
  .wrap .contents .sc01 .inner .left .txt_box {
    margin-top: 3rem;
  }
  .wrap .contents .sc01 .inner .left .txt_box::before {
    width: 4rem;
  }
  .wrap .contents .sc01 .inner .left .txt_box .desc {
    margin-top: 2rem;
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  .wrap .contents .sc01 .inner .left .txt_box .desc .pc_br {
    display: none;
  }
  .wrap .contents .sc01 .inner .right {
    width: 100%;
    height: auto;
  }
  .wrap .contents .sc01 .inner .right .sc01Swiper {
    width: 100%;
    height: 30rem;
  }
  .wrap
    .contents
    .sc01
    .inner
    .right
    .sc01Swiper
    .swiper-wrapper
    .swiper-slide.active {
    width: 18.6rem;
  }
  .wrap
    .contents
    .sc01
    .inner
    .right
    .sc01Swiper
    .swiper-wrapper
    .swiper-slide.prev {
    width: 14.8rem;
    -webkit-transform: translate(calc(-50% - 50px), -50%);
    transform: translate(calc(-50% - 50px), -50%);
  }
  .wrap
    .contents
    .sc01
    .inner
    .right
    .sc01Swiper
    .swiper-wrapper
    .swiper-slide.next {
    width: 14.8rem;
    -webkit-transform: translate(calc(-50% + 50px), -50%);
    transform: translate(calc(-50% + 50px), -50%);
  }
  .wrap
    .contents
    .sc01
    .inner
    .right
    .sc01Swiper
    .swiper-wrapper
    .swiper-slide.prev2 {
    width: 13.2rem;
    -webkit-transform: translate(calc(-50% - 100px), -50%);
    transform: translate(calc(-50% - 100px), -50%);
  }
  .wrap
    .contents
    .sc01
    .inner
    .right
    .sc01Swiper
    .swiper-wrapper
    .swiper-slide.next2 {
    width: 13.2rem;
    -webkit-transform: translate(calc(-50% + 100px), -50%);
    transform: translate(calc(-50% + 100px), -50%);
  }
  .wrap .contents .sc01 .inner .right .sc01Swiper .custom_btn button {
    width: 5rem;
    height: 5rem;
  }
  .wrap .contents .sc01 .inner .right .sc01Swiper .custom_btn button.prev_btn {
    left: 1.5rem;
  }
  .wrap .contents .sc01 .inner .right .sc01Swiper .custom_btn button.next_btn {
    right: 1.5rem;
  }
  .wrap .contents .sc02 .inner {
    padding: 5rem 1.5rem;
  }
  .wrap .contents .sc02 .inner .txt_box::before {
    width: 4rem;
    margin-bottom: 3rem;
  }
  .wrap .contents .sc02 .inner .txt_box h2 {
    font-size: 2.4rem;
    line-height: 4rem;
  }
  .wrap .contents .sc02 .inner .txt_box .desc {
    margin-top: 2rem;
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  .wrap .contents .sc02 .inner .txt_box .desc span {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  .wrap .contents .sc02 .inner .tab_box {
    margin-top: 3rem;
  }
  .wrap .contents .sc02 .inner .tab_box .txt {
    font-size: 1.2rem;
  }
  .wrap .contents .sc02 .inner .tab_box ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem 1.8rem;
  }
  .wrap .contents .sc02 .inner .tab_box ul li {
    width: 9.8rem;
    height: 4rem;
    border-radius: 2rem;
    font-size: 1.6rem;
    line-height: 4rem;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box {
    margin-top: 3rem;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box .target {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5rem;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box .target.show {
    padding: 3rem 2rem;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box .target > div {
    text-align: center;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box .target > div p {
    font-size: 1.8rem;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box .target > div p span {
    margin-top: 0.5rem;
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .wrap .contents .sc02 .inner .tab_box .target_box .target > div p + p {
    margin-top: 2rem;
  }
  .wrap .contents .sc03 .inner {
    padding: 5rem 1.5rem;
  }
  .wrap .contents .sc03 .inner .txt_box::before {
    width: 4rem;
    margin-bottom: 3rem;
  }
  .wrap .contents .sc03 .inner .txt_box h2 {
    font-size: 2.4rem;
    line-height: 4rem;
  }
  .wrap .contents .sc03 .inner .txt_box .desc {
    margin-top: 2rem;
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  .wrap .contents .sc03 .inner .txt_box .desc span {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  .wrap .contents .sc03 .inner .card_box {
    margin-top: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
  .wrap .contents .sc03 .inner .card_box .card01 {
    width: calc(100% - 4rem);
  }
  .wrap .contents .sc03 .inner .card_box .arrow {
    -webkit-transform: translateX(0) rotate(90deg);
    transform: translateX(0) rotate(90deg);
  }
  .wrap .contents .sc03 .inner .card_box .card02 {
    width: 100%;
  }
}
@-webkit-keyframes scroll-arrow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll-arrow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes mainani {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes mainani {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes mainani_reverse {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes mainani_reverse {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes leftslide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes leftslide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-webkit-keyframes rightslide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}
@keyframes rightslide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}
@-webkit-keyframes imgfade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes imgfade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* modal z-index 1000 */
.modal {
  display: none;
  width: 100vw;
  min-height: 100vh;
  height: 100%;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.modal.show {
  display: block;
}
.modal .modal_dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
.modal .modal_dialog .modal_content {
  position: relative;
  max-width: 90%;
  background: #ffffff;
}
.modal .modal_dialog .modal_content.type_agree {
  width: 48rem;
  border-radius: 2rem;
  padding: 5rem 2rem 3.6rem;
}
.modal .modal_dialog .modal_content.type_agree .modal_head .tit {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #000000;
  text-align: center;
}
.modal .modal_dialog .modal_content.type_agree .modal_head .close_btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0;
  width: 1.2rem;
  height: 1.2rem;
  background: url("/inc/img/common/ico_close.png") no-repeat center;
  background-size: 100%;
}
.modal .modal_dialog .modal_content.type_agree .modal_body {
  padding: 2rem 0;
}
.modal .modal_dialog .modal_content.type_agree .modal_body .agree_txt {
  width: 100%;
  padding: 2rem;
  max-height: 38.5rem;
  background: #fafafa;
  overflow-y: auto;
}
.modal
  .modal_dialog
  .modal_content.type_agree
  .modal_body
  .agree_txt::-webkit-scrollbar {
  width: 3px;
}
.modal
  .modal_dialog
  .modal_content.type_agree
  .modal_body
  .agree_txt::-webkit-scrollbar-thumb {
  background-color: #b8b8b8;
  border-radius: 30px;
}
.modal .modal_dialog .modal_content.type_agree .modal_body .agree_txt strong {
  display: block;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #000000;
  margin-bottom: 1.2rem;
}
.modal .modal_dialog .modal_content.type_agree .modal_body .agree_txt p {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6rem;
  word-break: keep-all;
  color: #777777;
}
.modal .modal_dialog .modal_content.type_agree .modal_body .agree_txt p + p {
  margin-top: 1.2rem;
}
.modal
  .modal_dialog
  .modal_content.type_agree
  .modal_body
  .agree_txt
  p
  + strong {
  margin-top: 2rem;
}
.modal .modal_dialog .modal_content.type_agree .modal_body .agree_txt table {
  margin: 1.6rem 0;
  width: 100%;
}
.modal .modal_dialog .modal_content.type_agree .modal_body .agree_txt table th {
  border: 1px solid #e1e3e8;
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #000000;
  background: #e1e3e8;
  padding: 4px 0;
}
.modal .modal_dialog .modal_content.type_agree .modal_body .agree_txt table td {
  border: 1px solid #e1e3e8;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #000000;
  background: #ffffff;
  padding: 4px;
  text-align: center;
  vertical-align: middle;
  word-break: keep-all;
} /*# sourceMappingURL=brand.css.map */
