@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------------
    Explain : 아이앱스 홈페이지
    File : common.scss
    Date : 2025.12.16
    Updated : 1.0.0
/*------------------------------------------------------------------------------------------------------------*/
/* reset */
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  font-size: 62.5%;
  /* 1rem = 10px */
}

html {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  font-size: 1rem;
  width: 100%;
  height: 100%;
}
html::-webkit-scrollbar {
  width: 8px;
}
html::-webkit-scrollbar-thumb {
  background-color: #2f3542;
  border-radius: 10px;
}

body {
  width: 100%;
  min-height: 100dvh;
  font-size: 1rem;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Pretendard", sans-serif;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

button {
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0;
  cursor: pointer;
}

input {
  background: transparent;
  border: 0;
  outline: 0;
}
input:-moz-read-only {
  pointer-events: none;
}
input:disabled, input:read-only {
  pointer-events: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}

em {
  font-style: normal;
}

i {
  font-style: normal;
}

@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 */
/* iapps */
/* layout */
.wrap {
  position: relative;
  background: #ffffff;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.wrap header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
  z-index: 100;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.wrap header .inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 6rem;
  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 header .inner .logo {
  height: 8rem;
  z-index: 101;
  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;
}
.wrap header .inner .logo a {
  display: block;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #000000;
}
.wrap header .inner > .header_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 3rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.wrap header .inner > .header_link a {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #000000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wrap header .inner > .header_link a:last-child::before {
  content: " |";
  margin-right: 3rem;
}
.wrap header .inner > .header_link a:hover {
  color: #3f90ef;
}
.wrap header .inner .mo_nav_btn {
  display: none;
  z-index: 101;
  cursor: pointer;
}
.wrap header .inner .mo_nav_btn .line {
  width: 2.2rem;
  height: 2px;
  background: #000000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.wrap header .inner .mo_nav_btn.on {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.wrap header .inner .mo_nav_btn.on .line {
  width: 2.2rem;
}
.wrap header .inner .mo_nav_btn.on .line:nth-child(2) {
  opacity: 0;
  width: 0;
  height: 0;
}
.wrap header .inner .mo_nav_btn.on .line:nth-child(3) {
  -webkit-transform: translateY(-0.2rem) rotate(-90deg);
          transform: translateY(-0.2rem) rotate(-90deg);
}
.wrap header .inner .mo_nav {
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  width: 100%;
  height: 100dvh;
  z-index: 100;
  padding-top: 5rem;
  -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 .mo_nav.on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.wrap header .inner .mo_nav .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: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.wrap header .inner .mo_nav .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 .mo_nav .header_link a.login_btn {
  color: #000000;
  background: #ffffff;
  border: 1px solid #000000;
}
.wrap header .inner .mo_nav .header_link a.join_btn {
  color: #ffffff;
  background: #000000;
}
.wrap header .inner .mo_nav ul {
  padding: 1.2rem 0;
}
.wrap header .inner .mo_nav ul li a {
  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: 1.5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 1.2rem 1.5rem;
  width: 100%;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #000000;
}
.wrap header .inner .mo_nav ul li a::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
}
.wrap header .inner .mo_nav ul li.send a::before {
  background: url("../images/common/ico_menu_send.png") no-repeat center;
  background-size: 100%;
}
.wrap header .inner .mo_nav ul li.point a::before {
  background: url("../images/common/ico_menu_point.png") no-repeat center;
  background-size: 100%;
}
.wrap header .inner .mo_nav ul li.brand a::before {
  background: url("../images/common/ico_menu_brand.png") no-repeat center;
  background-size: 100%;
}
.wrap header .inner .mo_nav ul li.iapps a::before {
  background: url("../images/common/ico_menu_iapps.png") no-repeat center;
  background-size: 100%;
}
.wrap header .inner .mo_nav ul li.contact a::before {
  background: url("../images/common/ico_menu_contact.png") no-repeat center;
  background-size: 100%;
}
.wrap header:hover {
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
}
.wrap header:hover .inner > .header_link a {
  color: #000000;
}
.wrap header.white {
  background: transparent;
  border-bottom: transparent;
}
.wrap header.white .inner > .header_link a {
  color: #aaaaaa;
}
.wrap header.white:hover {
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
}
.wrap header.white:hover .inner > .header_link a {
  color: #000000;
}
.wrap footer {
  position: relative;
  width: 100%;
  background: #222222;
}
.wrap footer .inner {
  position: relative;
  max-width: 1320px;
  width: 100%;
  padding: 3rem 0;
  margin: 0 auto;
  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: 5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.wrap footer .inner .footer_logo {
  font-size: 0;
  background: url("../images/common/img_foot_logo.png") no-repeat center;
  background-size: 100%;
  width: 15.2rem;
  height: 6.1rem;
}
.wrap footer .inner .footer_info {
  width: calc(100% - 15.2rem - 5rem - 14rem - 10.4rem);
}
.wrap footer .inner .footer_info .info_link {
  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: 5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.wrap footer .inner .footer_info .info_link li {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
}
.wrap footer .inner .footer_info .info_link li a {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
}
.wrap footer .inner .footer_info .info_details {
  margin-top: 3rem;
}
.wrap footer .inner .footer_info .info_details > p {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #ffffff;
}
.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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid #555555;
}
.wrap footer .inner .footer_info .info_details ul li {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #ffffff;
}
.wrap footer .inner .footer_info .info_details ul li span {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
}
.wrap footer .inner .footer_info .info_details ul li a {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: #ffffff;
  text-decoration: none;
}
.wrap footer .inner .footer_info .copyright {
  margin-top: 2rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: #ffffff;
}
.wrap footer .inner .familysite {
  position: absolute;
  top: 3rem;
  right: 0;
}
.wrap footer .inner .familysite .site_btn {
  position: relative;
  width: 14rem;
  height: 3.4rem;
  padding: 0.9rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #ffffff;
  background: transparent;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  text-align: left;
  color: #ffffff;
}
.wrap footer .inner .familysite .site_btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/common/ico_arrow_down.png") no-repeat center;
  background-size: 100%;
  width: 1.4rem;
  height: 1.4rem;
}
.wrap footer .inner .familysite ul {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  position: absolute;
  margin-top: 5px;
  width: 14rem;
  border-radius: 1rem;
  background: transparent;
  border: 1px solid #ffffff;
  -webkit-transition: max-height 0.3s ease-in-out, opacity 0.2s ease-in-out;
  transition: max-height 0.3s ease-in-out, opacity 0.2s ease-in-out;
}
.wrap footer .inner .familysite ul li {
  position: relative;
  width: 100%;
  padding: 1.5rem;
  cursor: pointer;
}
.wrap footer .inner .familysite ul li a {
  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;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: -0.024rem;
  color: #ffffff;
  -webkit-transform: all 0.3s ease-in-out;
          transform: all 0.3s ease-in-out;
}
.wrap footer .inner .familysite ul li:nth-child(2) {
  padding: 0 1.5rem;
}
.wrap footer .inner .familysite ul li:hover a {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  color: #3f90ef;
}
.wrap footer .inner .familysite ul li:hover a::after {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 0.8rem;
  background: url("../images/common/ico_check.png") no-repeat center;
  background-size: 100%;
}
.wrap footer .inner .familysite:hover .site_btn::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.wrap footer .inner .familysite:hover ul {
  overflow: visible;
  opacity: 1;
  max-height: 50rem;
}
.wrap .contents {
  position: relative;
  width: 100%;
  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("../images/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: 100vh;
}
.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.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 .dsec {
  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("../images/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("../images/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_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("../images/common/ico_arrow_left.png") no-repeat center;
  background-size: 100%;
}
.wrap .contents section.main .swiper_custom .custom_btn button.next_btn {
  background: url("../images/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("../images/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;
  background-color: #ffffff;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}
.wrap .floating a::before {
  opacity: 0;
  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: 0;
  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;
}
.wrap .floating:hover a {
  background-color: #1e5ccc;
}
.wrap .floating:hover a::before {
  content: "문의하기";
  opacity: 1;
  max-width: 17.4rem;
  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_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.iapps .inner .txt_box .desc {
    max-width: 35rem;
  }
  .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.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 .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: 80/32;
  }
  .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.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_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 {
    font-size: 1.8rem;
  }
  .wrap header .inner .header_link {
    display: none;
  }
  .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.2rem;
  }
  .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 {
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .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.2rem;
    line-height: 4rem;
  }
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide .inner .txt_box .desc {
    margin-top: 2rem;
    font-size: 2.4rem;
  }
  .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-wrapper .swiper-slide .inner .img_box {
    width: 100%;
    padding: 0 1rem;
  }
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide .inner .img_box .object {
    width: 100%;
    aspect-ratio: 339/208;
  }
  .wrap .contents section.main .swiper .swiper-wrapper .swiper-slide.iapps.white {
    display: none;
  }
  .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 .inner {
  padding: 10rem 0;
}
.contents .sc01 .inner h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #000000;
  text-align: center;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.contents .sc01 .inner h2::after {
  content: "";
  display: inline-block;
  background: url("../images/iapps/img_iapps_emoji.png") no-repeat center;
  background-size: 100%;
  width: 8rem;
  height: 8.4rem;
  margin-left: 1rem;
}
.contents .sc01 .inner .graph_box {
  margin-top: 3rem;
  -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 .graph_box .top {
  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 .sc01 .inner .graph_box .top .object01 {
  background: url("../images/iapps/img_iapps_sc01_img_01.png") no-repeat center;
  background-size: 100%;
  width: 21.5rem;
  height: 21.5rem;
  background-size: 18.5rem;
}
.contents .sc01 .inner .graph_box .top .object02 {
  background: url("../images/iapps/img_iapps_sc01_img_02.png") no-repeat center;
  background-size: 100%;
  width: 21.5rem;
  height: 21.5rem;
}
.contents .sc01 .inner .graph_box .top p {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #000000;
}
.contents .sc01 .inner .graph_box .graph {
  margin-top: 2.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: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contents .sc01 .inner .graph_box .graph > div {
  position: relative;
}
.contents .sc01 .inner .graph_box .graph > div .tit {
  position: relative;
  width: 22rem;
  height: 9rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
  background: #ffffff;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
  color: #000000;
  line-height: 9rem;
}
.contents .sc01 .inner .graph_box .graph > div .left {
  position: absolute;
  top: 50%;
  right: 22rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 1rem 0 0 1rem;
  background: #ffffff;
  height: 7rem;
  border: 1px solid #d2e3f7;
}
.contents .sc01 .inner .graph_box .graph > div .left::before {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: #d2e3f7;
  border-radius: 1rem 0 0 1rem;
  height: 100%;
}
.contents .sc01 .inner .graph_box .graph > div .left p {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -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;
  font-family: "Pretendard", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #6399d9;
}
.contents .sc01 .inner .graph_box .graph > div .left p span {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #6399d9;
}
.contents .sc01 .inner .graph_box .graph > div .right {
  position: absolute;
  top: 50%;
  left: 22rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 0 1rem 1rem 0;
  background: #3f90ef;
  height: 7rem;
}
.contents .sc01 .inner .graph_box .graph > div .right p {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -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;
  font-family: "Pretendard", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #ffffff;
}
.contents .sc01 .inner .graph_box .graph > div .right p span {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #ffffff;
}
.contents .sc01 .inner .graph_box .graph .graph01 .left {
  width: 34.5rem;
}
.contents .sc01 .inner .graph_box .graph .graph01 .left::before {
  width: 18.9rem;
}
.contents .sc01 .inner .graph_box .graph .graph01 .right {
  width: 44.5rem;
}
.contents .sc01 .inner .graph_box .graph .graph02 .left {
  width: 60.9rem;
}
.contents .sc01 .inner .graph_box .graph .graph02 .left::before {
  width: 12.4rem;
}
.contents .sc01 .inner .graph_box .graph .graph02 .right {
  width: 64.5rem;
}
.contents .sc01 .inner .graph_box .graph .graph03 .left {
  width: 46.7rem;
}
.contents .sc01 .inner .graph_box .graph .graph03 .left::before {
  width: 9.5rem;
}
.contents .sc01 .inner .graph_box .graph .graph03 .right {
  width: 40.4rem;
}
.contents .sc01 .inner .graph_box .graph .txt {
  margin-top: 1rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #000000;
}
.contents .sc01 .inner .graph_box .graph strong {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 4.7rem;
  color: #000000;
}
.contents .sc01.on .inner h2,
.contents .sc01.on .inner .graph_box {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.contents .sc02 {
  background: #f4f8ff;
}
.contents .sc02 .inner {
  padding: 12rem 0 5rem;
}
.contents .sc02 .inner h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #000000;
  text-align: center;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.contents .sc02 .inner h2 span {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #ffffff;
  text-align: center;
  background-color: #3f90ef;
  border-radius: 1rem;
  padding: 0.8rem 1rem;
}
.contents .sc02 .inner h2::after {
  content: "";
  display: inline-block;
  background: url("../images/iapps/img_iapps_emoji.png") no-repeat center;
  background-size: 100%;
  width: 8rem;
  height: 8.4rem;
  margin-left: 1rem;
}
.contents .sc02 .inner .txt_box {
  position: relative;
  margin-top: 10rem;
}
.contents .sc02 .inner .txt_box li {
  position: relative;
  padding: 3rem 4rem;
  width: 72.7rem;
  background: #ffffff;
  border: 1px solid #d2e3f7;
  border-radius: 2rem;
}
.contents .sc02 .inner .txt_box li::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 15rem;
  color: #3f90ef;
  z-index: 0;
}
.contents .sc02 .inner .txt_box li .tit {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #000000;
}
.contents .sc02 .inner .txt_box li .desc {
  margin-top: 1rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 4rem;
  color: #000000;
}
.contents .sc02 .inner .txt_box li:first-of-type {
  margin-left: calc(100% - 72.7rem);
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.contents .sc02 .inner .txt_box li:first-of-type::before {
  left: -15rem;
  content: "01";
}
.contents .sc02 .inner .txt_box li:nth-of-type(2) {
  margin: 3rem 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.contents .sc02 .inner .txt_box li:nth-of-type(2)::before {
  right: -17rem;
  content: "02";
}
.contents .sc02 .inner .txt_box li:last-of-type {
  margin-left: calc(100% - 72.7rem);
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.contents .sc02 .inner .txt_box li:last-of-type::before {
  left: -17rem;
  content: "03";
}
.contents .sc02.on .inner h2 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.contents .sc02.on .inner .txt_box li:first-of-type {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.contents .sc02.on .inner .txt_box li:nth-of-type(2) {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.contents .sc02.on .inner .txt_box li:last-of-type {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.contents .sc03 .inner {
  padding: 10rem 0 3rem;
}
.contents .sc03 .inner h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #000000;
  text-align: center;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.contents .sc03 .inner h2::before {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  background-color: #000000;
  margin: 0 auto 5rem;
}
.contents .sc03 .inner .benefit_box {
  margin-top: 14rem;
}
.contents .sc03 .inner .benefit_box ul li {
  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;
}
.contents .sc03 .inner .benefit_box ul li .txt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contents .sc03 .inner .benefit_box ul li .txt .num {
  font-family: "Pretendard", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  text-align: center;
  color: #ffffff;
  background: #3f90ef;
  border-radius: 50%;
  width: 7.6rem;
  height: 7.6rem;
  line-height: 7.6rem;
}
.contents .sc03 .inner .benefit_box ul li .txt .tit {
  margin-top: 2rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 4.8rem;
  color: #000000;
}
.contents .sc03 .inner .benefit_box ul li .txt .desc {
  margin-top: 2rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 4rem;
  color: #000000;
}
.contents .sc03 .inner .benefit_box ul li:first-of-type {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.contents .sc03 .inner .benefit_box ul li:first-of-type img {
  width: 78.5rem;
  height: 48.2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.contents .sc03 .inner .benefit_box ul li:first-of-type .txt {
  margin-top: 5rem;
}
.contents .sc03 .inner .benefit_box ul li:last-of-type {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.contents .sc03 .inner .benefit_box ul li:last-of-type img {
  width: 82.2rem;
  height: 76.6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.contents .sc03 .inner .benefit_box ul li:last-of-type .txt {
  margin-bottom: 16.7rem;
}
.contents .sc03.on .inner h2 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.contents .sc03.on .inner .benefit_box ul li:first-of-type {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.contents .sc03.on .inner .benefit_box ul li:last-of-type {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.contents .sc04 {
  background: #f4f8ff;
}
.contents .sc04 .inner {
  padding: 10rem 0 15rem;
}
.contents .sc04 .inner h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #000000;
  text-align: center;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.contents .sc04 .inner h2::before {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  background-color: #000000;
  margin: 0 auto 5rem;
}
.contents .sc04 .inner .function_box {
  margin-top: 10rem;
}
.contents .sc04 .inner .function_box .top {
  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;
  gap: 5rem;
}
.contents .sc04 .inner .function_box .top .txt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contents .sc04 .inner .function_box .top .txt .sm_tit {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  color: #3f90ef;
  font-size: 3rem;
}
.contents .sc04 .inner .function_box .top .txt .tit {
  margin-top: 2.8rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 4rem;
  line-height: 5.2rem;
}
.contents .sc04 .inner .function_box .top .txt .desc {
  margin-top: 3.5rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 2rem;
  line-height: 2.8rem;
}
.contents .sc04 .inner .function_box .top img {
  width: 52.3rem;
  height: 44.9rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.contents .sc04 .inner .function_box .funtcion_list {
  margin-top: 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: 3rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents .sc04 .inner .function_box .funtcion_list li {
  position: relative;
  padding: 3rem 4rem;
  background: #ffffff;
  border: 1px solid #d2e3f7;
  border-radius: 2rem;
  text-align: left;
  width: 100%;
}
.contents .sc04 .inner .function_box .funtcion_list li .tit {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.8rem;
  color: #000000;
}
.contents .sc04 .inner .function_box .funtcion_list li .tit::before {
  content: "";
  display: block;
  width: 6.8rem;
  height: 6.8rem;
  margin-bottom: 2rem;
}
.contents .sc04 .inner .function_box .funtcion_list li .desc {
  margin-top: 2rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.8rem;
  color: #000000;
}
.contents .sc04 .inner .function_box .funtcion_list li.point01 .tit::before {
  background: url("../images/iapps/img_iapps_sc04_point_ico_01.png") no-repeat center;
  background-size: 100%;
}
.contents .sc04 .inner .function_box .funtcion_list li.point02 .tit::before {
  background: url("../images/iapps/img_iapps_sc04_point_ico_02.png") no-repeat center;
  background-size: 100%;
}
.contents .sc04 .inner .function_box .funtcion_list li.point03 .tit::before {
  background: url("../images/iapps/img_iapps_sc04_point_ico_03.png") no-repeat center;
  background-size: 100%;
}
.contents .sc04 .inner .function_box .funtcion_list li.coupon01 .tit::before {
  background: url("../images/iapps/img_iapps_sc04_coupon_ico.png") no-repeat center;
  background-size: 100%;
}
.contents .sc04 .inner .function_box .funtcion_list li.coupon02 .tit::before {
  background: url("../images/iapps/img_iapps_sc04_point_ico_03.png") no-repeat center;
  background-size: 100%;
}
.contents .sc04 .inner .function_box:first-of-type .top {
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.contents .sc04 .inner .function_box:first-of-type .funtcion_list li {
  -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;
}
.contents .sc04 .inner .function_box:first-of-type .funtcion_list li.point01 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.contents .sc04 .inner .function_box:first-of-type .funtcion_list li.point02 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.contents .sc04 .inner .function_box:first-of-type .funtcion_list li.point03 {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.contents .sc04 .inner .function_box:last-of-type .top {
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.contents .sc04 .inner .function_box:last-of-type .funtcion_list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.contents .sc04 .inner .function_box:last-of-type .funtcion_list li {
  -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;
}
.contents .sc04 .inner .function_box:last-of-type .funtcion_list li.coupon01 {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.contents .sc04 .inner .function_box:last-of-type .funtcion_list li.coupon02 {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}
.contents .sc04.on .inner h2 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.contents .sc04.on .inner .function_box .top {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.contents .sc04.on .inner .function_box .funtcion_list li {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
  opacity: 1;
}
.contents .sc05 .inner {
  padding: 10rem 0;
}
.contents .sc05 .inner .txt_box h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #000000;
  text-align: center;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.contents .sc05 .inner .txt_box h2::before {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  background-color: #000000;
  margin: 0 auto 5rem;
}
.contents .sc05 .inner .txt_box .sub_txt {
  margin-top: 2rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  color: #000000;
  text-align: center;
  -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 .sc05 .inner .txt_box .sub_txt strong {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
}
.contents .sc05 .inner .txt_box .desc {
  margin-top: 2rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #000000;
  text-align: center;
  -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 .sc05 .inner img {
  margin-top: 5rem;
  width: 100%;
  aspect-ratio: 1319/771;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.contents .sc05.on .inner h2,
.contents .sc05.on .inner .sub_txt,
.contents .sc05.on .inner .desc {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.contents .sc05.on .inner img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.contents .sc06 {
  background: #f7f7f7;
}
.contents .sc06 .inner {
  padding: 10rem 0;
}
.contents .sc06 .inner .txt_box::before {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  background-color: #000000;
  margin: 0 auto 5rem;
}
.contents .sc06 .inner .txt_box h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  line-height: 8rem;
  color: #000000;
  text-align: center;
  -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 .sc06 .inner .txt_box h2 span {
  color: #3f90ef;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
}
.contents .sc06 .inner .txt_box .desc {
  margin-bottom: 2rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000000;
  text-align: center;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.contents .sc06 .inner img {
  margin-top: 5rem;
  width: 100%;
  aspect-ratio: 1318/560;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.contents .sc06.on .inner h2,
.contents .sc06.on .inner .desc {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.contents .sc06.on .inner img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.contents .sc07 .inner {
  max-width: 100% !important;
}
.contents .sc07 .inner .sale_box {
  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 .sc07 .inner .sale_box .left {
  padding-left: 11rem;
}
.contents .sc07 .inner .sale_box .left .num {
  display: inline-block;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #ffffff;
  background: #3f90ef;
  border-radius: 4rem;
  padding: 2rem 4rem;
}
.contents .sc07 .inner .sale_box .left .num span {
  font-family: "Pretendard", sans-serif;
  font-weight: 900;
  font-size: 3rem;
}
.contents .sc07 .inner .sale_box .left .tit {
  margin-top: 3rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  color: #000000;
  line-height: 7.2rem;
}
.contents .sc07 .inner .sale_box .left .desc {
  margin-top: 3rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000000;
  line-height: 4.2rem;
}
.contents .sc07 .inner .sale_box .right {
  width: 50%;
  max-width: 93.8rem;
}
.contents .sc07 .inner .sale_box.retarget .left {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.contents .sc07 .inner .sale_box.retarget .right {
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  background: #daeafe;
  padding-top: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contents .sc07 .inner .sale_box.retarget .right > .tit {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  color: #3f90ef;
  line-height: 5.6rem;
  text-align: center;
}
.contents .sc07 .inner .sale_box.retarget .right .retarget_list_box {
  margin-top: 3rem;
  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: 5.4rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.contents .sc07 .inner .sale_box.retarget .right .retarget_list_box li {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: #222222;
  line-height: 3rem;
  text-align: center;
}
.contents .sc07 .inner .sale_box.retarget .right .retarget_list_box li::before {
  content: "";
  display: block;
  width: 12.8rem;
  height: 12.8rem;
  margin: 0 auto 1rem;
}
.contents .sc07 .inner .sale_box.retarget .right .retarget_list_box li.cart::before {
  background: url("../images/iapps/img_iapps_sc07_ico_01.png") no-repeat center;
  background-size: 100%;
}
.contents .sc07 .inner .sale_box.retarget .right .retarget_list_box li.like::before {
  background: url("../images/iapps/img_iapps_sc07_ico_02.png") no-repeat center;
  background-size: 100%;
}
.contents .sc07 .inner .sale_box.retarget .right .retarget_list_box li.click::before {
  background: url("../images/iapps/img_iapps_sc07_ico_03.png") no-repeat center;
  background-size: 100%;
}
.contents .sc07 .inner .sale_box.retarget .right .example {
  margin-top: 2.5rem;
  padding: 5.2rem 6rem 4rem;
  background: #ffffff;
  border-radius: 2.4rem 2.4rem 0 0;
}
.contents .sc07 .inner .sale_box.retarget .right .example .tit {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 3.8rem;
  letter-spacing: -0.152rem;
  text-align: center;
  color: #2b332b;
}
.contents .sc07 .inner .sale_box.retarget .right .example .desc {
  margin-top: 1.5rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 3rem;
  text-align: center;
  letter-spacing: -0.104rem;
  color: #2b332b;
}
.contents .sc07 .inner .sale_box.retarget .right .example ul {
  margin-top: 3.5rem;
  padding: 0 6rem;
}
.contents .sc07 .inner .sale_box.retarget .right .example ul li {
  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 .sc07 .inner .sale_box.retarget .right .example ul li + li {
  margin-top: 2rem;
}
.contents .sc07 .inner .sale_box.retarget .right .example ul li span:first-of-type {
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 3.4rem;
  letter-spacing: -0.136rem;
  color: #000000;
}
.contents .sc07 .inner .sale_box.retarget .right .example ul li span:last-of-type {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: -0.126rem;
  color: #000000;
  text-align: right;
}
.contents .sc07 .inner .sale_box.retarget .right .example ul li:last-of-type span:last-of-type {
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  color: #3f90ef;
}
.contents .sc07 .inner .sale_box.retarget .right .example .strong_box {
  margin-top: 2.5rem;
  width: 57.5rem;
  border-radius: 2rem;
  background: #3f90ef;
  padding: 1.5rem 0;
}
.contents .sc07 .inner .sale_box.retarget .right .example .strong_box p {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  color: #d6e9ff;
  text-align: center;
  letter-spacing: -0.12rem;
}
.contents .sc07 .inner .sale_box.retarget .right .example .strong_box strong {
  margin-top: 1rem;
  display: block;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 5.2rem;
  color: #ffffff;
  letter-spacing: -0.208rem;
  text-align: center;
}
.contents .sc07 .inner .sale_box.coupon .left {
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.contents .sc07 .inner .sale_box.coupon .right {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  background: #3f90ef;
  width: 50%;
  padding: 5rem 5rem 0;
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
.contents .sc07 .inner .sale_box.coupon .right .coupon_box {
  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 .sc07 .inner .sale_box.coupon .right .coupon_box .customer img,
.contents .sc07 .inner .sale_box.coupon .right .coupon_box .popup img {
  width: 35.4rem;
  height: 26.9rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.contents .sc07 .inner .sale_box.coupon .right .coupon_box .customer p,
.contents .sc07 .inner .sale_box.coupon .right .coupon_box .popup p {
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  font-size: 2.3rem;
  letter-spacing: -0.092rem;
  color: #ffffff;
  width: 22.4rem;
  padding: 1.4rem 0;
  background: #025eb3;
  border-radius: 3rem;
  text-align: center;
  margin: 1.5rem auto 0;
}
.contents .sc07 .inner .sale_box.coupon .right .coupon_box .arrow {
  background: url("../images/iapps/img_iapps_sc07_arrow.png") no-repeat center;
  background-size: 100%;
  width: 5.9rem;
  height: 6.1rem;
}
.contents .sc07 .inner .sale_box.coupon .right .example {
  margin-top: 4.5rem;
  padding: 4.5rem 4.5rem 0;
  background: #ffffff;
  border-radius: 2.4rem 2.4rem 0 0;
}
.contents .sc07 .inner .sale_box.coupon .right .example .tit {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 3.3rem;
  letter-spacing: -0.132rem;
  color: #2b332b;
}
.contents .sc07 .inner .sale_box.coupon .right .example .desc {
  margin-top: 1rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 3rem;
  letter-spacing: -0.096rem;
  color: #2b332b;
}
.contents .sc07 .inner .sale_box.coupon .right .example img {
  margin-top: 1.5rem;
  width: 74.1rem;
  aspect-ratio: 741/275;
  -o-object-fit: contain;
     object-fit: contain;
}
.contents .sc07.on .inner .sale_box.retarget .left {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.contents .sc07.on .inner .sale_box.retarget .right {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.contents .sc07.on .inner .sale_box.coupon .left {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.contents .sc07.on .inner .sale_box.coupon .right {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.contents .sc08 {
  background: #f4f8ff;
}
.contents .sc08 .inner {
  padding: 10rem 0;
}
.contents .sc08 .inner .txt_box::before {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  background-color: #000000;
  margin: 0 auto 5rem;
}
.contents .sc08 .inner .txt_box h2 {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 6rem;
  line-height: 8rem;
  color: #000000;
  text-align: center;
  -webkit-transform: translateY(70px);
          transform: translateY(70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.contents .sc08 .inner .txt_box .desc {
  margin-top: 2rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  color: #000000;
  text-align: center;
  -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 .sc08 .inner .partner_box {
  margin: 9rem auto 0;
  text-align: center;
  -webkit-transform: translateY(-70px);
          transform: translateY(-70px);
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.contents .sc08 .inner .partner_box ul li {
  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;
  border: 1px solid #d2e3f7;
  border-radius: 1.9rem;
  overflow: hidden;
  background: #d2e3f7;
}
.contents .sc08 .inner .partner_box ul li + li {
  margin-top: 3rem;
}
.contents .sc08 .inner .partner_box ul li .label {
  width: 19rem;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 4.2rem;
  text-align: center;
  color: #6399d9;
}
.contents .sc08 .inner .partner_box ul li .logo {
  width: calc(100% - 19rem);
  background: #ffffff;
  padding: 3.5rem 0;
  margin: 0 auto;
  text-align: center;
}
.contents .sc08 .inner .partner_box ul li .logo img {
  max-width: 95%;
  width: 104.8rem;
}
.contents .sc08 .inner .partner_box .download {
  margin-top: 5rem;
  display: inline-block;
  font-family: "Pretendard", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  color: #ffffff;
  padding: 2.6rem 5.8rem;
  border-radius: 2rem;
  border: 1px solid #d2e3f7;
  background: #3f90ef;
}
.contents .sc08 .inner .partner_box .download span {
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #ffffff;
}
.contents .sc08.on .inner .txt_box h2,
.contents .sc08.on .inner .txt_box .desc {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.contents .sc08.on .inner .partner_box {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media screen and (min-width: 961px) and (max-width: 1200px) {
  .contents .sc01 .inner .graph_box .graph .graph01,
  .contents .sc01 .inner .graph_box .graph .graph02,
  .contents .sc01 .inner .graph_box .graph .graph03 {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  .contents .sc04 {
    background: #f4f8ff;
  }
  .contents .sc04 .inner .function_box {
    margin-top: 10rem;
  }
  .contents .sc04 .inner .function_box .top {
    gap: 2.5rem;
  }
  .contents .sc04 .inner .function_box .top .txt .tit {
    max-width: 50rem;
    word-break: keep-all;
  }
  .contents .sc05 .inner {
    text-align: center;
  }
  .contents .sc05 .inner img {
    max-width: 80%;
    margin: 5rem auto 0;
  }
  .contents .sc06 .inner {
    text-align: center;
  }
  .contents .sc06 .inner img {
    max-width: 80%;
    margin: 5rem auto 0;
  }
  .contents .sc07 .inner .sale_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contents .sc07 .inner .sale_box .left {
    width: 100%;
    text-align: center;
    padding: 7.5rem 0;
  }
  .contents .sc07 .inner .sale_box .right {
    width: 100%;
    max-width: 100%;
  }
  .contents .sc07 .inner .sale_box.coupon .right {
    width: 100%;
    max-width: 100%;
    padding: 5rem 15rem 0;
  }
  .contents .sc07 .inner .sale_box.coupon .right .example {
    text-align: center;
  }
  .contents .sc07 .inner .sale_box.coupon .right .example p {
    text-align: left;
  }
  .contents .sc08 .inner .partner_box ul li .logo img {
    width: 90%;
  }
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .contents .sc01 .inner h2 {
    font-size: 4.8rem;
    line-height: 6.6rem;
  }
  .contents .sc01 .inner h2::after {
    width: 6rem;
    height: 6rem;
  }
  .contents .sc01 .inner .graph_box .graph .graph01 .left {
    width: 29rem;
  }
  .contents .sc01 .inner .graph_box .graph .graph01 .right {
    width: 29rem;
  }
  .contents .sc01 .inner .graph_box .graph .graph02 .left {
    width: 35rem;
  }
  .contents .sc01 .inner .graph_box .graph .graph02 .right {
    width: 35rem;
  }
  .contents .sc01 .inner .graph_box .graph .graph03 .left {
    width: 31rem;
  }
  .contents .sc01 .inner .graph_box .graph .graph03 .right {
    width: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .wrap .contents .sc01 .inner {
    padding: 5rem 0;
  }
  .wrap .contents .sc01 .inner h2 {
    font-size: 2.4rem;
  }
  .wrap .contents .sc01 .inner h2::after {
    width: 3.6rem;
    height: 3.7rem;
    margin-left: 0.5rem;
    vertical-align: -5px;
  }
  .wrap .contents .sc01 .inner .graph_box .top {
    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: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .wrap .contents .sc01 .inner .graph_box .top .object01 {
    width: 10.7rem;
    height: 10.7rem;
    background-size: 9rem;
  }
  .wrap .contents .sc01 .inner .graph_box .top .object02 {
    width: 10.7rem;
    height: 10.7rem;
  }
  .wrap .contents .sc01 .inner .graph_box .top p {
    font-size: 1.6rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph {
    margin-top: 1.5rem;
    gap: 1rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph > div {
    position: relative;
  }
  .wrap .contents .sc01 .inner .graph_box .graph > div .tit {
    width: 8.2rem;
    height: 4rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    line-height: 4rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph > div .left {
    right: 8.2rem;
    border-radius: 0.5rem 0 0 0.5rem;
    height: 3rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph > div .left::before {
    border-radius: 0.5rem 0 0 0.5rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph > div .left p {
    position: absolute;
    top: 50%;
    right: 0.7rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 1.3rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph > div .left p span {
    font-size: 1rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph > div .right {
    left: 8.2rem;
    border-radius: 0 0.5rem 0.5rem 0;
    height: 3rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph > div .right p {
    left: 0.7rem;
    font-size: 1.3rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph > div .right p span {
    font-size: 1rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph .graph01 .left {
    width: 9rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph .graph01 .left::before {
    width: calc(100% - 3rem);
  }
  .wrap .contents .sc01 .inner .graph_box .graph .graph01 .right {
    width: 10.8rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph .graph02 .left {
    width: 12rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph .graph02 .left::before {
    width: calc(100% - 6.4rem);
  }
  .wrap .contents .sc01 .inner .graph_box .graph .graph02 .right {
    width: 12rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph .graph03 .left {
    width: 10.8rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph .graph03 .left::before {
    width: calc(100% - 6.4rem);
  }
  .wrap .contents .sc01 .inner .graph_box .graph .graph03 .right {
    width: 7.5rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph .txt {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  .wrap .contents .sc01 .inner .graph_box .graph strong {
    font-size: 2rem;
    line-height: 3.2rem;
    text-align: center;
  }
  .wrap .contents .sc02 {
    background: #f4f8ff;
  }
  .wrap .contents .sc02 .inner {
    padding: 5rem 0 3rem;
  }
  .wrap .contents .sc02 .inner h2 {
    font-size: 2.4rem;
  }
  .wrap .contents .sc02 .inner h2 span {
    font-size: 2.4rem;
    border-radius: 0.5rem;
    padding: 0.3rem 0.5rem;
  }
  .wrap .contents .sc02 .inner h2::after {
    width: 3.6rem;
    height: 3.7rem;
    margin-left: 0.5rem;
    vertical-align: -5px;
  }
  .wrap .contents .sc02 .inner .txt_box {
    margin-top: 2rem;
    padding: 0 1.5rem;
  }
  .wrap .contents .sc02 .inner .txt_box li {
    padding: 1.5rem 1.5rem;
    width: 100%;
    border-radius: 1rem;
  }
  .wrap .contents .sc02 .inner .txt_box li::before {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    font-size: 1.6rem;
  }
  .wrap .contents .sc02 .inner .txt_box li .tit {
    margin-top: 1rem;
    font-size: 2rem;
  }
  .wrap .contents .sc02 .inner .txt_box li .desc {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .wrap .contents .sc02 .inner .txt_box li:first-of-type {
    margin-left: 0;
  }
  .wrap .contents .sc02 .inner .txt_box li:first-of-type::before {
    left: auto;
  }
  .wrap .contents .sc02 .inner .txt_box li:nth-of-type(2) {
    margin: 1rem 0;
  }
  .wrap .contents .sc02 .inner .txt_box li:nth-of-type(2)::before {
    right: auto;
  }
  .wrap .contents .sc02 .inner .txt_box li:last-of-type {
    margin-left: 0;
  }
  .wrap .contents .sc02 .inner .txt_box li:last-of-type::before {
    left: auto;
  }
  .wrap .contents .sc03 .inner {
    padding: 5rem 0 2.5rem;
  }
  .wrap .contents .sc03 .inner h2 {
    font-size: 2.4rem;
  }
  .wrap .contents .sc03 .inner h2::before {
    width: 4rem;
    margin: 0 auto 3rem;
  }
  .wrap .contents .sc03 .inner .benefit_box {
    margin-top: 1.5rem;
  }
  .wrap .contents .sc03 .inner .benefit_box ul {
    padding: 0 1.5rem;
  }
  .wrap .contents .sc03 .inner .benefit_box ul li {
    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 .sc03 .inner .benefit_box ul li .txt {
    text-align: center;
  }
  .wrap .contents .sc03 .inner .benefit_box ul li .txt .num {
    font-size: 2rem;
    width: 3.8rem;
    height: 3.8rem;
    line-height: 3.8rem;
    margin: 0 auto;
  }
  .wrap .contents .sc03 .inner .benefit_box ul li .txt .tit {
    margin-top: 1rem;
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .wrap .contents .sc03 .inner .benefit_box ul li .txt .desc {
    margin-top: 1rem;
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .wrap .contents .sc03 .inner .benefit_box ul li:first-of-type img {
    width: 100%;
    height: auto;
    aspect-ratio: 341/210;
  }
  .wrap .contents .sc03 .inner .benefit_box ul li:first-of-type .txt {
    margin-top: 1.5rem;
  }
  .wrap .contents .sc03 .inner .benefit_box ul li:last-of-type {
    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: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrap .contents .sc03 .inner .benefit_box ul li:last-of-type img {
    width: 100%;
    height: auto;
    aspect-ratio: 480/448;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .wrap .contents .sc03 .inner .benefit_box ul li:last-of-type .txt {
    margin-bottom: 3rem;
  }
  .wrap .contents .sc04 .inner {
    padding: 5.5rem 1.5rem 3rem;
  }
  .wrap .contents .sc04 .inner h2 {
    font-size: 2.4rem;
  }
  .wrap .contents .sc04 .inner h2::before {
    width: 4rem;
    margin: 0 auto 3rem;
  }
  .wrap .contents .sc04 .inner .function_box {
    margin-top: 2rem;
  }
  .wrap .contents .sc04 .inner .function_box + .function_box {
    margin-top: 5rem;
  }
  .wrap .contents .sc04 .inner .function_box .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
  .wrap .contents .sc04 .inner .function_box .top .txt {
    margin-top: 1rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    text-align: center;
  }
  .wrap .contents .sc04 .inner .function_box .top .txt .sm_tit {
    font-size: 1.6rem;
  }
  .wrap .contents .sc04 .inner .function_box .top .txt .tit {
    margin-top: 1rem;
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .wrap .contents .sc04 .inner .function_box .top .txt .desc {
    margin-top: 2rem;
    font-size: 1.6rem;
    line-height: 2.3rem;
  }
  .wrap .contents .sc04 .inner .function_box .top .txt .desc .pc_br {
    display: none;
  }
  .wrap .contents .sc04 .inner .function_box .top img {
    width: 100%;
    height: auto;
    aspect-ratio: 330/281;
  }
  .wrap .contents .sc04 .inner .function_box .funtcion_list {
    margin-top: 3rem;
    gap: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .wrap .contents .sc04 .inner .function_box .funtcion_list li {
    padding: 1.5rem 1.5rem;
    border-radius: 1rem;
  }
  .wrap .contents .sc04 .inner .function_box .funtcion_list li .tit {
    font-size: 1.8rem;
    line-height: 1;
  }
  .wrap .contents .sc04 .inner .function_box .funtcion_list li .tit::before {
    width: 3.8rem;
    height: 3.8rem;
    margin-bottom: 1rem;
  }
  .wrap .contents .sc04 .inner .function_box .funtcion_list li .desc {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1;
  }
  .wrap .contents .sc04 .inner .function_box:last-of-type .funtcion_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .wrap .contents .sc05 .inner {
    padding: 3rem 1.5rem;
  }
  .wrap .contents .sc05 .inner .txt_box h2 {
    font-size: 2.4rem;
    line-height: 4rem;
  }
  .wrap .contents .sc05 .inner .txt_box h2::before {
    width: 4rem;
    margin-bottom: 3rem;
  }
  .wrap .contents .sc05 .inner .txt_box .sub_txt {
    font-size: 2rem;
    line-height: 2.8rem;
  }
  .wrap .contents .sc05 .inner .txt_box .desc {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .wrap .contents .sc05 .inner img {
    margin-top: 2rem;
    aspect-ratio: 330/193;
  }
  .wrap .contents .sc06 .inner {
    padding: 5rem 1.5rem 3rem;
  }
  .wrap .contents .sc06 .inner .txt_box::before {
    width: 4rem;
    margin-bottom: 3rem;
  }
  .wrap .contents .sc06 .inner .txt_box h2 {
    font-size: 2.4rem;
    line-height: 3.1rem;
  }
  .wrap .contents .sc06 .inner .txt_box h2 span {
    font-size: 2.4rem;
    line-height: 3.1rem;
  }
  .wrap .contents .sc06 .inner .txt_box .desc {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .wrap .contents .sc06 .inner img {
    margin-top: 3rem;
    aspect-ratio: 331/140;
  }
  .wrap .contents .sc07 .inner {
    padding-top: 5rem;
  }
  .wrap .contents .sc07 .inner .sale_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrap .contents .sc07 .inner .sale_box .left {
    padding-left: 0;
    text-align: center;
    width: 100%;
  }
  .wrap .contents .sc07 .inner .sale_box .left .num {
    font-size: 1.6rem;
    border-radius: 1.7rem;
    padding: 0.8rem 1.4rem;
  }
  .wrap .contents .sc07 .inner .sale_box .left .num span {
    font-size: 1.6rem;
  }
  .wrap .contents .sc07 .inner .sale_box .left .tit {
    margin-top: 2rem;
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .wrap .contents .sc07 .inner .sale_box .left .tit .pc_br {
    display: none;
  }
  .wrap .contents .sc07 .inner .sale_box .left .desc {
    margin-top: 1rem;
    font-size: 1.6rem;
    line-height: 2.3rem;
  }
  .wrap .contents .sc07 .inner .sale_box .right {
    width: 100%;
    max-width: 93.8rem;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .left {
    padding: 0 1rem 2rem;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right {
    padding-top: 3rem;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right > .tit {
    font-size: 2rem;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right > .tit .pc_br {
    display: none;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .retarget_list_box {
    margin-top: 3rem;
    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: 5.4rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .retarget_list_box li {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .retarget_list_box li::before {
    width: 5.4rem;
    height: 5.4rem;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .example {
    margin-top: 2rem;
    padding: 2rem 2rem 3.5rem;
    border-radius: 1rem 1rem 0 0;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .example .tit {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .example .desc {
    margin-top: 0.6rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
    letter-spacing: 0;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .example ul {
    margin-top: 1rem;
    padding: 0 3rem;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .example ul li + li {
    margin-top: 1rem;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .example ul li span:first-of-type {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .example ul li span:last-of-type {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .example .strong_box {
    margin-top: 1rem;
    width: auto;
    border-radius: 1rem;
    padding: 0.7rem 3.5rem;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .example .strong_box p {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
  .wrap .contents .sc07 .inner .sale_box.retarget .right .example .strong_box strong {
    margin-top: 0.5rem;
    font-size: 2.4rem;
    letter-spacing: 0;
  }
  .wrap .contents .sc07 .inner .sale_box.coupon .left {
    padding: 3rem 1rem;
  }
  .wrap .contents .sc07 .inner .sale_box.coupon .right {
    width: 100%;
    padding: 1.2rem 1rem 0;
  }
  .wrap .contents .sc07 .inner .sale_box.coupon .right .coupon_box {
    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 .sc07 .inner .sale_box.coupon .right .coupon_box .customer img,
  .wrap .contents .sc07 .inner .sale_box.coupon .right .coupon_box .popup img {
    width: 15.1rem;
    height: 11.4rem;
  }
  .wrap .contents .sc07 .inner .sale_box.coupon .right .coupon_box .customer p,
  .wrap .contents .sc07 .inner .sale_box.coupon .right .coupon_box .popup p {
    font-size: 1.1rem;
    letter-spacing: 0;
    width: 9.7rem;
    padding: 0.7rem 0;
    border-radius: 1.6rem;
    margin: 0.8rem auto 0;
  }
  .wrap .contents .sc07 .inner .sale_box.coupon .right .coupon_box .arrow {
    width: 2.3rem;
    height: 2.4rem;
  }
  .wrap .contents .sc07 .inner .sale_box.coupon .right .example {
    margin-top: 1.2rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }
  .wrap .contents .sc07 .inner .sale_box.coupon .right .example .tit {
    display: none;
  }
  .wrap .contents .sc07 .inner .sale_box.coupon .right .example .desc {
    display: none;
  }
  .wrap .contents .sc07 .inner .sale_box.coupon .right .example img {
    display: block;
    width: 100%;
    aspect-ratio: 337/156;
  }
  .wrap .contents .sc08 .inner {
    padding: 3rem 1.5rem;
  }
  .wrap .contents .sc08 .inner .txt_box::before {
    width: 4rem;
    margin-bottom: 3rem;
  }
  .wrap .contents .sc08 .inner .txt_box h2 {
    font-size: 2.4rem;
    line-height: 4rem;
  }
  .wrap .contents .sc08 .inner .txt_box .desc {
    margin-top: 1.5rem;
    font-size: 1.6rem;
  }
  .wrap .contents .sc08 .inner .partner_box {
    margin-top: 2rem;
  }
  .wrap .contents .sc08 .inner .partner_box ul li {
    border-radius: 0.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wrap .contents .sc08 .inner .partner_box ul li + li {
    margin-top: 1.5rem;
  }
  .wrap .contents .sc08 .inner .partner_box ul li .label {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1;
    padding: 1rem 0;
  }
  .wrap .contents .sc08 .inner .partner_box ul li .label .pc_br {
    display: none;
  }
  .wrap .contents .sc08 .inner .partner_box ul li .logo {
    width: 100%;
    padding: 1.5rem 1rem;
  }
  .wrap .contents .sc08 .inner .partner_box ul li .logo img {
    width: 100%;
    max-width: 100%;
  }
  .wrap .contents .sc08 .inner .partner_box .download {
    margin-top: 2rem;
    font-size: 1.8rem;
    padding: 1.3rem 3.2rem;
    border-radius: 1rem;
  }
  .wrap .contents .sc08 .inner .partner_box .download span {
    font-size: 1.8rem;
  }
}
@-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("../images/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=common.css.map */